From 35d82dc11fd9eb53462c132e16b374c6f78733b0 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Fri, 24 Jan 2025 21:33:22 -0500 Subject: [PATCH 01/65] restart again. cloned and copied tastudiompr folder in restart again. cloned and copied tastudiompr folder in --- .../MainForm.Designer.cs | 4102 +++++++++-------- src/BizHawk.Client.EmuHawk/MainForm.Events.cs | 16 + src/BizHawk.Client.EmuHawk/MainForm.cs | 2 + .../BookmarksBranchesBoxMPR.Designer.cs | 262 ++ .../TAStudioMPR/BookmarksBranchesBoxMPR.cs | 699 +++ .../TAStudioMPR/BookmarksBranchesBoxMPR.resx | 129 + .../TAStudioMPR/FramesPromptMPR.Designer.cs | 110 + .../tools/TAStudioMPR/FramesPromptMPR.cs | 39 + .../tools/TAStudioMPR/FramesPromptMPR.resx | 120 + .../GreenzoneSettingsMPR.Designer.cs | 109 + .../tools/TAStudioMPR/GreenzoneSettingsMPR.cs | 52 + .../TAStudioMPR/GreenzoneSettingsMPR.resx | 120 + .../TAStudioMPR/HeaderEditorMPR.Designer.cs | 233 + .../tools/TAStudioMPR/HeaderEditorMPR.cs | 57 + .../tools/TAStudioMPR/HeaderEditorMPR.resx | 120 + .../TAStudioMPR/MarkerControlMPR.Designer.cs | 255 + .../tools/TAStudioMPR/MarkerControlMPR.cs | 291 ++ .../tools/TAStudioMPR/MarkerControlMPR.resx | 129 + .../TAStudioMPR/PatternsFormMPR.Designer.cs | 202 + .../tools/TAStudioMPR/PatternsFormMPR.cs | 310 ++ .../tools/TAStudioMPR/PatternsFormMPR.resx | 120 + .../TAStudioMPR/PlaybackBoxMPR.Designer.cs | 196 + .../tools/TAStudioMPR/PlaybackBoxMPR.cs | 155 + .../tools/TAStudioMPR/PlaybackBoxMPR.resx | 123 + .../TAStudioColorSettingsFormMPR.cs | 103 + .../TAStudioMPR/TAStudioMPR.Callbacks.cs | 37 + .../tools/TAStudioMPR/TAStudioMPR.Designer.cs | 1364 ++++++ .../TAStudioMPR.IControlMainForm.cs | 117 + .../TAStudioMPR/TAStudioMPR.IToolForm.cs | 145 + .../tools/TAStudioMPR/TAStudioMPR.ListView.cs | 1445 ++++++ .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 1346 ++++++ .../TAStudioMPR/TAStudioMPR.Navigation.cs | 116 + .../tools/TAStudioMPR/TAStudioMPR.cs | 1248 +++++ .../tools/TAStudioMPR/TAStudioMPR.resx | 132 + .../tools/TAStudioMPR/TAStudioPaletteMPR.cs | 86 + .../UndoHistoryFormMPR.Designer.cs | 212 + .../tools/TAStudioMPR/UndoHistoryFormMPR.cs | 170 + .../tools/TAStudioMPR/UndoHistoryFormMPR.resx | 123 + 38 files changed, 12549 insertions(+), 2046 deletions(-) create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.Designer.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.resx create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/FramesPromptMPR.Designer.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/FramesPromptMPR.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/FramesPromptMPR.resx create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/GreenzoneSettingsMPR.Designer.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/GreenzoneSettingsMPR.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/GreenzoneSettingsMPR.resx create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/HeaderEditorMPR.Designer.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/HeaderEditorMPR.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/HeaderEditorMPR.resx create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.Designer.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.resx create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PatternsFormMPR.Designer.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PatternsFormMPR.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PatternsFormMPR.resx create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PlaybackBoxMPR.Designer.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PlaybackBoxMPR.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PlaybackBoxMPR.resx create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioColorSettingsFormMPR.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Callbacks.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.IControlMainForm.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.IToolForm.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Navigation.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.resx create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioPaletteMPR.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/UndoHistoryFormMPR.Designer.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/UndoHistoryFormMPR.cs create mode 100644 src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/UndoHistoryFormMPR.resx diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs b/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs index 83c877d3f83..6dfa9f6cc77 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs @@ -17,373 +17,374 @@ partial class MainForm /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - this.MainformMenu = new BizHawk.WinForms.Controls.MenuStripEx(); - this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.OpenRomMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RecentRomSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.OpenAdvancedMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CloseRomMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SaveStateSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator6 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SaveNamedStateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator24 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.AutosaveLastSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadStateSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator7 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.LoadNamedStateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator21 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.AutoloadLastSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveSlotSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PreviousSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NextSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SaveToCurrentSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadCurrentSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveRAMSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.FlushSaveRAMMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.MovieSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ReadonlyMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator15 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.RecentMovieSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator16 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.RecordMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PlayMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StopMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PlayFromBeginningMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ImportMoviesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveMovieAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StopMovieWithoutSavingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator14 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.AutomaticallyBackupMoviesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.FullMovieLoadstatesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MovieEndSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MovieEndFinishMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MovieEndRecordMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MovieEndStopMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MovieEndPauseMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AVSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RecordAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ConfigAndRecordAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StopAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator19 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.CaptureOSDMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CaptureLuaMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SynclessRecordingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ScreenshotSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ScreenshotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ScreenshotAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ScreenshotClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ScreenshotClientClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator20 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.ScreenshotCaptureOSDMenuItem1 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.EmulationSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PauseMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RebootCoreMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SoftResetMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HardResetMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.EmulatorMenuSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.LoadedCoreNameMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ViewSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.WindowSizeSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator26 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.DisableResizeWithFramebufferMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SwitchToFullscreenMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.DisplayFPSMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplayFrameCounterMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplayLagCounterMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplayInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplayRerecordCountMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplaySubtitlesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.DisplayStatusBarMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplayMessagesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator8 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.DisplayLogWindowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ConfigSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ControllersMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HotkeysMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplayConfigMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SoundMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PathsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.FirmwareMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MessagesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AutofireMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RewindOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.extensionsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ClientOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ProfilesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator9 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SpeedSkipSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ClockThrottleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AudioThrottleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VsyncThrottleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator27 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.VsyncEnabledMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.miUnthrottled = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MinimizeSkippingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NeverSkipMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem17 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.Speed50MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Speed75MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Speed100MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Speed150MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Speed200MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Speed400MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.KeyPrioritySubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.BothHkAndControllerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.InputOverHkMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HkOverInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CoresSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator10 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SaveConfigMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveConfigAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadConfigMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadConfigFromMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ToolsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ToolBoxMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator12 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.RamWatchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RamSearchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LuaConsoleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.TAStudioMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HexEditorMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.TraceLoggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DebuggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CodeDataLoggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MacroToolMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VirtualPadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.BasicBotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator11 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.CheatsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GameSharkConverterMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator29 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.MultiDiskBundlerFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.BatchRunnerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ExternalToolMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.dummyExternalTool = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RetroAchievementsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StartRetroAchievementsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NESSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NESPPUViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NESNametableViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MusicRipperMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator17 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.NesControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NESGraphicSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NESSoundChannelsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VSSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MovieSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator22 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.FDSControlsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.FdsEjectDiskMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VSControlsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VSInsertCoinP1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VSInsertCoinP2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VSServiceSwitchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.BarcodeReaderMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.TI83SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.KeypadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadTIFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator13 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.paletteToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.A7800SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.A7800ControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.A7800FilterSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GBSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GBcoreSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SameBoyColorChooserMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator28 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.GBGPUViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GBPrinterViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PSXSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PSXControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PSXOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PSXDiscControlsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PSXHashDiscsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SNESSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SNESControllerConfigurationMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator18 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SnesGfxDebuggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SnesOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ColecoSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ColecoControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator35 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.ColecoSkipBiosMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ColecoUseSGMMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.N64SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.N64PluginSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.N64ControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator23 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.N64CircularAnalogRangeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MupenStyleLagMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.N64ExpansionSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Ares64SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Ares64SettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Ares64CircularAnalogRangeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GBLSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GBLsettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AppleSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AppleDisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator31 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.settingsToolStripMenuItem1 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.C64SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.C64DisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator36 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.C64SettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.IntvSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.IntVControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.zXSpectrumToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumCoreEmulationSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumControllerConfigurationMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumAudioSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumNonSyncSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumMediaMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumTapesSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.zxt1ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumDisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.zxt2ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumExportSnapshotMenuItemMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GenericCoreSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.amstradCPCToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.amstradCPCCoreEmulationSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AmstradCPCAudioSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AmstradCPCNonSyncSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AmstradCPCMediaToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AmstradCPCTapesSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.cpct1ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AmstradCPCDisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.cpcd1ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HelpSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.OnlineHelpMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ForumsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.FeaturesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AboutMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.A7800HawkCoreMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MainStatusBar = new BizHawk.WinForms.Controls.StatusStripEx(); - this.DumpStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); - this.EmuStatus = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.PlayRecordStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); - this.PauseStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); - this.RebootStatusBarIcon = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.AVStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.LedLightStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.SaveSlotsStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot1StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot2StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot3StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot4StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot5StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot6StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot7StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot8StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot9StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot0StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.CheatStatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.KeyPriorityStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.CoreNameStatusBarButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.ProfileFirstBootLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.LinkConnectStatusBarButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.UpdateNotification = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.MainFormContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); - this.OpenRomContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadLastRomContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StopAVContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ContextSeparator_AfterROM = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.RecordMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PlayMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RestartMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StopMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadLastMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.BackupMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StopNoSaveContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ViewSubtitlesContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AddSubtitleContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ViewCommentsContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveMovieAsContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ContextSeparator_AfterMovie = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.UndoSavestateContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ContextSeparator_AfterUndo = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.ConfigContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem6 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem7 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem8 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem9 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem10 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem11 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem12 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem13 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem14 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem15 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.customizeToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator30 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.toolStripMenuItem66 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem67 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ScreenshotContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CloseRomContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ClearSRAMContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ShowMenuContextMenuSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.ShowMenuContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.timerMouseIdle = new System.Windows.Forms.Timer(this.components); - this.toolStripSeparator25 = new System.Windows.Forms.ToolStripSeparator(); - this.MainformMenu.SuspendLayout(); - this.MainStatusBar.SuspendLayout(); - this.MainFormContextMenu.SuspendLayout(); - this.SuspendLayout(); - // - // MainformMenu - // - this.MainformMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.components = new System.ComponentModel.Container(); + this.MainformMenu = new BizHawk.WinForms.Controls.MenuStripEx(); + this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.OpenRomMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RecentRomSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.OpenAdvancedMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CloseRomMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SaveStateSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator6 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SaveNamedStateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator24 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.AutosaveLastSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadStateSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator7 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.LoadNamedStateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator21 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.AutoloadLastSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveSlotSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PreviousSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NextSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SaveToCurrentSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadCurrentSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveRAMSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.FlushSaveRAMMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.MovieSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ReadonlyMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator15 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.RecentMovieSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator16 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.RecordMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PlayMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StopMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PlayFromBeginningMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveMovieAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StopMovieWithoutSavingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator25 = new System.Windows.Forms.ToolStripSeparator(); + this.ImportMoviesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator14 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.AutomaticallyBackupMoviesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.FullMovieLoadstatesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MovieEndSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MovieEndFinishMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MovieEndRecordMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MovieEndStopMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MovieEndPauseMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AVSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RecordAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ConfigAndRecordAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StopAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator19 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.CaptureOSDMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CaptureLuaMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SynclessRecordingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ScreenshotSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ScreenshotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ScreenshotAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ScreenshotClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ScreenshotClientClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator20 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ScreenshotCaptureOSDMenuItem1 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.EmulationSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PauseMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RebootCoreMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SoftResetMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HardResetMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.EmulatorMenuSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.LoadedCoreNameMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ViewSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.WindowSizeSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator26 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DisableResizeWithFramebufferMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SwitchToFullscreenMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DisplayFPSMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplayFrameCounterMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplayLagCounterMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplayInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplayRerecordCountMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplaySubtitlesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DisplayStatusBarMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplayMessagesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator8 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DisplayLogWindowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ConfigSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ControllersMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HotkeysMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplayConfigMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SoundMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PathsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.FirmwareMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MessagesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AutofireMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RewindOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.extensionsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ClientOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ProfilesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator9 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SpeedSkipSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ClockThrottleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AudioThrottleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VsyncThrottleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator27 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.VsyncEnabledMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.miUnthrottled = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MinimizeSkippingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NeverSkipMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem17 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.Speed50MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Speed75MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Speed100MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Speed150MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Speed200MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Speed400MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.KeyPrioritySubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BothHkAndControllerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.InputOverHkMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HkOverInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CoresSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator10 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SaveConfigMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveConfigAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadConfigMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadConfigFromMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ToolsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ToolBoxMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator12 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.RamWatchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RamSearchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LuaConsoleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.TAStudioMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.TAStudioMPRToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.HexEditorMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.TraceLoggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DebuggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CodeDataLoggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MacroToolMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VirtualPadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BasicBotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator11 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.CheatsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GameSharkConverterMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator29 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.MultiDiskBundlerFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BatchRunnerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ExternalToolMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.dummyExternalTool = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RetroAchievementsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StartRetroAchievementsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NESSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NESPPUViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NESNametableViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MusicRipperMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator17 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.NesControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NESGraphicSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NESSoundChannelsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VSSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MovieSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator22 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.FDSControlsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.FdsEjectDiskMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VSControlsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VSInsertCoinP1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VSInsertCoinP2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VSServiceSwitchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BarcodeReaderMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.TI83SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.KeypadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadTIFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator13 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.paletteToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.A7800SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.A7800ControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.A7800FilterSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GBSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GBcoreSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SameBoyColorChooserMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator28 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.GBGPUViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GBPrinterViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PSXSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PSXControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PSXOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PSXDiscControlsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PSXHashDiscsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SNESSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SNESControllerConfigurationMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator18 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SnesGfxDebuggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SnesOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ColecoSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ColecoControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator35 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ColecoSkipBiosMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ColecoUseSGMMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.N64SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.N64PluginSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.N64ControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator23 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.N64CircularAnalogRangeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MupenStyleLagMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.N64ExpansionSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Ares64SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Ares64SettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Ares64CircularAnalogRangeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GBLSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GBLsettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AppleSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AppleDisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator31 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.settingsToolStripMenuItem1 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.C64SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.C64DisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator36 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.C64SettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.IntvSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.IntVControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.zXSpectrumToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumCoreEmulationSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumControllerConfigurationMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumAudioSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumNonSyncSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumMediaMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumTapesSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.zxt1ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumDisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.zxt2ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumExportSnapshotMenuItemMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GenericCoreSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.amstradCPCToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.amstradCPCCoreEmulationSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AmstradCPCAudioSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AmstradCPCNonSyncSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AmstradCPCMediaToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AmstradCPCTapesSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.cpct1ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AmstradCPCDisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.cpcd1ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HelpSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.OnlineHelpMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ForumsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.FeaturesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AboutMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.A7800HawkCoreMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MainStatusBar = new BizHawk.WinForms.Controls.StatusStripEx(); + this.DumpStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); + this.EmuStatus = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.PlayRecordStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); + this.PauseStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); + this.RebootStatusBarIcon = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.AVStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.LedLightStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.SaveSlotsStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot1StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot2StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot3StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot4StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot5StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot6StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot7StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot8StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot9StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot0StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.CheatStatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.KeyPriorityStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.CoreNameStatusBarButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.ProfileFirstBootLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.LinkConnectStatusBarButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.UpdateNotification = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.MainFormContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); + this.OpenRomContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadLastRomContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StopAVContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ContextSeparator_AfterROM = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.RecordMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PlayMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RestartMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StopMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadLastMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BackupMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StopNoSaveContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ViewSubtitlesContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AddSubtitleContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ViewCommentsContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveMovieAsContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ContextSeparator_AfterMovie = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.UndoSavestateContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ContextSeparator_AfterUndo = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ConfigContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem6 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem7 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem8 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem9 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem10 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem11 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem12 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem13 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem14 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem15 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.customizeToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator30 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.toolStripMenuItem66 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem67 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ScreenshotContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CloseRomContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ClearSRAMContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ShowMenuContextMenuSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ShowMenuContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.timerMouseIdle = new System.Windows.Forms.Timer(this.components); + this.MainformMenu.SuspendLayout(); + this.MainStatusBar.SuspendLayout(); + this.MainFormContextMenu.SuspendLayout(); + this.SuspendLayout(); + // + // MainformMenu + // + this.MainformMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileSubMenu, this.EmulationSubMenu, this.ViewSubMenu, @@ -406,14 +407,14 @@ private void InitializeComponent() this.GenericCoreSubMenu, this.amstradCPCToolStripMenuItem, this.HelpSubMenu}); - this.MainformMenu.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow; - this.MainformMenu.TabIndex = 0; - this.MainformMenu.MenuActivate += new System.EventHandler(this.MainformMenu_MenuActivate); - this.MainformMenu.MenuDeactivate += new System.EventHandler(this.MainformMenu_MenuDeactivate); - // - // FileSubMenu - // - this.FileSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MainformMenu.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow; + this.MainformMenu.TabIndex = 0; + this.MainformMenu.MenuActivate += new System.EventHandler(this.MainformMenu_MenuActivate); + this.MainformMenu.MenuDeactivate += new System.EventHandler(this.MainformMenu_MenuDeactivate); + // + // FileSubMenu + // + this.FileSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.OpenRomMenuItem, this.RecentRomSubMenu, this.OpenAdvancedMenuItem, @@ -429,34 +430,34 @@ private void InitializeComponent() this.ScreenshotSubMenu, this.toolStripSeparator4, this.ExitMenuItem}); - this.FileSubMenu.Text = "&File"; - this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened); - // - // OpenRomMenuItem - // - this.OpenRomMenuItem.Text = "&Open ROM..."; - this.OpenRomMenuItem.Click += new System.EventHandler(this.OpenRomMenuItem_Click); - // - // RecentRomSubMenu - // - this.RecentRomSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.FileSubMenu.Text = "&File"; + this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened); + // + // OpenRomMenuItem + // + this.OpenRomMenuItem.Text = "&Open ROM..."; + this.OpenRomMenuItem.Click += new System.EventHandler(this.OpenRomMenuItem_Click); + // + // RecentRomSubMenu + // + this.RecentRomSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator3}); - this.RecentRomSubMenu.Text = "&Recent ROM"; - this.RecentRomSubMenu.DropDownOpened += new System.EventHandler(this.RecentRomMenuItem_DropDownOpened); - // - // OpenAdvancedMenuItem - // - this.OpenAdvancedMenuItem.Text = "Open Ad&vanced..."; - this.OpenAdvancedMenuItem.Click += new System.EventHandler(this.OpenAdvancedMenuItem_Click); - // - // CloseRomMenuItem - // - this.CloseRomMenuItem.Text = "&Close ROM"; - this.CloseRomMenuItem.Click += new System.EventHandler(this.CloseRomMenuItem_Click); - // - // SaveStateSubMenu - // - this.SaveStateSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.RecentRomSubMenu.Text = "&Recent ROM"; + this.RecentRomSubMenu.DropDownOpened += new System.EventHandler(this.RecentRomMenuItem_DropDownOpened); + // + // OpenAdvancedMenuItem + // + this.OpenAdvancedMenuItem.Text = "Open Ad&vanced..."; + this.OpenAdvancedMenuItem.Click += new System.EventHandler(this.OpenAdvancedMenuItem_Click); + // + // CloseRomMenuItem + // + this.CloseRomMenuItem.Text = "&Close ROM"; + this.CloseRomMenuItem.Click += new System.EventHandler(this.CloseRomMenuItem_Click); + // + // SaveStateSubMenu + // + this.SaveStateSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SaveState1MenuItem, this.SaveState2MenuItem, this.SaveState3MenuItem, @@ -471,72 +472,72 @@ private void InitializeComponent() this.SaveNamedStateMenuItem, this.toolStripSeparator24, this.AutosaveLastSlotMenuItem}); - this.SaveStateSubMenu.Text = "&Save State"; - this.SaveStateSubMenu.DropDownOpened += new System.EventHandler(this.SaveStateSubMenu_DropDownOpened); - // - // SaveState1MenuItem - // - this.SaveState1MenuItem.Text = "1"; - this.SaveState1MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState2MenuItem - // - this.SaveState2MenuItem.Text = "2"; - this.SaveState2MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState3MenuItem - // - this.SaveState3MenuItem.Text = "3"; - this.SaveState3MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState4MenuItem - // - this.SaveState4MenuItem.Text = "4"; - this.SaveState4MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState5MenuItem - // - this.SaveState5MenuItem.Text = "5"; - this.SaveState5MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState6MenuItem - // - this.SaveState6MenuItem.Text = "6"; - this.SaveState6MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState7MenuItem - // - this.SaveState7MenuItem.Text = "7"; - this.SaveState7MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState8MenuItem - // - this.SaveState8MenuItem.Text = "8"; - this.SaveState8MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState9MenuItem - // - this.SaveState9MenuItem.Text = "9"; - this.SaveState9MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState0MenuItem - // - this.SaveState0MenuItem.Text = "10"; - this.SaveState0MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveNamedStateMenuItem - // - this.SaveNamedStateMenuItem.Text = "Save Named State..."; - this.SaveNamedStateMenuItem.Click += new System.EventHandler(this.SaveNamedStateMenuItem_Click); - // - // AutosaveLastSlotMenuItem - // - this.AutosaveLastSlotMenuItem.Text = "Autosave Last Slot"; - this.AutosaveLastSlotMenuItem.Click += new System.EventHandler(this.AutosaveLastSlotMenuItem_Click); - // - // LoadStateSubMenu - // - this.LoadStateSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SaveStateSubMenu.Text = "&Save State"; + this.SaveStateSubMenu.DropDownOpened += new System.EventHandler(this.SaveStateSubMenu_DropDownOpened); + // + // SaveState1MenuItem + // + this.SaveState1MenuItem.Text = "1"; + this.SaveState1MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState2MenuItem + // + this.SaveState2MenuItem.Text = "2"; + this.SaveState2MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState3MenuItem + // + this.SaveState3MenuItem.Text = "3"; + this.SaveState3MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState4MenuItem + // + this.SaveState4MenuItem.Text = "4"; + this.SaveState4MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState5MenuItem + // + this.SaveState5MenuItem.Text = "5"; + this.SaveState5MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState6MenuItem + // + this.SaveState6MenuItem.Text = "6"; + this.SaveState6MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState7MenuItem + // + this.SaveState7MenuItem.Text = "7"; + this.SaveState7MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState8MenuItem + // + this.SaveState8MenuItem.Text = "8"; + this.SaveState8MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState9MenuItem + // + this.SaveState9MenuItem.Text = "9"; + this.SaveState9MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState0MenuItem + // + this.SaveState0MenuItem.Text = "10"; + this.SaveState0MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveNamedStateMenuItem + // + this.SaveNamedStateMenuItem.Text = "Save Named State..."; + this.SaveNamedStateMenuItem.Click += new System.EventHandler(this.SaveNamedStateMenuItem_Click); + // + // AutosaveLastSlotMenuItem + // + this.AutosaveLastSlotMenuItem.Text = "Autosave Last Slot"; + this.AutosaveLastSlotMenuItem.Click += new System.EventHandler(this.AutosaveLastSlotMenuItem_Click); + // + // LoadStateSubMenu + // + this.LoadStateSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.LoadState1MenuItem, this.LoadState2MenuItem, this.LoadState3MenuItem, @@ -551,72 +552,72 @@ private void InitializeComponent() this.LoadNamedStateMenuItem, this.toolStripSeparator21, this.AutoloadLastSlotMenuItem}); - this.LoadStateSubMenu.Text = "&Load State"; - this.LoadStateSubMenu.DropDownOpened += new System.EventHandler(this.LoadStateSubMenu_DropDownOpened); - // - // LoadState1MenuItem - // - this.LoadState1MenuItem.Text = "1"; - this.LoadState1MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState2MenuItem - // - this.LoadState2MenuItem.Text = "2"; - this.LoadState2MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState3MenuItem - // - this.LoadState3MenuItem.Text = "3"; - this.LoadState3MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState4MenuItem - // - this.LoadState4MenuItem.Text = "4"; - this.LoadState4MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState5MenuItem - // - this.LoadState5MenuItem.Text = "5"; - this.LoadState5MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState6MenuItem - // - this.LoadState6MenuItem.Text = "6"; - this.LoadState6MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState7MenuItem - // - this.LoadState7MenuItem.Text = "7"; - this.LoadState7MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState8MenuItem - // - this.LoadState8MenuItem.Text = "8"; - this.LoadState8MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState9MenuItem - // - this.LoadState9MenuItem.Text = "9"; - this.LoadState9MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState0MenuItem - // - this.LoadState0MenuItem.Text = "10"; - this.LoadState0MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadNamedStateMenuItem - // - this.LoadNamedStateMenuItem.Text = "Load Named State..."; - this.LoadNamedStateMenuItem.Click += new System.EventHandler(this.LoadNamedStateMenuItem_Click); - // - // AutoloadLastSlotMenuItem - // - this.AutoloadLastSlotMenuItem.Text = "Autoload Last Slot"; - this.AutoloadLastSlotMenuItem.Click += new System.EventHandler(this.AutoloadLastSlotMenuItem_Click); - // - // SaveSlotSubMenu - // - this.SaveSlotSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.LoadStateSubMenu.Text = "&Load State"; + this.LoadStateSubMenu.DropDownOpened += new System.EventHandler(this.LoadStateSubMenu_DropDownOpened); + // + // LoadState1MenuItem + // + this.LoadState1MenuItem.Text = "1"; + this.LoadState1MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState2MenuItem + // + this.LoadState2MenuItem.Text = "2"; + this.LoadState2MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState3MenuItem + // + this.LoadState3MenuItem.Text = "3"; + this.LoadState3MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState4MenuItem + // + this.LoadState4MenuItem.Text = "4"; + this.LoadState4MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState5MenuItem + // + this.LoadState5MenuItem.Text = "5"; + this.LoadState5MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState6MenuItem + // + this.LoadState6MenuItem.Text = "6"; + this.LoadState6MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState7MenuItem + // + this.LoadState7MenuItem.Text = "7"; + this.LoadState7MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState8MenuItem + // + this.LoadState8MenuItem.Text = "8"; + this.LoadState8MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState9MenuItem + // + this.LoadState9MenuItem.Text = "9"; + this.LoadState9MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState0MenuItem + // + this.LoadState0MenuItem.Text = "10"; + this.LoadState0MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadNamedStateMenuItem + // + this.LoadNamedStateMenuItem.Text = "Load Named State..."; + this.LoadNamedStateMenuItem.Click += new System.EventHandler(this.LoadNamedStateMenuItem_Click); + // + // AutoloadLastSlotMenuItem + // + this.AutoloadLastSlotMenuItem.Text = "Autoload Last Slot"; + this.AutoloadLastSlotMenuItem.Click += new System.EventHandler(this.AutoloadLastSlotMenuItem_Click); + // + // SaveSlotSubMenu + // + this.SaveSlotSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SelectSlot1MenuItem, this.SelectSlot2MenuItem, this.SelectSlot3MenuItem, @@ -632,94 +633,94 @@ private void InitializeComponent() this.toolStripSeparator5, this.SaveToCurrentSlotMenuItem, this.LoadCurrentSlotMenuItem}); - this.SaveSlotSubMenu.Text = "Save S&lot"; - this.SaveSlotSubMenu.DropDownOpened += new System.EventHandler(this.SaveSlotSubMenu_DropDownOpened); - // - // SelectSlot1MenuItem - // - this.SelectSlot1MenuItem.Text = "Select Slot 1"; - this.SelectSlot1MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot2MenuItem - // - this.SelectSlot2MenuItem.Text = "Select Slot 2"; - this.SelectSlot2MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot3MenuItem - // - this.SelectSlot3MenuItem.Text = "Select Slot 3"; - this.SelectSlot3MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot4MenuItem - // - this.SelectSlot4MenuItem.Text = "Select Slot 4"; - this.SelectSlot4MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot5MenuItem - // - this.SelectSlot5MenuItem.Text = "Select Slot 5"; - this.SelectSlot5MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot6MenuItem - // - this.SelectSlot6MenuItem.Text = "Select Slot 6"; - this.SelectSlot6MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot7MenuItem - // - this.SelectSlot7MenuItem.Text = "Select Slot 7"; - this.SelectSlot7MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot8MenuItem - // - this.SelectSlot8MenuItem.Text = "Select Slot 8"; - this.SelectSlot8MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot9MenuItem - // - this.SelectSlot9MenuItem.Text = "Select Slot 9"; - this.SelectSlot9MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot0MenuItem - // - this.SelectSlot0MenuItem.Text = "Select Slot 10"; - this.SelectSlot0MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // PreviousSlotMenuItem - // - this.PreviousSlotMenuItem.Text = "Previous Slot"; - this.PreviousSlotMenuItem.Click += new System.EventHandler(this.PreviousSlotMenuItem_Click); - // - // NextSlotMenuItem - // - this.NextSlotMenuItem.Text = "Next Slot"; - this.NextSlotMenuItem.Click += new System.EventHandler(this.NextSlotMenuItem_Click); - // - // SaveToCurrentSlotMenuItem - // - this.SaveToCurrentSlotMenuItem.Text = "Save to Current Slot"; - this.SaveToCurrentSlotMenuItem.Click += new System.EventHandler(this.SaveToCurrentSlotMenuItem_Click); - // - // LoadCurrentSlotMenuItem - // - this.LoadCurrentSlotMenuItem.Text = "Load Current Slot"; - this.LoadCurrentSlotMenuItem.Click += new System.EventHandler(this.LoadCurrentSlotMenuItem_Click); - // - // SaveRAMSubMenu - // - this.SaveRAMSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SaveSlotSubMenu.Text = "Save S&lot"; + this.SaveSlotSubMenu.DropDownOpened += new System.EventHandler(this.SaveSlotSubMenu_DropDownOpened); + // + // SelectSlot1MenuItem + // + this.SelectSlot1MenuItem.Text = "Select Slot 1"; + this.SelectSlot1MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot2MenuItem + // + this.SelectSlot2MenuItem.Text = "Select Slot 2"; + this.SelectSlot2MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot3MenuItem + // + this.SelectSlot3MenuItem.Text = "Select Slot 3"; + this.SelectSlot3MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot4MenuItem + // + this.SelectSlot4MenuItem.Text = "Select Slot 4"; + this.SelectSlot4MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot5MenuItem + // + this.SelectSlot5MenuItem.Text = "Select Slot 5"; + this.SelectSlot5MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot6MenuItem + // + this.SelectSlot6MenuItem.Text = "Select Slot 6"; + this.SelectSlot6MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot7MenuItem + // + this.SelectSlot7MenuItem.Text = "Select Slot 7"; + this.SelectSlot7MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot8MenuItem + // + this.SelectSlot8MenuItem.Text = "Select Slot 8"; + this.SelectSlot8MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot9MenuItem + // + this.SelectSlot9MenuItem.Text = "Select Slot 9"; + this.SelectSlot9MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot0MenuItem + // + this.SelectSlot0MenuItem.Text = "Select Slot 10"; + this.SelectSlot0MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // PreviousSlotMenuItem + // + this.PreviousSlotMenuItem.Text = "Previous Slot"; + this.PreviousSlotMenuItem.Click += new System.EventHandler(this.PreviousSlotMenuItem_Click); + // + // NextSlotMenuItem + // + this.NextSlotMenuItem.Text = "Next Slot"; + this.NextSlotMenuItem.Click += new System.EventHandler(this.NextSlotMenuItem_Click); + // + // SaveToCurrentSlotMenuItem + // + this.SaveToCurrentSlotMenuItem.Text = "Save to Current Slot"; + this.SaveToCurrentSlotMenuItem.Click += new System.EventHandler(this.SaveToCurrentSlotMenuItem_Click); + // + // LoadCurrentSlotMenuItem + // + this.LoadCurrentSlotMenuItem.Text = "Load Current Slot"; + this.LoadCurrentSlotMenuItem.Click += new System.EventHandler(this.LoadCurrentSlotMenuItem_Click); + // + // SaveRAMSubMenu + // + this.SaveRAMSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FlushSaveRAMMenuItem}); - this.SaveRAMSubMenu.Text = "Save &RAM"; - this.SaveRAMSubMenu.DropDownOpened += new System.EventHandler(this.SaveRamSubMenu_DropDownOpened); - // - // FlushSaveRAMMenuItem - // - this.FlushSaveRAMMenuItem.Text = "&Flush Save Ram"; - this.FlushSaveRAMMenuItem.Click += new System.EventHandler(this.FlushSaveRAMMenuItem_Click); - // - // MovieSubMenu - // - this.MovieSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SaveRAMSubMenu.Text = "Save &RAM"; + this.SaveRAMSubMenu.DropDownOpened += new System.EventHandler(this.SaveRamSubMenu_DropDownOpened); + // + // FlushSaveRAMMenuItem + // + this.FlushSaveRAMMenuItem.Text = "&Flush Save Ram"; + this.FlushSaveRAMMenuItem.Click += new System.EventHandler(this.FlushSaveRAMMenuItem_Click); + // + // MovieSubMenu + // + this.MovieSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ReadonlyMenuItem, this.toolStripSeparator15, this.RecentMovieSubMenu, @@ -736,104 +737,109 @@ private void InitializeComponent() this.AutomaticallyBackupMoviesMenuItem, this.FullMovieLoadstatesMenuItem, this.MovieEndSubMenu}); - this.MovieSubMenu.Text = "&Movie"; - this.MovieSubMenu.DropDownOpened += new System.EventHandler(this.MovieSubMenu_DropDownOpened); - // - // ReadonlyMenuItem - // - this.ReadonlyMenuItem.Text = "Read-only"; - this.ReadonlyMenuItem.Click += new System.EventHandler(this.ReadonlyMenuItem_Click); - // - // RecentMovieSubMenu - // - this.RecentMovieSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MovieSubMenu.Text = "&Movie"; + this.MovieSubMenu.DropDownOpened += new System.EventHandler(this.MovieSubMenu_DropDownOpened); + // + // ReadonlyMenuItem + // + this.ReadonlyMenuItem.Text = "Read-only"; + this.ReadonlyMenuItem.Click += new System.EventHandler(this.ReadonlyMenuItem_Click); + // + // RecentMovieSubMenu + // + this.RecentMovieSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator16}); - this.RecentMovieSubMenu.Text = "Recent"; - this.RecentMovieSubMenu.DropDownOpened += new System.EventHandler(this.RecentMovieSubMenu_DropDownOpened); - // - // RecordMovieMenuItem - // - this.RecordMovieMenuItem.Text = "&Record Movie..."; - this.RecordMovieMenuItem.Click += new System.EventHandler(this.RecordMovieMenuItem_Click); - // - // PlayMovieMenuItem - // - this.PlayMovieMenuItem.Text = "&Play Movie..."; - this.PlayMovieMenuItem.Click += new System.EventHandler(this.PlayMovieMenuItem_Click); - // - // StopMovieMenuItem - // - this.StopMovieMenuItem.Text = "Stop Movie"; - this.StopMovieMenuItem.Click += new System.EventHandler(this.StopMovieMenuItem_Click); - // - // PlayFromBeginningMenuItem - // - this.PlayFromBeginningMenuItem.Text = "Play from Beginning"; - this.PlayFromBeginningMenuItem.Click += new System.EventHandler(this.PlayFromBeginningMenuItem_Click); - // - // ImportMoviesMenuItem - // - this.ImportMoviesMenuItem.Text = "Import Movies..."; - this.ImportMoviesMenuItem.Click += new System.EventHandler(this.ImportMovieMenuItem_Click); - // - // SaveMovieMenuItem - // - this.SaveMovieMenuItem.Text = "&Save Movie"; - this.SaveMovieMenuItem.Click += new System.EventHandler(this.SaveMovieMenuItem_Click); - // - // SaveMovieAsMenuItem - // - this.SaveMovieAsMenuItem.Text = "Save Movie As..."; - this.SaveMovieAsMenuItem.Click += new System.EventHandler(this.SaveMovieAsMenuItem_Click); - // - // StopMovieWithoutSavingMenuItem - // - this.StopMovieWithoutSavingMenuItem.Text = "Stop Movie without Saving"; - this.StopMovieWithoutSavingMenuItem.Click += new System.EventHandler(this.StopMovieWithoutSavingMenuItem_Click); - // - // AutomaticallyBackupMoviesMenuItem - // - this.AutomaticallyBackupMoviesMenuItem.Text = "Automatically Backup Movies"; - this.AutomaticallyBackupMoviesMenuItem.Click += new System.EventHandler(this.AutomaticMovieBackupMenuItem_Click); - // - // FullMovieLoadstatesMenuItem - // - this.FullMovieLoadstatesMenuItem.Text = "Full Movie Loadstates"; - this.FullMovieLoadstatesMenuItem.Click += new System.EventHandler(this.FullMovieLoadstatesMenuItem_Click); - // - // MovieEndSubMenu - // - this.MovieEndSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.RecentMovieSubMenu.Text = "Recent"; + this.RecentMovieSubMenu.DropDownOpened += new System.EventHandler(this.RecentMovieSubMenu_DropDownOpened); + // + // RecordMovieMenuItem + // + this.RecordMovieMenuItem.Text = "&Record Movie..."; + this.RecordMovieMenuItem.Click += new System.EventHandler(this.RecordMovieMenuItem_Click); + // + // PlayMovieMenuItem + // + this.PlayMovieMenuItem.Text = "&Play Movie..."; + this.PlayMovieMenuItem.Click += new System.EventHandler(this.PlayMovieMenuItem_Click); + // + // StopMovieMenuItem + // + this.StopMovieMenuItem.Text = "Stop Movie"; + this.StopMovieMenuItem.Click += new System.EventHandler(this.StopMovieMenuItem_Click); + // + // PlayFromBeginningMenuItem + // + this.PlayFromBeginningMenuItem.Text = "Play from Beginning"; + this.PlayFromBeginningMenuItem.Click += new System.EventHandler(this.PlayFromBeginningMenuItem_Click); + // + // SaveMovieMenuItem + // + this.SaveMovieMenuItem.Text = "&Save Movie"; + this.SaveMovieMenuItem.Click += new System.EventHandler(this.SaveMovieMenuItem_Click); + // + // SaveMovieAsMenuItem + // + this.SaveMovieAsMenuItem.Text = "Save Movie As..."; + this.SaveMovieAsMenuItem.Click += new System.EventHandler(this.SaveMovieAsMenuItem_Click); + // + // StopMovieWithoutSavingMenuItem + // + this.StopMovieWithoutSavingMenuItem.Text = "Stop Movie without Saving"; + this.StopMovieWithoutSavingMenuItem.Click += new System.EventHandler(this.StopMovieWithoutSavingMenuItem_Click); + // + // toolStripSeparator25 + // + this.toolStripSeparator25.Name = "toolStripSeparator25"; + this.toolStripSeparator25.Size = new System.Drawing.Size(228, 6); + // + // ImportMoviesMenuItem + // + this.ImportMoviesMenuItem.Text = "Import Movies..."; + this.ImportMoviesMenuItem.Click += new System.EventHandler(this.ImportMovieMenuItem_Click); + // + // AutomaticallyBackupMoviesMenuItem + // + this.AutomaticallyBackupMoviesMenuItem.Text = "Automatically Backup Movies"; + this.AutomaticallyBackupMoviesMenuItem.Click += new System.EventHandler(this.AutomaticMovieBackupMenuItem_Click); + // + // FullMovieLoadstatesMenuItem + // + this.FullMovieLoadstatesMenuItem.Text = "Full Movie Loadstates"; + this.FullMovieLoadstatesMenuItem.Click += new System.EventHandler(this.FullMovieLoadstatesMenuItem_Click); + // + // MovieEndSubMenu + // + this.MovieEndSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MovieEndFinishMenuItem, this.MovieEndRecordMenuItem, this.MovieEndStopMenuItem, this.MovieEndPauseMenuItem}); - this.MovieEndSubMenu.Text = "On Movie End"; - this.MovieEndSubMenu.DropDownOpened += new System.EventHandler(this.MovieEndSubMenu_DropDownOpened); - // - // MovieEndFinishMenuItem - // - this.MovieEndFinishMenuItem.Text = "Switch to Finished"; - this.MovieEndFinishMenuItem.Click += new System.EventHandler(this.MovieEndFinishMenuItem_Click); - // - // MovieEndRecordMenuItem - // - this.MovieEndRecordMenuItem.Text = "Switch To Record"; - this.MovieEndRecordMenuItem.Click += new System.EventHandler(this.MovieEndRecordMenuItem_Click); - // - // MovieEndStopMenuItem - // - this.MovieEndStopMenuItem.Text = "Stop"; - this.MovieEndStopMenuItem.Click += new System.EventHandler(this.MovieEndStopMenuItem_Click); - // - // MovieEndPauseMenuItem - // - this.MovieEndPauseMenuItem.Text = "Pause"; - this.MovieEndPauseMenuItem.Click += new System.EventHandler(this.MovieEndPauseMenuItem_Click); - // - // AVSubMenu - // - this.AVSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MovieEndSubMenu.Text = "On Movie End"; + this.MovieEndSubMenu.DropDownOpened += new System.EventHandler(this.MovieEndSubMenu_DropDownOpened); + // + // MovieEndFinishMenuItem + // + this.MovieEndFinishMenuItem.Text = "Switch to Finished"; + this.MovieEndFinishMenuItem.Click += new System.EventHandler(this.MovieEndFinishMenuItem_Click); + // + // MovieEndRecordMenuItem + // + this.MovieEndRecordMenuItem.Text = "Switch To Record"; + this.MovieEndRecordMenuItem.Click += new System.EventHandler(this.MovieEndRecordMenuItem_Click); + // + // MovieEndStopMenuItem + // + this.MovieEndStopMenuItem.Text = "Stop"; + this.MovieEndStopMenuItem.Click += new System.EventHandler(this.MovieEndStopMenuItem_Click); + // + // MovieEndPauseMenuItem + // + this.MovieEndPauseMenuItem.Text = "Pause"; + this.MovieEndPauseMenuItem.Click += new System.EventHandler(this.MovieEndPauseMenuItem_Click); + // + // AVSubMenu + // + this.AVSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.RecordAVMenuItem, this.ConfigAndRecordAVMenuItem, this.StopAVMenuItem, @@ -841,88 +847,88 @@ private void InitializeComponent() this.CaptureOSDMenuItem, this.CaptureLuaMenuItem, this.SynclessRecordingMenuItem}); - this.AVSubMenu.Text = "&A/V Writer"; - this.AVSubMenu.DropDownOpened += new System.EventHandler(this.AVSubMenu_DropDownOpened); - // - // RecordAVMenuItem - // - this.RecordAVMenuItem.Text = "&Record A/V"; - this.RecordAVMenuItem.Click += new System.EventHandler(this.RecordAVMenuItem_Click); - // - // ConfigAndRecordAVMenuItem - // - this.ConfigAndRecordAVMenuItem.Text = "Config and Record A/V..."; - this.ConfigAndRecordAVMenuItem.Click += new System.EventHandler(this.ConfigAndRecordAVMenuItem_Click); - // - // StopAVMenuItem - // - this.StopAVMenuItem.Text = "&Stop A/V Writer"; - this.StopAVMenuItem.Click += new System.EventHandler(this.StopAVMenuItem_Click); - // - // CaptureOSDMenuItem - // - this.CaptureOSDMenuItem.CheckOnClick = true; - this.CaptureOSDMenuItem.Text = "Capture OSD"; - this.CaptureOSDMenuItem.Click += new System.EventHandler(this.CaptureOSDMenuItem_Click); - // - // CaptureLuaMenuItem - // - this.CaptureLuaMenuItem.CheckOnClick = true; - this.CaptureLuaMenuItem.Name = "CaptureLuaMenuItem"; - this.CaptureLuaMenuItem.Size = new System.Drawing.Size(232, 22); - this.CaptureLuaMenuItem.Text = "Capture Lua"; - this.CaptureLuaMenuItem.Click += new System.EventHandler(this.CaptureLuaMenuItem_Click); - // - // SynclessRecordingMenuItem - // - this.SynclessRecordingMenuItem.Text = "S&yncless Recording Tools"; - // - // ScreenshotSubMenu - // - this.ScreenshotSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AVSubMenu.Text = "&A/V Writer"; + this.AVSubMenu.DropDownOpened += new System.EventHandler(this.AVSubMenu_DropDownOpened); + // + // RecordAVMenuItem + // + this.RecordAVMenuItem.Text = "&Record A/V"; + this.RecordAVMenuItem.Click += new System.EventHandler(this.RecordAVMenuItem_Click); + // + // ConfigAndRecordAVMenuItem + // + this.ConfigAndRecordAVMenuItem.Text = "Config and Record A/V..."; + this.ConfigAndRecordAVMenuItem.Click += new System.EventHandler(this.ConfigAndRecordAVMenuItem_Click); + // + // StopAVMenuItem + // + this.StopAVMenuItem.Text = "&Stop A/V Writer"; + this.StopAVMenuItem.Click += new System.EventHandler(this.StopAVMenuItem_Click); + // + // CaptureOSDMenuItem + // + this.CaptureOSDMenuItem.CheckOnClick = true; + this.CaptureOSDMenuItem.Text = "Capture OSD"; + this.CaptureOSDMenuItem.Click += new System.EventHandler(this.CaptureOSDMenuItem_Click); + // + // CaptureLuaMenuItem + // + this.CaptureLuaMenuItem.CheckOnClick = true; + this.CaptureLuaMenuItem.Name = "CaptureLuaMenuItem"; + this.CaptureLuaMenuItem.Size = new System.Drawing.Size(205, 22); + this.CaptureLuaMenuItem.Text = "Capture Lua"; + this.CaptureLuaMenuItem.Click += new System.EventHandler(this.CaptureLuaMenuItem_Click); + // + // SynclessRecordingMenuItem + // + this.SynclessRecordingMenuItem.Text = "S&yncless Recording Tools"; + // + // ScreenshotSubMenu + // + this.ScreenshotSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ScreenshotMenuItem, this.ScreenshotAsMenuItem, this.ScreenshotClipboardMenuItem, this.ScreenshotClientClipboardMenuItem, this.toolStripSeparator20, this.ScreenshotCaptureOSDMenuItem1}); - this.ScreenshotSubMenu.Text = "Scree&nshot"; - this.ScreenshotSubMenu.DropDownOpening += new System.EventHandler(this.ScreenshotSubMenu_DropDownOpening); - // - // ScreenshotMenuItem - // - this.ScreenshotMenuItem.Text = "Screenshot"; - this.ScreenshotMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click); - // - // ScreenshotAsMenuItem - // - this.ScreenshotAsMenuItem.Text = "Screenshot As..."; - this.ScreenshotAsMenuItem.Click += new System.EventHandler(this.ScreenshotAsMenuItem_Click); - // - // ScreenshotClipboardMenuItem - // - this.ScreenshotClipboardMenuItem.Text = "Screenshot (raw) -> Clipboard"; - this.ScreenshotClipboardMenuItem.Click += new System.EventHandler(this.ScreenshotClipboardMenuItem_Click); - // - // ScreenshotClientClipboardMenuItem - // - this.ScreenshotClientClipboardMenuItem.Text = "Screenshot (client) -> Clipboard"; - this.ScreenshotClientClipboardMenuItem.Click += new System.EventHandler(this.ScreenshotClientClipboardMenuItem_Click); - // - // ScreenshotCaptureOSDMenuItem1 - // - this.ScreenshotCaptureOSDMenuItem1.Text = "Capture OSD"; - this.ScreenshotCaptureOSDMenuItem1.Click += new System.EventHandler(this.ScreenshotCaptureOSDMenuItem_Click); - // - // ExitMenuItem - // - this.ExitMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4))); - this.ExitMenuItem.Text = "E&xit"; - this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click); - // - // EmulationSubMenu - // - this.EmulationSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ScreenshotSubMenu.Text = "Scree&nshot"; + this.ScreenshotSubMenu.DropDownOpening += new System.EventHandler(this.ScreenshotSubMenu_DropDownOpening); + // + // ScreenshotMenuItem + // + this.ScreenshotMenuItem.Text = "Screenshot"; + this.ScreenshotMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click); + // + // ScreenshotAsMenuItem + // + this.ScreenshotAsMenuItem.Text = "Screenshot As..."; + this.ScreenshotAsMenuItem.Click += new System.EventHandler(this.ScreenshotAsMenuItem_Click); + // + // ScreenshotClipboardMenuItem + // + this.ScreenshotClipboardMenuItem.Text = "Screenshot (raw) -> Clipboard"; + this.ScreenshotClipboardMenuItem.Click += new System.EventHandler(this.ScreenshotClipboardMenuItem_Click); + // + // ScreenshotClientClipboardMenuItem + // + this.ScreenshotClientClipboardMenuItem.Text = "Screenshot (client) -> Clipboard"; + this.ScreenshotClientClipboardMenuItem.Click += new System.EventHandler(this.ScreenshotClientClipboardMenuItem_Click); + // + // ScreenshotCaptureOSDMenuItem1 + // + this.ScreenshotCaptureOSDMenuItem1.Text = "Capture OSD"; + this.ScreenshotCaptureOSDMenuItem1.Click += new System.EventHandler(this.ScreenshotCaptureOSDMenuItem_Click); + // + // ExitMenuItem + // + this.ExitMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4))); + this.ExitMenuItem.Text = "E&xit"; + this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click); + // + // EmulationSubMenu + // + this.EmulationSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.PauseMenuItem, this.RebootCoreMenuItem, this.toolStripSeparator1, @@ -930,37 +936,37 @@ private void InitializeComponent() this.HardResetMenuItem, this.EmulatorMenuSeparator2, this.LoadedCoreNameMenuItem}); - this.EmulationSubMenu.Text = "&Emulation"; - this.EmulationSubMenu.DropDownOpened += new System.EventHandler(this.EmulationMenuItem_DropDownOpened); - // - // PauseMenuItem - // - this.PauseMenuItem.Text = "&Pause"; - this.PauseMenuItem.Click += new System.EventHandler(this.PauseMenuItem_Click); - // - // RebootCoreMenuItem - // - this.RebootCoreMenuItem.Text = "&Reboot Core"; - this.RebootCoreMenuItem.Click += new System.EventHandler(this.PowerMenuItem_Click); - // - // SoftResetMenuItem - // - this.SoftResetMenuItem.Text = "&Soft Reset"; - this.SoftResetMenuItem.Click += new System.EventHandler(this.SoftResetMenuItem_Click); - // - // HardResetMenuItem - // - this.HardResetMenuItem.Text = "&Hard Reset"; - this.HardResetMenuItem.Click += new System.EventHandler(this.HardResetMenuItem_Click); - // - // LoadedCoreNameMenuItem - // - this.LoadedCoreNameMenuItem.Enabled = false; - this.LoadedCoreNameMenuItem.Text = "Loaded core: (sysID)"; - // - // ViewSubMenu - // - this.ViewSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.EmulationSubMenu.Text = "&Emulation"; + this.EmulationSubMenu.DropDownOpened += new System.EventHandler(this.EmulationMenuItem_DropDownOpened); + // + // PauseMenuItem + // + this.PauseMenuItem.Text = "&Pause"; + this.PauseMenuItem.Click += new System.EventHandler(this.PauseMenuItem_Click); + // + // RebootCoreMenuItem + // + this.RebootCoreMenuItem.Text = "&Reboot Core"; + this.RebootCoreMenuItem.Click += new System.EventHandler(this.PowerMenuItem_Click); + // + // SoftResetMenuItem + // + this.SoftResetMenuItem.Text = "&Soft Reset"; + this.SoftResetMenuItem.Click += new System.EventHandler(this.SoftResetMenuItem_Click); + // + // HardResetMenuItem + // + this.HardResetMenuItem.Text = "&Hard Reset"; + this.HardResetMenuItem.Click += new System.EventHandler(this.HardResetMenuItem_Click); + // + // LoadedCoreNameMenuItem + // + this.LoadedCoreNameMenuItem.Enabled = false; + this.LoadedCoreNameMenuItem.Text = "Loaded core: (sysID)"; + // + // ViewSubMenu + // + this.ViewSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.WindowSizeSubMenu, this.SwitchToFullscreenMenuItem, this.toolStripSeparator2, @@ -975,76 +981,76 @@ private void InitializeComponent() this.DisplayMessagesMenuItem, this.toolStripSeparator8, this.DisplayLogWindowMenuItem}); - this.ViewSubMenu.Text = "&View"; - this.ViewSubMenu.DropDownOpened += new System.EventHandler(this.ViewSubMenu_DropDownOpened); - // - // WindowSizeSubMenu - // - this.WindowSizeSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ViewSubMenu.Text = "&View"; + this.ViewSubMenu.DropDownOpened += new System.EventHandler(this.ViewSubMenu_DropDownOpened); + // + // WindowSizeSubMenu + // + this.WindowSizeSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator26, this.DisableResizeWithFramebufferMenuItem}); - this.WindowSizeSubMenu.Text = "&Window Size"; - this.WindowSizeSubMenu.DropDownOpened += new System.EventHandler(this.WindowSizeSubMenu_DropDownOpened); - // - // ResizeWithFramebufferMenuItem - // - this.DisableResizeWithFramebufferMenuItem.CheckOnClick = true; - this.DisableResizeWithFramebufferMenuItem.Text = "&Static Size"; - this.DisableResizeWithFramebufferMenuItem.Click += new System.EventHandler(this.DisableResizeWithFramebufferMenuItem_Click); - // - // SwitchToFullscreenMenuItem - // - this.SwitchToFullscreenMenuItem.Text = "Switch to Fullscreen"; - this.SwitchToFullscreenMenuItem.Click += new System.EventHandler(this.SwitchToFullscreenMenuItem_Click); - // - // DisplayFPSMenuItem - // - this.DisplayFPSMenuItem.Text = "Display FPS"; - this.DisplayFPSMenuItem.Click += new System.EventHandler(this.DisplayFpsMenuItem_Click); - // - // DisplayFrameCounterMenuItem - // - this.DisplayFrameCounterMenuItem.Text = "Display Frame Count"; - this.DisplayFrameCounterMenuItem.Click += new System.EventHandler(this.DisplayFrameCounterMenuItem_Click); - // - // DisplayLagCounterMenuItem - // - this.DisplayLagCounterMenuItem.Text = "Display Lag Frame Count"; - this.DisplayLagCounterMenuItem.Click += new System.EventHandler(this.DisplayLagCounterMenuItem_Click); - // - // DisplayInputMenuItem - // - this.DisplayInputMenuItem.Text = "Display Input"; - this.DisplayInputMenuItem.Click += new System.EventHandler(this.DisplayInputMenuItem_Click); - // - // DisplayRerecordCountMenuItem - // - this.DisplayRerecordCountMenuItem.Text = "Display Rerecord Count"; - this.DisplayRerecordCountMenuItem.Click += new System.EventHandler(this.DisplayRerecordsMenuItem_Click); - // - // DisplaySubtitlesMenuItem - // - this.DisplaySubtitlesMenuItem.Text = "Display Subtitles"; - this.DisplaySubtitlesMenuItem.Click += new System.EventHandler(this.DisplaySubtitlesMenuItem_Click); - // - // DisplayStatusBarMenuItem - // - this.DisplayStatusBarMenuItem.Text = "Display Status Bar"; - this.DisplayStatusBarMenuItem.Click += new System.EventHandler(this.DisplayStatusBarMenuItem_Click); - // - // DisplayMessagesMenuItem - // - this.DisplayMessagesMenuItem.Text = "Display Messages"; - this.DisplayMessagesMenuItem.Click += new System.EventHandler(this.DisplayMessagesMenuItem_Click); - // - // DisplayLogWindowMenuItem - // - this.DisplayLogWindowMenuItem.Text = "Open &Log Window..."; - this.DisplayLogWindowMenuItem.Click += new System.EventHandler(this.DisplayLogWindowMenuItem_Click); - // - // ConfigSubMenu - // - this.ConfigSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.WindowSizeSubMenu.Text = "&Window Size"; + this.WindowSizeSubMenu.DropDownOpened += new System.EventHandler(this.WindowSizeSubMenu_DropDownOpened); + // + // DisableResizeWithFramebufferMenuItem + // + this.DisableResizeWithFramebufferMenuItem.CheckOnClick = true; + this.DisableResizeWithFramebufferMenuItem.Text = "&Static Size"; + this.DisableResizeWithFramebufferMenuItem.Click += new System.EventHandler(this.DisableResizeWithFramebufferMenuItem_Click); + // + // SwitchToFullscreenMenuItem + // + this.SwitchToFullscreenMenuItem.Text = "Switch to Fullscreen"; + this.SwitchToFullscreenMenuItem.Click += new System.EventHandler(this.SwitchToFullscreenMenuItem_Click); + // + // DisplayFPSMenuItem + // + this.DisplayFPSMenuItem.Text = "Display FPS"; + this.DisplayFPSMenuItem.Click += new System.EventHandler(this.DisplayFpsMenuItem_Click); + // + // DisplayFrameCounterMenuItem + // + this.DisplayFrameCounterMenuItem.Text = "Display Frame Count"; + this.DisplayFrameCounterMenuItem.Click += new System.EventHandler(this.DisplayFrameCounterMenuItem_Click); + // + // DisplayLagCounterMenuItem + // + this.DisplayLagCounterMenuItem.Text = "Display Lag Frame Count"; + this.DisplayLagCounterMenuItem.Click += new System.EventHandler(this.DisplayLagCounterMenuItem_Click); + // + // DisplayInputMenuItem + // + this.DisplayInputMenuItem.Text = "Display Input"; + this.DisplayInputMenuItem.Click += new System.EventHandler(this.DisplayInputMenuItem_Click); + // + // DisplayRerecordCountMenuItem + // + this.DisplayRerecordCountMenuItem.Text = "Display Rerecord Count"; + this.DisplayRerecordCountMenuItem.Click += new System.EventHandler(this.DisplayRerecordsMenuItem_Click); + // + // DisplaySubtitlesMenuItem + // + this.DisplaySubtitlesMenuItem.Text = "Display Subtitles"; + this.DisplaySubtitlesMenuItem.Click += new System.EventHandler(this.DisplaySubtitlesMenuItem_Click); + // + // DisplayStatusBarMenuItem + // + this.DisplayStatusBarMenuItem.Text = "Display Status Bar"; + this.DisplayStatusBarMenuItem.Click += new System.EventHandler(this.DisplayStatusBarMenuItem_Click); + // + // DisplayMessagesMenuItem + // + this.DisplayMessagesMenuItem.Text = "Display Messages"; + this.DisplayMessagesMenuItem.Click += new System.EventHandler(this.DisplayMessagesMenuItem_Click); + // + // DisplayLogWindowMenuItem + // + this.DisplayLogWindowMenuItem.Text = "Open &Log Window..."; + this.DisplayLogWindowMenuItem.Click += new System.EventHandler(this.DisplayLogWindowMenuItem_Click); + // + // ConfigSubMenu + // + this.ConfigSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ControllersMenuItem, this.HotkeysMenuItem, this.DisplayConfigMenuItem, @@ -1066,72 +1072,72 @@ private void InitializeComponent() this.SaveConfigAsMenuItem, this.LoadConfigMenuItem, this.LoadConfigFromMenuItem}); - this.ConfigSubMenu.Text = "&Config"; - this.ConfigSubMenu.DropDownOpened += new System.EventHandler(this.ConfigSubMenu_DropDownOpened); - // - // ControllersMenuItem - // - this.ControllersMenuItem.Text = "&Controllers..."; - this.ControllersMenuItem.Click += new System.EventHandler(this.ControllersMenuItem_Click); - // - // HotkeysMenuItem - // - this.HotkeysMenuItem.Text = "&Hotkeys..."; - this.HotkeysMenuItem.Click += new System.EventHandler(this.HotkeysMenuItem_Click); - // - // DisplayConfigMenuItem - // - this.DisplayConfigMenuItem.Text = "Display..."; - this.DisplayConfigMenuItem.Click += new System.EventHandler(this.DisplayConfigMenuItem_Click); - // - // SoundMenuItem - // - this.SoundMenuItem.Text = "&Sound..."; - this.SoundMenuItem.Click += new System.EventHandler(this.SoundMenuItem_Click); - // - // PathsMenuItem - // - this.PathsMenuItem.Text = "Paths..."; - this.PathsMenuItem.Click += new System.EventHandler(this.PathsMenuItem_Click); - // - // FirmwareMenuItem - // - this.FirmwareMenuItem.Text = "&Firmware..."; - this.FirmwareMenuItem.Click += new System.EventHandler(this.FirmwareMenuItem_Click); - // - // MessagesMenuItem - // - this.MessagesMenuItem.Text = "&Messages..."; - this.MessagesMenuItem.Click += new System.EventHandler(this.MessagesMenuItem_Click); - // - // AutofireMenuItem - // - this.AutofireMenuItem.Text = "&Autofire..."; - this.AutofireMenuItem.Click += new System.EventHandler(this.AutofireMenuItem_Click); - // - // RewindOptionsMenuItem - // - this.RewindOptionsMenuItem.Text = "&Rewind && States..."; - this.RewindOptionsMenuItem.Click += new System.EventHandler(this.RewindOptionsMenuItem_Click); - // - // extensionsToolStripMenuItem - // - this.extensionsToolStripMenuItem.Text = "File Extensions..."; - this.extensionsToolStripMenuItem.Click += new System.EventHandler(this.FileExtensionsMenuItem_Click); - // - // ClientOptionsMenuItem - // - this.ClientOptionsMenuItem.Text = "&Customize..."; - this.ClientOptionsMenuItem.Click += new System.EventHandler(this.CustomizeMenuItem_Click); - // - // ProfilesMenuItem - // - this.ProfilesMenuItem.Text = "&Profiles..."; - this.ProfilesMenuItem.Click += new System.EventHandler(this.ProfilesMenuItem_Click); - // - // SpeedSkipSubMenu - // - this.SpeedSkipSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ConfigSubMenu.Text = "&Config"; + this.ConfigSubMenu.DropDownOpened += new System.EventHandler(this.ConfigSubMenu_DropDownOpened); + // + // ControllersMenuItem + // + this.ControllersMenuItem.Text = "&Controllers..."; + this.ControllersMenuItem.Click += new System.EventHandler(this.ControllersMenuItem_Click); + // + // HotkeysMenuItem + // + this.HotkeysMenuItem.Text = "&Hotkeys..."; + this.HotkeysMenuItem.Click += new System.EventHandler(this.HotkeysMenuItem_Click); + // + // DisplayConfigMenuItem + // + this.DisplayConfigMenuItem.Text = "Display..."; + this.DisplayConfigMenuItem.Click += new System.EventHandler(this.DisplayConfigMenuItem_Click); + // + // SoundMenuItem + // + this.SoundMenuItem.Text = "&Sound..."; + this.SoundMenuItem.Click += new System.EventHandler(this.SoundMenuItem_Click); + // + // PathsMenuItem + // + this.PathsMenuItem.Text = "Paths..."; + this.PathsMenuItem.Click += new System.EventHandler(this.PathsMenuItem_Click); + // + // FirmwareMenuItem + // + this.FirmwareMenuItem.Text = "&Firmware..."; + this.FirmwareMenuItem.Click += new System.EventHandler(this.FirmwareMenuItem_Click); + // + // MessagesMenuItem + // + this.MessagesMenuItem.Text = "&Messages..."; + this.MessagesMenuItem.Click += new System.EventHandler(this.MessagesMenuItem_Click); + // + // AutofireMenuItem + // + this.AutofireMenuItem.Text = "&Autofire..."; + this.AutofireMenuItem.Click += new System.EventHandler(this.AutofireMenuItem_Click); + // + // RewindOptionsMenuItem + // + this.RewindOptionsMenuItem.Text = "&Rewind && States..."; + this.RewindOptionsMenuItem.Click += new System.EventHandler(this.RewindOptionsMenuItem_Click); + // + // extensionsToolStripMenuItem + // + this.extensionsToolStripMenuItem.Text = "File Extensions..."; + this.extensionsToolStripMenuItem.Click += new System.EventHandler(this.FileExtensionsMenuItem_Click); + // + // ClientOptionsMenuItem + // + this.ClientOptionsMenuItem.Text = "&Customize..."; + this.ClientOptionsMenuItem.Click += new System.EventHandler(this.CustomizeMenuItem_Click); + // + // ProfilesMenuItem + // + this.ProfilesMenuItem.Text = "&Profiles..."; + this.ProfilesMenuItem.Click += new System.EventHandler(this.ProfilesMenuItem_Click); + // + // SpeedSkipSubMenu + // + this.SpeedSkipSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ClockThrottleMenuItem, this.AudioThrottleMenuItem, this.VsyncThrottleMenuItem, @@ -1149,47 +1155,47 @@ private void InitializeComponent() this.Speed150MenuItem, this.Speed200MenuItem, this.Speed400MenuItem}); - this.SpeedSkipSubMenu.Text = "Speed/Skip"; - this.SpeedSkipSubMenu.DropDownOpened += new System.EventHandler(this.FrameSkipMenuItem_DropDownOpened); - // - // ClockThrottleMenuItem - // - this.ClockThrottleMenuItem.Text = "Clock Throttle"; - this.ClockThrottleMenuItem.Click += new System.EventHandler(this.ClockThrottleMenuItem_Click); - // - // AudioThrottleMenuItem - // - this.AudioThrottleMenuItem.Text = "Audio Throttle"; - this.AudioThrottleMenuItem.Click += new System.EventHandler(this.AudioThrottleMenuItem_Click); - // - // VsyncThrottleMenuItem - // - this.VsyncThrottleMenuItem.Text = "VSync Throttle"; - this.VsyncThrottleMenuItem.Click += new System.EventHandler(this.VsyncThrottleMenuItem_Click); - // - // VsyncEnabledMenuItem - // - this.VsyncEnabledMenuItem.Text = "VSync Enabled"; - this.VsyncEnabledMenuItem.Click += new System.EventHandler(this.VsyncEnabledMenuItem_Click); - // - // miUnthrottled - // - this.miUnthrottled.Text = "Unthrottled"; - this.miUnthrottled.Click += new System.EventHandler(this.UnthrottledMenuItem_Click); - // - // MinimizeSkippingMenuItem - // - this.MinimizeSkippingMenuItem.Text = "Auto-minimize skipping"; - this.MinimizeSkippingMenuItem.Click += new System.EventHandler(this.MinimizeSkippingMenuItem_Click); - // - // NeverSkipMenuItem - // - this.NeverSkipMenuItem.Text = "Skip 0 (never)"; - this.NeverSkipMenuItem.Click += new System.EventHandler(this.NeverSkipMenuItem_Click); - // - // toolStripMenuItem17 - // - this.toolStripMenuItem17.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SpeedSkipSubMenu.Text = "Speed/Skip"; + this.SpeedSkipSubMenu.DropDownOpened += new System.EventHandler(this.FrameSkipMenuItem_DropDownOpened); + // + // ClockThrottleMenuItem + // + this.ClockThrottleMenuItem.Text = "Clock Throttle"; + this.ClockThrottleMenuItem.Click += new System.EventHandler(this.ClockThrottleMenuItem_Click); + // + // AudioThrottleMenuItem + // + this.AudioThrottleMenuItem.Text = "Audio Throttle"; + this.AudioThrottleMenuItem.Click += new System.EventHandler(this.AudioThrottleMenuItem_Click); + // + // VsyncThrottleMenuItem + // + this.VsyncThrottleMenuItem.Text = "VSync Throttle"; + this.VsyncThrottleMenuItem.Click += new System.EventHandler(this.VsyncThrottleMenuItem_Click); + // + // VsyncEnabledMenuItem + // + this.VsyncEnabledMenuItem.Text = "VSync Enabled"; + this.VsyncEnabledMenuItem.Click += new System.EventHandler(this.VsyncEnabledMenuItem_Click); + // + // miUnthrottled + // + this.miUnthrottled.Text = "Unthrottled"; + this.miUnthrottled.Click += new System.EventHandler(this.UnthrottledMenuItem_Click); + // + // MinimizeSkippingMenuItem + // + this.MinimizeSkippingMenuItem.Text = "Auto-minimize skipping"; + this.MinimizeSkippingMenuItem.Click += new System.EventHandler(this.MinimizeSkippingMenuItem_Click); + // + // NeverSkipMenuItem + // + this.NeverSkipMenuItem.Text = "Skip 0 (never)"; + this.NeverSkipMenuItem.Click += new System.EventHandler(this.NeverSkipMenuItem_Click); + // + // toolStripMenuItem17 + // + this.toolStripMenuItem17.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.Frameskip1MenuItem, this.Frameskip2MenuItem, this.Frameskip3MenuItem, @@ -1199,140 +1205,141 @@ private void InitializeComponent() this.Frameskip7MenuItem, this.Frameskip8MenuItem, this.Frameskip9MenuItem}); - this.toolStripMenuItem17.Text = "Skip 1..9"; - // - // Frameskip1MenuItem - // - this.Frameskip1MenuItem.Text = "1"; - this.Frameskip1MenuItem.Click += new System.EventHandler(this.Frameskip1MenuItem_Click); - // - // Frameskip2MenuItem - // - this.Frameskip2MenuItem.Text = "2"; - this.Frameskip2MenuItem.Click += new System.EventHandler(this.Frameskip2MenuItem_Click); - // - // Frameskip3MenuItem - // - this.Frameskip3MenuItem.Text = "3"; - this.Frameskip3MenuItem.Click += new System.EventHandler(this.Frameskip3MenuItem_Click); - // - // Frameskip4MenuItem - // - this.Frameskip4MenuItem.Text = "4"; - this.Frameskip4MenuItem.Click += new System.EventHandler(this.Frameskip4MenuItem_Click); - // - // Frameskip5MenuItem - // - this.Frameskip5MenuItem.Text = "5"; - this.Frameskip5MenuItem.Click += new System.EventHandler(this.Frameskip5MenuItem_Click); - // - // Frameskip6MenuItem - // - this.Frameskip6MenuItem.Text = "6"; - this.Frameskip6MenuItem.Click += new System.EventHandler(this.Frameskip6MenuItem_Click); - // - // Frameskip7MenuItem - // - this.Frameskip7MenuItem.Text = "7"; - this.Frameskip7MenuItem.Click += new System.EventHandler(this.Frameskip7MenuItem_Click); - // - // Frameskip8MenuItem - // - this.Frameskip8MenuItem.Text = "8"; - this.Frameskip8MenuItem.Click += new System.EventHandler(this.Frameskip8MenuItem_Click); - // - // Frameskip9MenuItem - // - this.Frameskip9MenuItem.Text = "9"; - this.Frameskip9MenuItem.Click += new System.EventHandler(this.Frameskip9MenuItem_Click); - // - // Speed50MenuItem - // - this.Speed50MenuItem.Text = "Speed 50%"; - this.Speed50MenuItem.Click += new System.EventHandler(this.Speed50MenuItem_Click); - // - // Speed75MenuItem - // - this.Speed75MenuItem.Text = "Speed 75%"; - this.Speed75MenuItem.Click += new System.EventHandler(this.Speed75MenuItem_Click); - // - // Speed100MenuItem - // - this.Speed100MenuItem.Text = "Speed 100%"; - this.Speed100MenuItem.Click += new System.EventHandler(this.Speed100MenuItem_Click); - // - // Speed150MenuItem - // - this.Speed150MenuItem.Text = "Speed 150%"; - this.Speed150MenuItem.Click += new System.EventHandler(this.Speed150MenuItem_Click); - // - // Speed200MenuItem - // - this.Speed200MenuItem.Text = "Speed 200%"; - this.Speed200MenuItem.Click += new System.EventHandler(this.Speed200MenuItem_Click); - // - // Speed400MenuItem - // - this.Speed400MenuItem.Text = "Speed 400%"; - this.Speed400MenuItem.Click += new System.EventHandler(this.Speed400MenuItem_Click); - // - // KeyPrioritySubMenu - // - this.KeyPrioritySubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripMenuItem17.Text = "Skip 1..9"; + // + // Frameskip1MenuItem + // + this.Frameskip1MenuItem.Text = "1"; + this.Frameskip1MenuItem.Click += new System.EventHandler(this.Frameskip1MenuItem_Click); + // + // Frameskip2MenuItem + // + this.Frameskip2MenuItem.Text = "2"; + this.Frameskip2MenuItem.Click += new System.EventHandler(this.Frameskip2MenuItem_Click); + // + // Frameskip3MenuItem + // + this.Frameskip3MenuItem.Text = "3"; + this.Frameskip3MenuItem.Click += new System.EventHandler(this.Frameskip3MenuItem_Click); + // + // Frameskip4MenuItem + // + this.Frameskip4MenuItem.Text = "4"; + this.Frameskip4MenuItem.Click += new System.EventHandler(this.Frameskip4MenuItem_Click); + // + // Frameskip5MenuItem + // + this.Frameskip5MenuItem.Text = "5"; + this.Frameskip5MenuItem.Click += new System.EventHandler(this.Frameskip5MenuItem_Click); + // + // Frameskip6MenuItem + // + this.Frameskip6MenuItem.Text = "6"; + this.Frameskip6MenuItem.Click += new System.EventHandler(this.Frameskip6MenuItem_Click); + // + // Frameskip7MenuItem + // + this.Frameskip7MenuItem.Text = "7"; + this.Frameskip7MenuItem.Click += new System.EventHandler(this.Frameskip7MenuItem_Click); + // + // Frameskip8MenuItem + // + this.Frameskip8MenuItem.Text = "8"; + this.Frameskip8MenuItem.Click += new System.EventHandler(this.Frameskip8MenuItem_Click); + // + // Frameskip9MenuItem + // + this.Frameskip9MenuItem.Text = "9"; + this.Frameskip9MenuItem.Click += new System.EventHandler(this.Frameskip9MenuItem_Click); + // + // Speed50MenuItem + // + this.Speed50MenuItem.Text = "Speed 50%"; + this.Speed50MenuItem.Click += new System.EventHandler(this.Speed50MenuItem_Click); + // + // Speed75MenuItem + // + this.Speed75MenuItem.Text = "Speed 75%"; + this.Speed75MenuItem.Click += new System.EventHandler(this.Speed75MenuItem_Click); + // + // Speed100MenuItem + // + this.Speed100MenuItem.Text = "Speed 100%"; + this.Speed100MenuItem.Click += new System.EventHandler(this.Speed100MenuItem_Click); + // + // Speed150MenuItem + // + this.Speed150MenuItem.Text = "Speed 150%"; + this.Speed150MenuItem.Click += new System.EventHandler(this.Speed150MenuItem_Click); + // + // Speed200MenuItem + // + this.Speed200MenuItem.Text = "Speed 200%"; + this.Speed200MenuItem.Click += new System.EventHandler(this.Speed200MenuItem_Click); + // + // Speed400MenuItem + // + this.Speed400MenuItem.Text = "Speed 400%"; + this.Speed400MenuItem.Click += new System.EventHandler(this.Speed400MenuItem_Click); + // + // KeyPrioritySubMenu + // + this.KeyPrioritySubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.BothHkAndControllerMenuItem, this.InputOverHkMenuItem, this.HkOverInputMenuItem}); - this.KeyPrioritySubMenu.Text = "Key Priority"; - this.KeyPrioritySubMenu.DropDownOpened += new System.EventHandler(this.KeyPriorityMenuItem_DropDownOpened); - // - // BothHkAndControllerMenuItem - // - this.BothHkAndControllerMenuItem.Text = "Both Hotkeys and Controllers"; - this.BothHkAndControllerMenuItem.Click += new System.EventHandler(this.BothHkAndControllerMenuItem_Click); - // - // InputOverHkMenuItem - // - this.InputOverHkMenuItem.Text = "Input overrides Hotkeys"; - this.InputOverHkMenuItem.Click += new System.EventHandler(this.InputOverHkMenuItem_Click); - // - // HkOverInputMenuItem - // - this.HkOverInputMenuItem.Text = "Hotkeys override Input"; - this.HkOverInputMenuItem.Click += new System.EventHandler(this.HkOverInputMenuItem_Click); - // - // CoresSubMenu - // - this.CoresSubMenu.Text = "Preferred Cores"; - // - // SaveConfigMenuItem - // - this.SaveConfigMenuItem.Text = "Save Config"; - this.SaveConfigMenuItem.Click += new System.EventHandler(this.SaveConfigMenuItem_Click); - // - // SaveConfigAsMenuItem - // - this.SaveConfigAsMenuItem.Text = "Save Config As..."; - this.SaveConfigAsMenuItem.Click += new System.EventHandler(this.SaveConfigAsMenuItem_Click); - // - // LoadConfigMenuItem - // - this.LoadConfigMenuItem.Text = "Load Config"; - this.LoadConfigMenuItem.Click += new System.EventHandler(this.LoadConfigMenuItem_Click); - // - // LoadConfigFromMenuItem - // - this.LoadConfigFromMenuItem.Text = "Load Config From..."; - this.LoadConfigFromMenuItem.Click += new System.EventHandler(this.LoadConfigFromMenuItem_Click); - // - // ToolsSubMenu - // - this.ToolsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.KeyPrioritySubMenu.Text = "Key Priority"; + this.KeyPrioritySubMenu.DropDownOpened += new System.EventHandler(this.KeyPriorityMenuItem_DropDownOpened); + // + // BothHkAndControllerMenuItem + // + this.BothHkAndControllerMenuItem.Text = "Both Hotkeys and Controllers"; + this.BothHkAndControllerMenuItem.Click += new System.EventHandler(this.BothHkAndControllerMenuItem_Click); + // + // InputOverHkMenuItem + // + this.InputOverHkMenuItem.Text = "Input overrides Hotkeys"; + this.InputOverHkMenuItem.Click += new System.EventHandler(this.InputOverHkMenuItem_Click); + // + // HkOverInputMenuItem + // + this.HkOverInputMenuItem.Text = "Hotkeys override Input"; + this.HkOverInputMenuItem.Click += new System.EventHandler(this.HkOverInputMenuItem_Click); + // + // CoresSubMenu + // + this.CoresSubMenu.Text = "Preferred Cores"; + // + // SaveConfigMenuItem + // + this.SaveConfigMenuItem.Text = "Save Config"; + this.SaveConfigMenuItem.Click += new System.EventHandler(this.SaveConfigMenuItem_Click); + // + // SaveConfigAsMenuItem + // + this.SaveConfigAsMenuItem.Text = "Save Config As..."; + this.SaveConfigAsMenuItem.Click += new System.EventHandler(this.SaveConfigAsMenuItem_Click); + // + // LoadConfigMenuItem + // + this.LoadConfigMenuItem.Text = "Load Config"; + this.LoadConfigMenuItem.Click += new System.EventHandler(this.LoadConfigMenuItem_Click); + // + // LoadConfigFromMenuItem + // + this.LoadConfigFromMenuItem.Text = "Load Config From..."; + this.LoadConfigFromMenuItem.Click += new System.EventHandler(this.LoadConfigFromMenuItem_Click); + // + // ToolsSubMenu + // + this.ToolsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ToolBoxMenuItem, this.toolStripSeparator12, this.RamWatchMenuItem, this.RamSearchMenuItem, this.LuaConsoleMenuItem, this.TAStudioMenuItem, + this.TAStudioMPRToolStripMenuItem, this.HexEditorMenuItem, this.TraceLoggerMenuItem, this.DebuggerMenuItem, @@ -1348,115 +1355,122 @@ private void InitializeComponent() this.BatchRunnerMenuItem, this.ExternalToolMenuItem, this.RetroAchievementsMenuItem}); - this.ToolsSubMenu.Text = "&Tools"; - this.ToolsSubMenu.DropDownOpened += new System.EventHandler(this.ToolsSubMenu_DropDownOpened); - // - // ToolBoxMenuItem - // - this.ToolBoxMenuItem.Text = "&Tool Box"; - this.ToolBoxMenuItem.Click += new System.EventHandler(this.ToolBoxMenuItem_Click); - // - // RamWatchMenuItem - // - this.RamWatchMenuItem.Text = "RAM &Watch"; - this.RamWatchMenuItem.Click += new System.EventHandler(this.RamWatchMenuItem_Click); - // - // RamSearchMenuItem - // - this.RamSearchMenuItem.Text = "RAM &Search"; - this.RamSearchMenuItem.Click += new System.EventHandler(this.RamSearchMenuItem_Click); - // - // LuaConsoleMenuItem - // - this.LuaConsoleMenuItem.Text = "Lua Console"; - this.LuaConsoleMenuItem.Click += new System.EventHandler(this.LuaConsoleMenuItem_Click); - // - // TAStudioMenuItem - // - this.TAStudioMenuItem.Text = "&TAStudio"; - this.TAStudioMenuItem.Click += new System.EventHandler(this.TAStudioMenuItem_Click); - // - // HexEditorMenuItem - // - this.HexEditorMenuItem.Text = "&Hex Editor"; - this.HexEditorMenuItem.Click += new System.EventHandler(this.HexEditorMenuItem_Click); - // - // TraceLoggerMenuItem - // - this.TraceLoggerMenuItem.Text = "Trace &Logger"; - this.TraceLoggerMenuItem.Click += new System.EventHandler(this.TraceLoggerMenuItem_Click); - // - // DebuggerMenuItem - // - this.DebuggerMenuItem.Text = "&Debugger"; - this.DebuggerMenuItem.Click += new System.EventHandler(this.DebuggerMenuItem_Click); - // - // CodeDataLoggerMenuItem - // - this.CodeDataLoggerMenuItem.Text = "Code-Data Logger"; - this.CodeDataLoggerMenuItem.Click += new System.EventHandler(this.CodeDataLoggerMenuItem_Click); - // - // MacroToolMenuItem - // - this.MacroToolMenuItem.Text = "&Macro Tool"; - this.MacroToolMenuItem.Click += new System.EventHandler(this.MacroToolMenuItem_Click); - // - // VirtualPadMenuItem - // - this.VirtualPadMenuItem.Text = "Virtual Pad"; - this.VirtualPadMenuItem.Click += new System.EventHandler(this.VirtualPadMenuItem_Click); - // - // BasicBotMenuItem - // - this.BasicBotMenuItem.Text = "Basic Bot"; - this.BasicBotMenuItem.Click += new System.EventHandler(this.BasicBotMenuItem_Click); - // - // CheatsMenuItem - // - this.CheatsMenuItem.Text = "Cheats"; - this.CheatsMenuItem.Click += new System.EventHandler(this.CheatsMenuItem_Click); - // - // GameSharkConverterMenuItem - // - this.GameSharkConverterMenuItem.Text = "Cheat Code Converter"; - this.GameSharkConverterMenuItem.Click += new System.EventHandler(this.CheatCodeConverterMenuItem_Click); - // - // MultiDiskBundlerFileMenuItem - // - this.MultiDiskBundlerFileMenuItem.Text = "Multi-disk Bundler"; - this.MultiDiskBundlerFileMenuItem.Click += new System.EventHandler(this.MultidiskBundlerMenuItem_Click); - // - // BatchRunnerMenuItem - // - this.BatchRunnerMenuItem.Text = "Batch Runner..."; - this.BatchRunnerMenuItem.Visible = false; - this.BatchRunnerMenuItem.Click += new System.EventHandler(this.BatchRunnerMenuItem_Click); - // - // ExternalToolMenuItem - // - this.ExternalToolMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolsSubMenu.Text = "&Tools"; + this.ToolsSubMenu.DropDownOpened += new System.EventHandler(this.ToolsSubMenu_DropDownOpened); + // + // ToolBoxMenuItem + // + this.ToolBoxMenuItem.Text = "&Tool Box"; + this.ToolBoxMenuItem.Click += new System.EventHandler(this.ToolBoxMenuItem_Click); + // + // RamWatchMenuItem + // + this.RamWatchMenuItem.Text = "RAM &Watch"; + this.RamWatchMenuItem.Click += new System.EventHandler(this.RamWatchMenuItem_Click); + // + // RamSearchMenuItem + // + this.RamSearchMenuItem.Text = "RAM &Search"; + this.RamSearchMenuItem.Click += new System.EventHandler(this.RamSearchMenuItem_Click); + // + // LuaConsoleMenuItem + // + this.LuaConsoleMenuItem.Text = "Lua Console"; + this.LuaConsoleMenuItem.Click += new System.EventHandler(this.LuaConsoleMenuItem_Click); + // + // TAStudioMenuItem + // + this.TAStudioMenuItem.Text = "&TAStudio"; + this.TAStudioMenuItem.Click += new System.EventHandler(this.TAStudioMenuItem_Click); + // + // TAStudioMPRToolStripMenuItem + // + this.TAStudioMPRToolStripMenuItem.Name = "TAStudioMPRToolStripMenuItem"; + this.TAStudioMPRToolStripMenuItem.Size = new System.Drawing.Size(191, 22); + this.TAStudioMPRToolStripMenuItem.Text = "TAStudioMPR"; + this.TAStudioMPRToolStripMenuItem.Click += new System.EventHandler(this.TAStudioMPRToolStripMenuItem_Click); + // + // HexEditorMenuItem + // + this.HexEditorMenuItem.Text = "&Hex Editor"; + this.HexEditorMenuItem.Click += new System.EventHandler(this.HexEditorMenuItem_Click); + // + // TraceLoggerMenuItem + // + this.TraceLoggerMenuItem.Text = "Trace &Logger"; + this.TraceLoggerMenuItem.Click += new System.EventHandler(this.TraceLoggerMenuItem_Click); + // + // DebuggerMenuItem + // + this.DebuggerMenuItem.Text = "&Debugger"; + this.DebuggerMenuItem.Click += new System.EventHandler(this.DebuggerMenuItem_Click); + // + // CodeDataLoggerMenuItem + // + this.CodeDataLoggerMenuItem.Text = "Code-Data Logger"; + this.CodeDataLoggerMenuItem.Click += new System.EventHandler(this.CodeDataLoggerMenuItem_Click); + // + // MacroToolMenuItem + // + this.MacroToolMenuItem.Text = "&Macro Tool"; + this.MacroToolMenuItem.Click += new System.EventHandler(this.MacroToolMenuItem_Click); + // + // VirtualPadMenuItem + // + this.VirtualPadMenuItem.Text = "Virtual Pad"; + this.VirtualPadMenuItem.Click += new System.EventHandler(this.VirtualPadMenuItem_Click); + // + // BasicBotMenuItem + // + this.BasicBotMenuItem.Text = "Basic Bot"; + this.BasicBotMenuItem.Click += new System.EventHandler(this.BasicBotMenuItem_Click); + // + // CheatsMenuItem + // + this.CheatsMenuItem.Text = "Cheats"; + this.CheatsMenuItem.Click += new System.EventHandler(this.CheatsMenuItem_Click); + // + // GameSharkConverterMenuItem + // + this.GameSharkConverterMenuItem.Text = "Cheat Code Converter"; + this.GameSharkConverterMenuItem.Click += new System.EventHandler(this.CheatCodeConverterMenuItem_Click); + // + // MultiDiskBundlerFileMenuItem + // + this.MultiDiskBundlerFileMenuItem.Text = "Multi-disk Bundler"; + this.MultiDiskBundlerFileMenuItem.Click += new System.EventHandler(this.MultidiskBundlerMenuItem_Click); + // + // BatchRunnerMenuItem + // + this.BatchRunnerMenuItem.Text = "Batch Runner..."; + this.BatchRunnerMenuItem.Visible = false; + this.BatchRunnerMenuItem.Click += new System.EventHandler(this.BatchRunnerMenuItem_Click); + // + // ExternalToolMenuItem + // + this.ExternalToolMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.dummyExternalTool}); - this.ExternalToolMenuItem.Text = "External Tool"; - this.ExternalToolMenuItem.DropDownOpening += new System.EventHandler(this.ExternalToolMenuItem_DropDownOpening); - // - // dummyExternalTool - // - this.dummyExternalTool.Text = "None"; - // - // RetroAchievementsMenuItem - // - this.RetroAchievementsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ExternalToolMenuItem.Text = "External Tool"; + this.ExternalToolMenuItem.DropDownOpening += new System.EventHandler(this.ExternalToolMenuItem_DropDownOpening); + // + // dummyExternalTool + // + this.dummyExternalTool.Text = "None"; + // + // RetroAchievementsMenuItem + // + this.RetroAchievementsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.StartRetroAchievementsMenuItem}); - this.RetroAchievementsMenuItem.Text = "&RetroAchievements"; - // - // StartRetroAchievementsMenuItem - // - this.StartRetroAchievementsMenuItem.Text = "&Start RetroAchievements"; - this.StartRetroAchievementsMenuItem.Click += new System.EventHandler(this.StartRetroAchievementsMenuItem_Click); - // - // NESSubMenu - // - this.NESSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.RetroAchievementsMenuItem.Text = "&RetroAchievements"; + // + // StartRetroAchievementsMenuItem + // + this.StartRetroAchievementsMenuItem.Text = "&Start RetroAchievements"; + this.StartRetroAchievementsMenuItem.Click += new System.EventHandler(this.StartRetroAchievementsMenuItem_Click); + // + // NESSubMenu + // + this.NESSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.NESPPUViewerMenuItem, this.NESNametableViewerMenuItem, this.MusicRipperMenuItem, @@ -1470,520 +1484,520 @@ private void InitializeComponent() this.FDSControlsMenuItem, this.VSControlsMenuItem, this.BarcodeReaderMenuItem}); - this.NESSubMenu.Text = "&NES"; - this.NESSubMenu.DropDownOpened += new System.EventHandler(this.NesSubMenu_DropDownOpened); - // - // NESPPUViewerMenuItem - // - this.NESPPUViewerMenuItem.Text = "&PPU Viewer"; - this.NESPPUViewerMenuItem.Click += new System.EventHandler(this.NesPpuViewerMenuItem_Click); - // - // NESNametableViewerMenuItem - // - this.NESNametableViewerMenuItem.Text = "&Nametable Viewer"; - this.NESNametableViewerMenuItem.Click += new System.EventHandler(this.NesNametableViewerMenuItem_Click); - // - // MusicRipperMenuItem - // - this.MusicRipperMenuItem.Text = "Music Ripper"; - this.MusicRipperMenuItem.Click += new System.EventHandler(this.MusicRipperMenuItem_Click); - // - // NesControllerSettingsMenuItem - // - this.NesControllerSettingsMenuItem.Text = "Controller Settings..."; - this.NesControllerSettingsMenuItem.Click += new System.EventHandler(this.NesControllerSettingsMenuItem_Click); - // - // NESGraphicSettingsMenuItem - // - this.NESGraphicSettingsMenuItem.Text = "Graphics Settings..."; - this.NESGraphicSettingsMenuItem.Click += new System.EventHandler(this.NesGraphicSettingsMenuItem_Click); - // - // NESSoundChannelsMenuItem - // - this.NESSoundChannelsMenuItem.Text = "Sound Channels..."; - this.NESSoundChannelsMenuItem.Click += new System.EventHandler(this.NesSoundChannelsMenuItem_Click); - // - // VSSettingsMenuItem - // - this.VSSettingsMenuItem.Text = "VS Settings..."; - this.VSSettingsMenuItem.Click += new System.EventHandler(this.VsSettingsMenuItem_Click); - // - // MovieSettingsMenuItem - // - this.MovieSettingsMenuItem.Text = "Advanced Settings..."; - this.MovieSettingsMenuItem.Click += new System.EventHandler(this.MovieSettingsMenuItem_Click); - // - // FDSControlsMenuItem - // - this.FDSControlsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.NESSubMenu.Text = "&NES"; + this.NESSubMenu.DropDownOpened += new System.EventHandler(this.NesSubMenu_DropDownOpened); + // + // NESPPUViewerMenuItem + // + this.NESPPUViewerMenuItem.Text = "&PPU Viewer"; + this.NESPPUViewerMenuItem.Click += new System.EventHandler(this.NesPpuViewerMenuItem_Click); + // + // NESNametableViewerMenuItem + // + this.NESNametableViewerMenuItem.Text = "&Nametable Viewer"; + this.NESNametableViewerMenuItem.Click += new System.EventHandler(this.NesNametableViewerMenuItem_Click); + // + // MusicRipperMenuItem + // + this.MusicRipperMenuItem.Text = "Music Ripper"; + this.MusicRipperMenuItem.Click += new System.EventHandler(this.MusicRipperMenuItem_Click); + // + // NesControllerSettingsMenuItem + // + this.NesControllerSettingsMenuItem.Text = "Controller Settings..."; + this.NesControllerSettingsMenuItem.Click += new System.EventHandler(this.NesControllerSettingsMenuItem_Click); + // + // NESGraphicSettingsMenuItem + // + this.NESGraphicSettingsMenuItem.Text = "Graphics Settings..."; + this.NESGraphicSettingsMenuItem.Click += new System.EventHandler(this.NesGraphicSettingsMenuItem_Click); + // + // NESSoundChannelsMenuItem + // + this.NESSoundChannelsMenuItem.Text = "Sound Channels..."; + this.NESSoundChannelsMenuItem.Click += new System.EventHandler(this.NesSoundChannelsMenuItem_Click); + // + // VSSettingsMenuItem + // + this.VSSettingsMenuItem.Text = "VS Settings..."; + this.VSSettingsMenuItem.Click += new System.EventHandler(this.VsSettingsMenuItem_Click); + // + // MovieSettingsMenuItem + // + this.MovieSettingsMenuItem.Text = "Advanced Settings..."; + this.MovieSettingsMenuItem.Click += new System.EventHandler(this.MovieSettingsMenuItem_Click); + // + // FDSControlsMenuItem + // + this.FDSControlsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FdsEjectDiskMenuItem}); - this.FDSControlsMenuItem.Text = "FDS Controls"; - this.FDSControlsMenuItem.DropDownOpened += new System.EventHandler(this.FdsControlsMenuItem_DropDownOpened); - // - // FdsEjectDiskMenuItem - // - this.FdsEjectDiskMenuItem.Text = "&Eject Disk"; - this.FdsEjectDiskMenuItem.Click += new System.EventHandler(this.FdsEjectDiskMenuItem_Click); - // - // VSControlsMenuItem - // - this.VSControlsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.FDSControlsMenuItem.Text = "FDS Controls"; + this.FDSControlsMenuItem.DropDownOpened += new System.EventHandler(this.FdsControlsMenuItem_DropDownOpened); + // + // FdsEjectDiskMenuItem + // + this.FdsEjectDiskMenuItem.Text = "&Eject Disk"; + this.FdsEjectDiskMenuItem.Click += new System.EventHandler(this.FdsEjectDiskMenuItem_Click); + // + // VSControlsMenuItem + // + this.VSControlsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.VSInsertCoinP1MenuItem, this.VSInsertCoinP2MenuItem, this.VSServiceSwitchMenuItem}); - this.VSControlsMenuItem.Text = "VS Controls"; - // - // VSInsertCoinP1MenuItem - // - this.VSInsertCoinP1MenuItem.Text = "Insert Coin P1"; - this.VSInsertCoinP1MenuItem.Click += new System.EventHandler(this.VsInsertCoinP1MenuItem_Click); - // - // VSInsertCoinP2MenuItem - // - this.VSInsertCoinP2MenuItem.Text = "Insert Coin P2"; - this.VSInsertCoinP2MenuItem.Click += new System.EventHandler(this.VsInsertCoinP2MenuItem_Click); - // - // VSServiceSwitchMenuItem - // - this.VSServiceSwitchMenuItem.Text = "Service Switch"; - this.VSServiceSwitchMenuItem.Click += new System.EventHandler(this.VsServiceSwitchMenuItem_Click); - // - // BarcodeReaderMenuItem - // - this.BarcodeReaderMenuItem.Text = "Barcode Reader"; - this.BarcodeReaderMenuItem.Click += new System.EventHandler(this.BarcodeReaderMenuItem_Click); - // - // TI83SubMenu - // - this.TI83SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.VSControlsMenuItem.Text = "VS Controls"; + // + // VSInsertCoinP1MenuItem + // + this.VSInsertCoinP1MenuItem.Text = "Insert Coin P1"; + this.VSInsertCoinP1MenuItem.Click += new System.EventHandler(this.VsInsertCoinP1MenuItem_Click); + // + // VSInsertCoinP2MenuItem + // + this.VSInsertCoinP2MenuItem.Text = "Insert Coin P2"; + this.VSInsertCoinP2MenuItem.Click += new System.EventHandler(this.VsInsertCoinP2MenuItem_Click); + // + // VSServiceSwitchMenuItem + // + this.VSServiceSwitchMenuItem.Text = "Service Switch"; + this.VSServiceSwitchMenuItem.Click += new System.EventHandler(this.VsServiceSwitchMenuItem_Click); + // + // BarcodeReaderMenuItem + // + this.BarcodeReaderMenuItem.Text = "Barcode Reader"; + this.BarcodeReaderMenuItem.Click += new System.EventHandler(this.BarcodeReaderMenuItem_Click); + // + // TI83SubMenu + // + this.TI83SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.KeypadMenuItem, this.LoadTIFileMenuItem, this.toolStripSeparator13, this.paletteToolStripMenuItem}); - this.TI83SubMenu.Text = "TI83"; - // - // KeypadMenuItem - // - this.KeypadMenuItem.Text = "Keypad"; - this.KeypadMenuItem.Click += new System.EventHandler(this.Ti83KeypadMenuItem_Click); - // - // LoadTIFileMenuItem - // - this.LoadTIFileMenuItem.Text = "Load TI-83 File..."; - this.LoadTIFileMenuItem.Click += new System.EventHandler(this.Ti83LoadTIFileMenuItem_Click); - // - // paletteToolStripMenuItem - // - this.paletteToolStripMenuItem.Text = "Palette..."; - this.paletteToolStripMenuItem.Click += new System.EventHandler(this.Ti83PaletteMenuItem_Click); - // - // A7800SubMenu - // - this.A7800SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.TI83SubMenu.Text = "TI83"; + // + // KeypadMenuItem + // + this.KeypadMenuItem.Text = "Keypad"; + this.KeypadMenuItem.Click += new System.EventHandler(this.Ti83KeypadMenuItem_Click); + // + // LoadTIFileMenuItem + // + this.LoadTIFileMenuItem.Text = "Load TI-83 File..."; + this.LoadTIFileMenuItem.Click += new System.EventHandler(this.Ti83LoadTIFileMenuItem_Click); + // + // paletteToolStripMenuItem + // + this.paletteToolStripMenuItem.Text = "Palette..."; + this.paletteToolStripMenuItem.Click += new System.EventHandler(this.Ti83PaletteMenuItem_Click); + // + // A7800SubMenu + // + this.A7800SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.A7800ControllerSettingsMenuItem, this.A7800FilterSettingsMenuItem}); - this.A7800SubMenu.Text = "&A7800"; - this.A7800SubMenu.DropDownOpened += new System.EventHandler(this.A7800SubMenu_DropDownOpened); - // - // A7800ControllerSettingsMenuItem - // - this.A7800ControllerSettingsMenuItem.Text = "Controller Settings"; - this.A7800ControllerSettingsMenuItem.Click += new System.EventHandler(this.A7800ControllerSettingsMenuItem_Click); - // - // A7800FilterSettingsMenuItem - // - this.A7800FilterSettingsMenuItem.Text = "Filter Settings"; - this.A7800FilterSettingsMenuItem.Click += new System.EventHandler(this.A7800FilterSettingsMenuItem_Click); - // - // GBSubMenu - // - this.GBSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.A7800SubMenu.Text = "&A7800"; + this.A7800SubMenu.DropDownOpened += new System.EventHandler(this.A7800SubMenu_DropDownOpened); + // + // A7800ControllerSettingsMenuItem + // + this.A7800ControllerSettingsMenuItem.Text = "Controller Settings"; + this.A7800ControllerSettingsMenuItem.Click += new System.EventHandler(this.A7800ControllerSettingsMenuItem_Click); + // + // A7800FilterSettingsMenuItem + // + this.A7800FilterSettingsMenuItem.Text = "Filter Settings"; + this.A7800FilterSettingsMenuItem.Click += new System.EventHandler(this.A7800FilterSettingsMenuItem_Click); + // + // GBSubMenu + // + this.GBSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.GBcoreSettingsToolStripMenuItem, this.SameBoyColorChooserMenuItem, this.toolStripSeparator28, this.GBGPUViewerMenuItem, this.GBPrinterViewerMenuItem}); - this.GBSubMenu.Text = "&GB"; - // - // GBcoreSettingsToolStripMenuItem - // - this.GBcoreSettingsToolStripMenuItem.Text = "Settings..."; - this.GBcoreSettingsToolStripMenuItem.Click += new System.EventHandler(this.GbCoreSettingsMenuItem_Click); - // - // SameBoyColorChooserMenuItem - // - this.SameBoyColorChooserMenuItem.Text = "&Choose Custom Palette..."; - this.SameBoyColorChooserMenuItem.Click += new System.EventHandler(this.SameboyColorChooserMenuItem_Click); - // - // GBGPUViewerMenuItem - // - this.GBGPUViewerMenuItem.Text = "GPU Viewer"; - this.GBGPUViewerMenuItem.Click += new System.EventHandler(this.GbGpuViewerMenuItem_Click); - // - // GBPrinterViewerMenuItem - // - this.GBPrinterViewerMenuItem.Text = "&Printer Viewer"; - this.GBPrinterViewerMenuItem.Click += new System.EventHandler(this.GbPrinterViewerMenuItem_Click); - // - // PSXSubMenu - // - this.PSXSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.GBSubMenu.Text = "&GB"; + // + // GBcoreSettingsToolStripMenuItem + // + this.GBcoreSettingsToolStripMenuItem.Text = "Settings..."; + this.GBcoreSettingsToolStripMenuItem.Click += new System.EventHandler(this.GbCoreSettingsMenuItem_Click); + // + // SameBoyColorChooserMenuItem + // + this.SameBoyColorChooserMenuItem.Text = "&Choose Custom Palette..."; + this.SameBoyColorChooserMenuItem.Click += new System.EventHandler(this.SameboyColorChooserMenuItem_Click); + // + // GBGPUViewerMenuItem + // + this.GBGPUViewerMenuItem.Text = "GPU Viewer"; + this.GBGPUViewerMenuItem.Click += new System.EventHandler(this.GbGpuViewerMenuItem_Click); + // + // GBPrinterViewerMenuItem + // + this.GBPrinterViewerMenuItem.Text = "&Printer Viewer"; + this.GBPrinterViewerMenuItem.Click += new System.EventHandler(this.GbPrinterViewerMenuItem_Click); + // + // PSXSubMenu + // + this.PSXSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.PSXControllerSettingsMenuItem, this.PSXOptionsMenuItem, this.PSXDiscControlsMenuItem, this.PSXHashDiscsToolStripMenuItem}); - this.PSXSubMenu.Text = "PSX"; - this.PSXSubMenu.DropDownOpened += new System.EventHandler(this.PsxSubMenu_DropDownOpened); - // - // PSXControllerSettingsMenuItem - // - this.PSXControllerSettingsMenuItem.Text = "Controller / Memcard Settings"; - this.PSXControllerSettingsMenuItem.Click += new System.EventHandler(this.PsxControllerSettingsMenuItem_Click); - // - // PSXOptionsMenuItem - // - this.PSXOptionsMenuItem.Text = "&Options"; - this.PSXOptionsMenuItem.Click += new System.EventHandler(this.PsxOptionsMenuItem_Click); - // - // PSXDiscControlsMenuItem - // - this.PSXDiscControlsMenuItem.Text = "&Disc Controls"; - this.PSXDiscControlsMenuItem.Click += new System.EventHandler(this.PsxDiscControlsMenuItem_Click); - // - // PSXHashDiscsToolStripMenuItem - // - this.PSXHashDiscsToolStripMenuItem.Text = "&Hash Discs"; - this.PSXHashDiscsToolStripMenuItem.Click += new System.EventHandler(this.PsxHashDiscsMenuItem_Click); - // - // SNESSubMenu - // - this.SNESSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.PSXSubMenu.Text = "PSX"; + this.PSXSubMenu.DropDownOpened += new System.EventHandler(this.PsxSubMenu_DropDownOpened); + // + // PSXControllerSettingsMenuItem + // + this.PSXControllerSettingsMenuItem.Text = "Controller / Memcard Settings"; + this.PSXControllerSettingsMenuItem.Click += new System.EventHandler(this.PsxControllerSettingsMenuItem_Click); + // + // PSXOptionsMenuItem + // + this.PSXOptionsMenuItem.Text = "&Options"; + this.PSXOptionsMenuItem.Click += new System.EventHandler(this.PsxOptionsMenuItem_Click); + // + // PSXDiscControlsMenuItem + // + this.PSXDiscControlsMenuItem.Text = "&Disc Controls"; + this.PSXDiscControlsMenuItem.Click += new System.EventHandler(this.PsxDiscControlsMenuItem_Click); + // + // PSXHashDiscsToolStripMenuItem + // + this.PSXHashDiscsToolStripMenuItem.Text = "&Hash Discs"; + this.PSXHashDiscsToolStripMenuItem.Click += new System.EventHandler(this.PsxHashDiscsMenuItem_Click); + // + // SNESSubMenu + // + this.SNESSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SNESControllerConfigurationMenuItem, this.toolStripSeparator18, this.SnesGfxDebuggerMenuItem, this.SnesOptionsMenuItem}); - this.SNESSubMenu.Text = "&SNES"; - this.SNESSubMenu.DropDownOpened += new System.EventHandler(this.SnesSubMenu_DropDownOpened); - // - // SNESControllerConfigurationMenuItem - // - this.SNESControllerConfigurationMenuItem.Text = "Controller Configuration"; - this.SNESControllerConfigurationMenuItem.Click += new System.EventHandler(this.SNESControllerConfigurationMenuItem_Click); - // - // SnesGfxDebuggerMenuItem - // - this.SnesGfxDebuggerMenuItem.Text = "Graphics Debugger"; - this.SnesGfxDebuggerMenuItem.Click += new System.EventHandler(this.SnesGfxDebuggerMenuItem_Click); - // - // SnesOptionsMenuItem - // - this.SnesOptionsMenuItem.Text = "&Options"; - this.SnesOptionsMenuItem.Click += new System.EventHandler(this.SnesOptionsMenuItem_Click); - // - // ColecoSubMenu - // - this.ColecoSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SNESSubMenu.Text = "&SNES"; + this.SNESSubMenu.DropDownOpened += new System.EventHandler(this.SnesSubMenu_DropDownOpened); + // + // SNESControllerConfigurationMenuItem + // + this.SNESControllerConfigurationMenuItem.Text = "Controller Configuration"; + this.SNESControllerConfigurationMenuItem.Click += new System.EventHandler(this.SNESControllerConfigurationMenuItem_Click); + // + // SnesGfxDebuggerMenuItem + // + this.SnesGfxDebuggerMenuItem.Text = "Graphics Debugger"; + this.SnesGfxDebuggerMenuItem.Click += new System.EventHandler(this.SnesGfxDebuggerMenuItem_Click); + // + // SnesOptionsMenuItem + // + this.SnesOptionsMenuItem.Text = "&Options"; + this.SnesOptionsMenuItem.Click += new System.EventHandler(this.SnesOptionsMenuItem_Click); + // + // ColecoSubMenu + // + this.ColecoSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ColecoControllerSettingsMenuItem, this.toolStripSeparator35, this.ColecoSkipBiosMenuItem, this.ColecoUseSGMMenuItem}); - this.ColecoSubMenu.Text = "&Coleco"; - this.ColecoSubMenu.DropDownOpened += new System.EventHandler(this.ColecoSubMenu_DropDownOpened); - // - // ColecoControllerSettingsMenuItem - // - this.ColecoControllerSettingsMenuItem.Text = "&Controller Settings..."; - this.ColecoControllerSettingsMenuItem.Click += new System.EventHandler(this.ColecoControllerSettingsMenuItem_Click); - // - // ColecoSkipBiosMenuItem - // - this.ColecoSkipBiosMenuItem.Text = "&Skip BIOS intro (When Applicable)"; - this.ColecoSkipBiosMenuItem.Click += new System.EventHandler(this.ColecoSkipBiosMenuItem_Click); - // - // ColecoUseSGMMenuItem - // - this.ColecoUseSGMMenuItem.Text = "&Use the Super Game Module"; - this.ColecoUseSGMMenuItem.Click += new System.EventHandler(this.ColecoUseSGMMenuItem_Click); - // - // N64SubMenu - // - this.N64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ColecoSubMenu.Text = "&Coleco"; + this.ColecoSubMenu.DropDownOpened += new System.EventHandler(this.ColecoSubMenu_DropDownOpened); + // + // ColecoControllerSettingsMenuItem + // + this.ColecoControllerSettingsMenuItem.Text = "&Controller Settings..."; + this.ColecoControllerSettingsMenuItem.Click += new System.EventHandler(this.ColecoControllerSettingsMenuItem_Click); + // + // ColecoSkipBiosMenuItem + // + this.ColecoSkipBiosMenuItem.Text = "&Skip BIOS intro (When Applicable)"; + this.ColecoSkipBiosMenuItem.Click += new System.EventHandler(this.ColecoSkipBiosMenuItem_Click); + // + // ColecoUseSGMMenuItem + // + this.ColecoUseSGMMenuItem.Text = "&Use the Super Game Module"; + this.ColecoUseSGMMenuItem.Click += new System.EventHandler(this.ColecoUseSGMMenuItem_Click); + // + // N64SubMenu + // + this.N64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.N64PluginSettingsMenuItem, this.N64ControllerSettingsMenuItem, this.toolStripSeparator23, this.N64CircularAnalogRangeMenuItem, this.MupenStyleLagMenuItem, this.N64ExpansionSlotMenuItem}); - this.N64SubMenu.Text = "N64"; - this.N64SubMenu.DropDownOpened += new System.EventHandler(this.N64SubMenu_DropDownOpened); - // - // N64PluginSettingsMenuItem - // - this.N64PluginSettingsMenuItem.Text = "Plugins"; - this.N64PluginSettingsMenuItem.Click += new System.EventHandler(this.N64PluginSettingsMenuItem_Click); - // - // N64ControllerSettingsMenuItem - // - this.N64ControllerSettingsMenuItem.Text = "Controller Settings..."; - this.N64ControllerSettingsMenuItem.Click += new System.EventHandler(this.N64ControllerSettingsMenuItem_Click); - // - // N64CircularAnalogRangeMenuItem - // - this.N64CircularAnalogRangeMenuItem.Text = "Circular Analog Range"; - this.N64CircularAnalogRangeMenuItem.Click += new System.EventHandler(this.N64CircularAnalogRangeMenuItem_Click); - // - // MupenStyleLagMenuItem - // - this.MupenStyleLagMenuItem.Text = "&Mupen Style Lag Frames"; - this.MupenStyleLagMenuItem.Click += new System.EventHandler(this.MupenStyleLagMenuItem_Click); - // - // N64ExpansionSlotMenuItem - // - this.N64ExpansionSlotMenuItem.Text = "&Use Expansion Slot"; - this.N64ExpansionSlotMenuItem.Click += new System.EventHandler(this.N64ExpansionSlotMenuItem_Click); - // - // Ares64SubMenu - // - this.Ares64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.N64SubMenu.Text = "N64"; + this.N64SubMenu.DropDownOpened += new System.EventHandler(this.N64SubMenu_DropDownOpened); + // + // N64PluginSettingsMenuItem + // + this.N64PluginSettingsMenuItem.Text = "Plugins"; + this.N64PluginSettingsMenuItem.Click += new System.EventHandler(this.N64PluginSettingsMenuItem_Click); + // + // N64ControllerSettingsMenuItem + // + this.N64ControllerSettingsMenuItem.Text = "Controller Settings..."; + this.N64ControllerSettingsMenuItem.Click += new System.EventHandler(this.N64ControllerSettingsMenuItem_Click); + // + // N64CircularAnalogRangeMenuItem + // + this.N64CircularAnalogRangeMenuItem.Text = "Circular Analog Range"; + this.N64CircularAnalogRangeMenuItem.Click += new System.EventHandler(this.N64CircularAnalogRangeMenuItem_Click); + // + // MupenStyleLagMenuItem + // + this.MupenStyleLagMenuItem.Text = "&Mupen Style Lag Frames"; + this.MupenStyleLagMenuItem.Click += new System.EventHandler(this.MupenStyleLagMenuItem_Click); + // + // N64ExpansionSlotMenuItem + // + this.N64ExpansionSlotMenuItem.Text = "&Use Expansion Slot"; + this.N64ExpansionSlotMenuItem.Click += new System.EventHandler(this.N64ExpansionSlotMenuItem_Click); + // + // Ares64SubMenu + // + this.Ares64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.Ares64SettingsMenuItem, this.Ares64CircularAnalogRangeMenuItem}); - this.Ares64SubMenu.Text = "N64"; - this.Ares64SubMenu.DropDownOpened += new System.EventHandler(this.Ares64SubMenu_DropDownOpened); - // - // Ares64SettingsMenuItem - // - this.Ares64SettingsMenuItem.Text = "Settings..."; - this.Ares64SettingsMenuItem.Click += new System.EventHandler(this.Ares64SettingsMenuItem_Click); - // - // Ares64CircularAnalogRangeMenuItem - // - this.Ares64CircularAnalogRangeMenuItem.Text = "Circular Analog Range"; - this.Ares64CircularAnalogRangeMenuItem.Click += new System.EventHandler(this.N64CircularAnalogRangeMenuItem_Click); - // - // GBLSubMenu - // - this.GBLSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.Ares64SubMenu.Text = "N64"; + this.Ares64SubMenu.DropDownOpened += new System.EventHandler(this.Ares64SubMenu_DropDownOpened); + // + // Ares64SettingsMenuItem + // + this.Ares64SettingsMenuItem.Text = "Settings..."; + this.Ares64SettingsMenuItem.Click += new System.EventHandler(this.Ares64SettingsMenuItem_Click); + // + // Ares64CircularAnalogRangeMenuItem + // + this.Ares64CircularAnalogRangeMenuItem.Text = "Circular Analog Range"; + this.Ares64CircularAnalogRangeMenuItem.Click += new System.EventHandler(this.N64CircularAnalogRangeMenuItem_Click); + // + // GBLSubMenu + // + this.GBLSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.GBLsettingsToolStripMenuItem}); - this.GBLSubMenu.Text = "&GB Link"; - // - // GBLsettingsToolStripMenuItem - // - this.GBLsettingsToolStripMenuItem.Text = "Settings..."; - this.GBLsettingsToolStripMenuItem.Click += new System.EventHandler(this.GblSettingsMenuItem_Click); - // - // AppleSubMenu - // - this.AppleSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.GBLSubMenu.Text = "&GB Link"; + // + // GBLsettingsToolStripMenuItem + // + this.GBLsettingsToolStripMenuItem.Text = "Settings..."; + this.GBLsettingsToolStripMenuItem.Click += new System.EventHandler(this.GblSettingsMenuItem_Click); + // + // AppleSubMenu + // + this.AppleSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AppleDisksSubMenu, this.settingsToolStripMenuItem1}); - this.AppleSubMenu.Text = "Apple"; - this.AppleSubMenu.DropDownOpened += new System.EventHandler(this.AppleSubMenu_DropDownOpened); - // - // AppleDisksSubMenu - // - this.AppleDisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AppleSubMenu.Text = "Apple"; + this.AppleSubMenu.DropDownOpened += new System.EventHandler(this.AppleSubMenu_DropDownOpened); + // + // AppleDisksSubMenu + // + this.AppleDisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator31}); - this.AppleDisksSubMenu.Text = "Disks"; - this.AppleDisksSubMenu.DropDownOpened += new System.EventHandler(this.AppleDisksSubMenu_DropDownOpened); - // - // settingsToolStripMenuItem1 - // - this.settingsToolStripMenuItem1.Text = "&Settings..."; - this.settingsToolStripMenuItem1.Click += new System.EventHandler(this.AppleIISettingsMenuItem_Click); - // - // C64SubMenu - // - this.C64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AppleDisksSubMenu.Text = "Disks"; + this.AppleDisksSubMenu.DropDownOpened += new System.EventHandler(this.AppleDisksSubMenu_DropDownOpened); + // + // settingsToolStripMenuItem1 + // + this.settingsToolStripMenuItem1.Text = "&Settings..."; + this.settingsToolStripMenuItem1.Click += new System.EventHandler(this.AppleIISettingsMenuItem_Click); + // + // C64SubMenu + // + this.C64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.C64DisksSubMenu, this.C64SettingsMenuItem}); - this.C64SubMenu.Text = "&C64"; - this.C64SubMenu.DropDownOpened += new System.EventHandler(this.C64SubMenu_DropDownOpened); - // - // C64DisksSubMenu - // - this.C64DisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.C64SubMenu.Text = "&C64"; + this.C64SubMenu.DropDownOpened += new System.EventHandler(this.C64SubMenu_DropDownOpened); + // + // C64DisksSubMenu + // + this.C64DisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator36}); - this.C64DisksSubMenu.Text = "Disks"; - this.C64DisksSubMenu.DropDownOpened += new System.EventHandler(this.C64DisksSubMenu_DropDownOpened); - // - // C64SettingsMenuItem - // - this.C64SettingsMenuItem.Text = "&Settings..."; - this.C64SettingsMenuItem.Click += new System.EventHandler(this.C64SettingsMenuItem_Click); - // - // IntvSubMenu - // - this.IntvSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.C64DisksSubMenu.Text = "Disks"; + this.C64DisksSubMenu.DropDownOpened += new System.EventHandler(this.C64DisksSubMenu_DropDownOpened); + // + // C64SettingsMenuItem + // + this.C64SettingsMenuItem.Text = "&Settings..."; + this.C64SettingsMenuItem.Click += new System.EventHandler(this.C64SettingsMenuItem_Click); + // + // IntvSubMenu + // + this.IntvSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.IntVControllerSettingsMenuItem}); - this.IntvSubMenu.Text = "&Intv"; - this.IntvSubMenu.DropDownOpened += new System.EventHandler(this.IntVSubMenu_DropDownOpened); - // - // IntVControllerSettingsMenuItem - // - this.IntVControllerSettingsMenuItem.Text = "Controller Settings..."; - this.IntVControllerSettingsMenuItem.Click += new System.EventHandler(this.IntVControllerSettingsMenuItem_Click); - // - // zXSpectrumToolStripMenuItem - // - this.zXSpectrumToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.IntvSubMenu.Text = "&Intv"; + this.IntvSubMenu.DropDownOpened += new System.EventHandler(this.IntVSubMenu_DropDownOpened); + // + // IntVControllerSettingsMenuItem + // + this.IntVControllerSettingsMenuItem.Text = "Controller Settings..."; + this.IntVControllerSettingsMenuItem.Click += new System.EventHandler(this.IntVControllerSettingsMenuItem_Click); + // + // zXSpectrumToolStripMenuItem + // + this.zXSpectrumToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ZXSpectrumCoreEmulationSettingsMenuItem, this.ZXSpectrumControllerConfigurationMenuItem, this.ZXSpectrumAudioSettingsMenuItem, this.ZXSpectrumNonSyncSettingsMenuItem, this.ZXSpectrumMediaMenuItem}); - this.zXSpectrumToolStripMenuItem.Text = "ZX Spectrum"; - // - // ZXSpectrumCoreEmulationSettingsMenuItem - // - this.ZXSpectrumCoreEmulationSettingsMenuItem.Text = "Core Emulation Settings"; - this.ZXSpectrumCoreEmulationSettingsMenuItem.Click += new System.EventHandler(this.ZXSpectrumCoreEmulationSettingsMenuItem_Click); - // - // ZXSpectrumControllerConfigurationMenuItem - // - this.ZXSpectrumControllerConfigurationMenuItem.Text = "Joystick Configuration"; - this.ZXSpectrumControllerConfigurationMenuItem.Click += new System.EventHandler(this.ZXSpectrumControllerConfigurationMenuItem_Click); - // - // ZXSpectrumAudioSettingsMenuItem - // - this.ZXSpectrumAudioSettingsMenuItem.Text = "Audio Settings"; - this.ZXSpectrumAudioSettingsMenuItem.Click += new System.EventHandler(this.ZXSpectrumAudioSettingsMenuItem_Click); - // - // ZXSpectrumNonSyncSettingsMenuItem - // - this.ZXSpectrumNonSyncSettingsMenuItem.Text = "Non-Sync Settings"; - this.ZXSpectrumNonSyncSettingsMenuItem.Click += new System.EventHandler(this.ZXSpectrumNonSyncSettingsMenuItem_Click); - // - // ZXSpectrumMediaMenuItem - // - this.ZXSpectrumMediaMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.zXSpectrumToolStripMenuItem.Text = "ZX Spectrum"; + // + // ZXSpectrumCoreEmulationSettingsMenuItem + // + this.ZXSpectrumCoreEmulationSettingsMenuItem.Text = "Core Emulation Settings"; + this.ZXSpectrumCoreEmulationSettingsMenuItem.Click += new System.EventHandler(this.ZXSpectrumCoreEmulationSettingsMenuItem_Click); + // + // ZXSpectrumControllerConfigurationMenuItem + // + this.ZXSpectrumControllerConfigurationMenuItem.Text = "Joystick Configuration"; + this.ZXSpectrumControllerConfigurationMenuItem.Click += new System.EventHandler(this.ZXSpectrumControllerConfigurationMenuItem_Click); + // + // ZXSpectrumAudioSettingsMenuItem + // + this.ZXSpectrumAudioSettingsMenuItem.Text = "Audio Settings"; + this.ZXSpectrumAudioSettingsMenuItem.Click += new System.EventHandler(this.ZXSpectrumAudioSettingsMenuItem_Click); + // + // ZXSpectrumNonSyncSettingsMenuItem + // + this.ZXSpectrumNonSyncSettingsMenuItem.Text = "Non-Sync Settings"; + this.ZXSpectrumNonSyncSettingsMenuItem.Click += new System.EventHandler(this.ZXSpectrumNonSyncSettingsMenuItem_Click); + // + // ZXSpectrumMediaMenuItem + // + this.ZXSpectrumMediaMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ZXSpectrumTapesSubMenu, this.ZXSpectrumDisksSubMenu, this.ZXSpectrumExportSnapshotMenuItemMenuItem}); - this.ZXSpectrumMediaMenuItem.Text = "Media"; - this.ZXSpectrumMediaMenuItem.DropDownOpened += new System.EventHandler(this.ZXSpectrumMediaMenuItem_DropDownOpened); - // - // ZXSpectrumTapesSubMenu - // - this.ZXSpectrumTapesSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ZXSpectrumMediaMenuItem.Text = "Media"; + this.ZXSpectrumMediaMenuItem.DropDownOpened += new System.EventHandler(this.ZXSpectrumMediaMenuItem_DropDownOpened); + // + // ZXSpectrumTapesSubMenu + // + this.ZXSpectrumTapesSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.zxt1ToolStripMenuItem}); - this.ZXSpectrumTapesSubMenu.Text = "Tapes"; - this.ZXSpectrumTapesSubMenu.DropDownOpened += new System.EventHandler(this.ZXSpectrumTapesSubMenu_DropDownOpened); - // - // zxt1ToolStripMenuItem - // - this.zxt1ToolStripMenuItem.Text = "zxt1"; - // - // ZXSpectrumDisksSubMenu - // - this.ZXSpectrumDisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ZXSpectrumTapesSubMenu.Text = "Tapes"; + this.ZXSpectrumTapesSubMenu.DropDownOpened += new System.EventHandler(this.ZXSpectrumTapesSubMenu_DropDownOpened); + // + // zxt1ToolStripMenuItem + // + this.zxt1ToolStripMenuItem.Text = "zxt1"; + // + // ZXSpectrumDisksSubMenu + // + this.ZXSpectrumDisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.zxt2ToolStripMenuItem}); - this.ZXSpectrumDisksSubMenu.Text = "Disks"; - this.ZXSpectrumDisksSubMenu.DropDownOpened += new System.EventHandler(this.ZXSpectrumDisksSubMenu_DropDownOpened); - // - // zxt2ToolStripMenuItem - // - this.zxt2ToolStripMenuItem.Text = "zxt2"; - // - // ZXSpectrumExportSnapshotMenuItemMenuItem - // - this.ZXSpectrumExportSnapshotMenuItemMenuItem.Text = "Export Snapshot"; - this.ZXSpectrumExportSnapshotMenuItemMenuItem.Click += new System.EventHandler(this.ZXSpectrumExportSnapshotMenuItemMenuItem_Click); - // - // GenericCoreSubMenu - // - this.GenericCoreSubMenu.Text = "&Core"; - // - // amstradCPCToolStripMenuItem - // - this.amstradCPCToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ZXSpectrumDisksSubMenu.Text = "Disks"; + this.ZXSpectrumDisksSubMenu.DropDownOpened += new System.EventHandler(this.ZXSpectrumDisksSubMenu_DropDownOpened); + // + // zxt2ToolStripMenuItem + // + this.zxt2ToolStripMenuItem.Text = "zxt2"; + // + // ZXSpectrumExportSnapshotMenuItemMenuItem + // + this.ZXSpectrumExportSnapshotMenuItemMenuItem.Text = "Export Snapshot"; + this.ZXSpectrumExportSnapshotMenuItemMenuItem.Click += new System.EventHandler(this.ZXSpectrumExportSnapshotMenuItemMenuItem_Click); + // + // GenericCoreSubMenu + // + this.GenericCoreSubMenu.Text = "&Core"; + // + // amstradCPCToolStripMenuItem + // + this.amstradCPCToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.amstradCPCCoreEmulationSettingsToolStripMenuItem, this.AmstradCPCAudioSettingsToolStripMenuItem, this.AmstradCPCNonSyncSettingsToolStripMenuItem, this.AmstradCPCMediaToolStripMenuItem}); - this.amstradCPCToolStripMenuItem.Text = "Amstrad CPC"; - // - // amstradCPCCoreEmulationSettingsToolStripMenuItem - // - this.amstradCPCCoreEmulationSettingsToolStripMenuItem.Text = "Core Emulation Settings"; - this.amstradCPCCoreEmulationSettingsToolStripMenuItem.Click += new System.EventHandler(this.AmstradCpcCoreEmulationSettingsMenuItem_Click); - // - // AmstradCPCAudioSettingsToolStripMenuItem - // - this.AmstradCPCAudioSettingsToolStripMenuItem.Text = "Audio Settings"; - this.AmstradCPCAudioSettingsToolStripMenuItem.Click += new System.EventHandler(this.AmstradCpcAudioSettingsMenuItem_Click); - // - // AmstradCPCNonSyncSettingsToolStripMenuItem - // - this.AmstradCPCNonSyncSettingsToolStripMenuItem.Text = "Non-Sync Settings"; - this.AmstradCPCNonSyncSettingsToolStripMenuItem.Click += new System.EventHandler(this.AmstradCpcNonSyncSettingsMenuItem_Click); - // - // AmstradCPCMediaToolStripMenuItem - // - this.AmstradCPCMediaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.amstradCPCToolStripMenuItem.Text = "Amstrad CPC"; + // + // amstradCPCCoreEmulationSettingsToolStripMenuItem + // + this.amstradCPCCoreEmulationSettingsToolStripMenuItem.Text = "Core Emulation Settings"; + this.amstradCPCCoreEmulationSettingsToolStripMenuItem.Click += new System.EventHandler(this.AmstradCpcCoreEmulationSettingsMenuItem_Click); + // + // AmstradCPCAudioSettingsToolStripMenuItem + // + this.AmstradCPCAudioSettingsToolStripMenuItem.Text = "Audio Settings"; + this.AmstradCPCAudioSettingsToolStripMenuItem.Click += new System.EventHandler(this.AmstradCpcAudioSettingsMenuItem_Click); + // + // AmstradCPCNonSyncSettingsToolStripMenuItem + // + this.AmstradCPCNonSyncSettingsToolStripMenuItem.Text = "Non-Sync Settings"; + this.AmstradCPCNonSyncSettingsToolStripMenuItem.Click += new System.EventHandler(this.AmstradCpcNonSyncSettingsMenuItem_Click); + // + // AmstradCPCMediaToolStripMenuItem + // + this.AmstradCPCMediaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AmstradCPCTapesSubMenu, this.AmstradCPCDisksSubMenu}); - this.AmstradCPCMediaToolStripMenuItem.Text = "Media"; - this.AmstradCPCMediaToolStripMenuItem.DropDownOpened += new System.EventHandler(this.AmstradCpcMediaMenuItem_DropDownOpened); - // - // AmstradCPCTapesSubMenu - // - this.AmstradCPCTapesSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AmstradCPCMediaToolStripMenuItem.Text = "Media"; + this.AmstradCPCMediaToolStripMenuItem.DropDownOpened += new System.EventHandler(this.AmstradCpcMediaMenuItem_DropDownOpened); + // + // AmstradCPCTapesSubMenu + // + this.AmstradCPCTapesSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cpct1ToolStripMenuItem}); - this.AmstradCPCTapesSubMenu.Text = "Tapes"; - this.AmstradCPCTapesSubMenu.DropDownOpened += new System.EventHandler(this.AmstradCpcTapesSubMenu_DropDownOpened); - // - // cpct1ToolStripMenuItem - // - this.cpct1ToolStripMenuItem.Text = "cpct1"; - // - // AmstradCPCDisksSubMenu - // - this.AmstradCPCDisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AmstradCPCTapesSubMenu.Text = "Tapes"; + this.AmstradCPCTapesSubMenu.DropDownOpened += new System.EventHandler(this.AmstradCpcTapesSubMenu_DropDownOpened); + // + // cpct1ToolStripMenuItem + // + this.cpct1ToolStripMenuItem.Text = "cpct1"; + // + // AmstradCPCDisksSubMenu + // + this.AmstradCPCDisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cpcd1ToolStripMenuItem}); - this.AmstradCPCDisksSubMenu.Text = "Disks"; - this.AmstradCPCDisksSubMenu.DropDownOpened += new System.EventHandler(this.AmstradCpcDisksSubMenu_DropDownOpened); - // - // cpcd1ToolStripMenuItem - // - this.cpcd1ToolStripMenuItem.Text = "cpcd1"; - // - // HelpSubMenu - // - this.HelpSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AmstradCPCDisksSubMenu.Text = "Disks"; + this.AmstradCPCDisksSubMenu.DropDownOpened += new System.EventHandler(this.AmstradCpcDisksSubMenu_DropDownOpened); + // + // cpcd1ToolStripMenuItem + // + this.cpcd1ToolStripMenuItem.Text = "cpcd1"; + // + // HelpSubMenu + // + this.HelpSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.OnlineHelpMenuItem, this.ForumsMenuItem, this.FeaturesMenuItem, this.AboutMenuItem}); - this.HelpSubMenu.Text = "&Help"; - this.HelpSubMenu.DropDownOpened += new System.EventHandler(this.HelpSubMenu_DropDownOpened); - // - // OnlineHelpMenuItem - // - this.OnlineHelpMenuItem.Text = "Open TASVideos Wiki in Browser"; - this.OnlineHelpMenuItem.Click += new System.EventHandler(this.OnlineHelpMenuItem_Click); - // - // ForumsMenuItem - // - this.ForumsMenuItem.Text = "Open Forums in Browser"; - this.ForumsMenuItem.Click += new System.EventHandler(this.ForumsMenuItem_Click); - // - // FeaturesMenuItem - // - this.FeaturesMenuItem.Text = "&Features"; - this.FeaturesMenuItem.Click += new System.EventHandler(this.FeaturesMenuItem_Click); - // - // AboutMenuItem - // - this.AboutMenuItem.Text = "&About..."; - this.AboutMenuItem.Click += new System.EventHandler(this.AboutMenuItem_Click); - // - // A7800HawkCoreMenuItem - // - this.A7800HawkCoreMenuItem.Text = "A7800Hawk"; - // - // MainStatusBar - // - this.MainStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.HelpSubMenu.Text = "&Help"; + this.HelpSubMenu.DropDownOpened += new System.EventHandler(this.HelpSubMenu_DropDownOpened); + // + // OnlineHelpMenuItem + // + this.OnlineHelpMenuItem.Text = "Open TASVideos Wiki in Browser"; + this.OnlineHelpMenuItem.Click += new System.EventHandler(this.OnlineHelpMenuItem_Click); + // + // ForumsMenuItem + // + this.ForumsMenuItem.Text = "Open Forums in Browser"; + this.ForumsMenuItem.Click += new System.EventHandler(this.ForumsMenuItem_Click); + // + // FeaturesMenuItem + // + this.FeaturesMenuItem.Text = "&Features"; + this.FeaturesMenuItem.Click += new System.EventHandler(this.FeaturesMenuItem_Click); + // + // AboutMenuItem + // + this.AboutMenuItem.Text = "&About..."; + this.AboutMenuItem.Click += new System.EventHandler(this.AboutMenuItem_Click); + // + // A7800HawkCoreMenuItem + // + this.A7800HawkCoreMenuItem.Text = "A7800Hawk"; + // + // MainStatusBar + // + this.MainStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.DumpStatusButton, this.EmuStatus, this.PlayRecordStatusButton, @@ -2008,167 +2022,167 @@ private void InitializeComponent() this.ProfileFirstBootLabel, this.LinkConnectStatusBarButton, this.UpdateNotification}); - this.MainStatusBar.Location = new System.Drawing.Point(0, 386); - this.MainStatusBar.Name = "MainStatusBar"; - this.MainStatusBar.ShowItemToolTips = true; - this.MainStatusBar.SizingGrip = false; - this.MainStatusBar.TabIndex = 1; - // - // DumpStatusButton - // - this.DumpStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.DumpStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; - this.DumpStatusButton.Name = "DumpStatusButton"; - this.DumpStatusButton.ShowDropDownArrow = false; - this.DumpStatusButton.Size = new System.Drawing.Size(4, 20); - this.DumpStatusButton.Text = "No ROM loaded"; - this.DumpStatusButton.Click += new System.EventHandler(this.DumpStatusButton_Click); - // - // PlayRecordStatusButton - // - this.PlayRecordStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.PlayRecordStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; - this.PlayRecordStatusButton.Name = "PlayRecordStatusButton"; - this.PlayRecordStatusButton.ShowDropDownArrow = false; - this.PlayRecordStatusButton.Size = new System.Drawing.Size(4, 20); - this.PlayRecordStatusButton.Text = "No movie is active"; - // - // PauseStatusButton - // - this.PauseStatusButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; - this.PauseStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.PauseStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; - this.PauseStatusButton.Name = "PauseStatusButton"; - this.PauseStatusButton.ShowDropDownArrow = false; - this.PauseStatusButton.Size = new System.Drawing.Size(4, 20); - this.PauseStatusButton.Text = "toolStripDropDownButton1"; - this.PauseStatusButton.ToolTipText = "Emulator is paused"; - this.PauseStatusButton.Click += new System.EventHandler(this.PauseMenuItem_Click); - // - // RebootStatusBarIcon - // - this.RebootStatusBarIcon.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.RebootStatusBarIcon.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.RebootStatusBarIcon.Text = "Reboot"; - this.RebootStatusBarIcon.ToolTipText = "A reboot of the core is needed for a setting change to take effect"; - this.RebootStatusBarIcon.Click += new System.EventHandler(this.PowerMenuItem_Click); - // - // AVStatusLabel - // - this.AVStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.AVStatusLabel.Text = "A/V Capture"; - // - // LedLightStatusLabel - // - this.LedLightStatusLabel.ToolTipText = "Disk Drive LED Light"; - // - // SaveSlotsStatusLabel - // - this.SaveSlotsStatusLabel.BackColor = System.Drawing.SystemColors.Control; - this.SaveSlotsStatusLabel.Text = "Save slots"; - // - // Slot1StatusButton - // - this.Slot1StatusButton.Text = "1"; - this.Slot1StatusButton.ToolTipText = "Save slot 1"; - this.Slot1StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot2StatusButton - // - this.Slot2StatusButton.Text = "2"; - this.Slot2StatusButton.ToolTipText = "Save slot 2"; - this.Slot2StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot3StatusButton - // - this.Slot3StatusButton.Text = "3"; - this.Slot3StatusButton.ToolTipText = "Save slot 3"; - this.Slot3StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot4StatusButton - // - this.Slot4StatusButton.Text = "4"; - this.Slot4StatusButton.ToolTipText = "Save slot 4"; - this.Slot4StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot5StatusButton - // - this.Slot5StatusButton.Text = "5"; - this.Slot5StatusButton.ToolTipText = "Save slot 5"; - this.Slot5StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot6StatusButton - // - this.Slot6StatusButton.Text = "6"; - this.Slot6StatusButton.ToolTipText = "Save slot 6"; - this.Slot6StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot7StatusButton - // - this.Slot7StatusButton.Text = "7"; - this.Slot7StatusButton.ToolTipText = "Save slot 7"; - this.Slot7StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot8StatusButton - // - this.Slot8StatusButton.Text = "8"; - this.Slot8StatusButton.ToolTipText = "Save slot 8"; - this.Slot8StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot9StatusButton - // - this.Slot9StatusButton.Text = "9"; - this.Slot9StatusButton.ToolTipText = "Save slot 9"; - this.Slot9StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot0StatusButton - // - this.Slot0StatusButton.Text = "0"; - this.Slot0StatusButton.ToolTipText = "Save slot 10"; - this.Slot0StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // CheatStatusButton - // - this.CheatStatusButton.Click += new System.EventHandler(this.FreezeStatus_Click); - // - // KeyPriorityStatusLabel - // - this.KeyPriorityStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.KeyPriorityStatusLabel.Margin = new System.Windows.Forms.Padding(5, 3, 5, 0); - this.KeyPriorityStatusLabel.Text = "KeyPriority"; - this.KeyPriorityStatusLabel.Click += new System.EventHandler(this.KeyPriorityStatusLabel_Click); - // - // CoreNameStatusBarButton - // - this.CoreNameStatusBarButton.Text = ""; - // - // ProfileFirstBootLabel - // - this.ProfileFirstBootLabel.AutoToolTip = true; - this.ProfileFirstBootLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.ProfileFirstBootLabel.Text = "ProfileFirstBootLabel"; - this.ProfileFirstBootLabel.ToolTipText = "Open the setup/onboarding wizard"; - this.ProfileFirstBootLabel.Visible = false; - this.ProfileFirstBootLabel.Click += new System.EventHandler(this.ProfileFirstBootLabel_Click); - // - // LinkConnectStatusBarButton - // - this.LinkConnectStatusBarButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.LinkConnectStatusBarButton.Text = "Link connection is currently enabled"; - this.LinkConnectStatusBarButton.ToolTipText = "Link connection is currently enabled"; - this.LinkConnectStatusBarButton.Click += new System.EventHandler(this.LinkConnectStatusBarButton_Click); - // - // UpdateNotification - // - this.UpdateNotification.IsLink = true; - this.UpdateNotification.Spring = true; - this.UpdateNotification.Text = "New version available!"; - this.UpdateNotification.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - this.UpdateNotification.Click += new System.EventHandler(this.UpdateNotification_Click); - // - // MainFormContextMenu - // - this.MainFormContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MainStatusBar.Location = new System.Drawing.Point(0, 386); + this.MainStatusBar.Name = "MainStatusBar"; + this.MainStatusBar.ShowItemToolTips = true; + this.MainStatusBar.SizingGrip = false; + this.MainStatusBar.TabIndex = 1; + // + // DumpStatusButton + // + this.DumpStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.DumpStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; + this.DumpStatusButton.Name = "DumpStatusButton"; + this.DumpStatusButton.ShowDropDownArrow = false; + this.DumpStatusButton.Size = new System.Drawing.Size(4, 20); + this.DumpStatusButton.Text = "No ROM loaded"; + this.DumpStatusButton.Click += new System.EventHandler(this.DumpStatusButton_Click); + // + // PlayRecordStatusButton + // + this.PlayRecordStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.PlayRecordStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; + this.PlayRecordStatusButton.Name = "PlayRecordStatusButton"; + this.PlayRecordStatusButton.ShowDropDownArrow = false; + this.PlayRecordStatusButton.Size = new System.Drawing.Size(4, 20); + this.PlayRecordStatusButton.Text = "No movie is active"; + // + // PauseStatusButton + // + this.PauseStatusButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; + this.PauseStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.PauseStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; + this.PauseStatusButton.Name = "PauseStatusButton"; + this.PauseStatusButton.ShowDropDownArrow = false; + this.PauseStatusButton.Size = new System.Drawing.Size(4, 20); + this.PauseStatusButton.Text = "toolStripDropDownButton1"; + this.PauseStatusButton.ToolTipText = "Emulator is paused"; + this.PauseStatusButton.Click += new System.EventHandler(this.PauseMenuItem_Click); + // + // RebootStatusBarIcon + // + this.RebootStatusBarIcon.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.RebootStatusBarIcon.RightToLeft = System.Windows.Forms.RightToLeft.No; + this.RebootStatusBarIcon.Text = "Reboot"; + this.RebootStatusBarIcon.ToolTipText = "A reboot of the core is needed for a setting change to take effect"; + this.RebootStatusBarIcon.Click += new System.EventHandler(this.PowerMenuItem_Click); + // + // AVStatusLabel + // + this.AVStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.AVStatusLabel.Text = "A/V Capture"; + // + // LedLightStatusLabel + // + this.LedLightStatusLabel.ToolTipText = "Disk Drive LED Light"; + // + // SaveSlotsStatusLabel + // + this.SaveSlotsStatusLabel.BackColor = System.Drawing.SystemColors.Control; + this.SaveSlotsStatusLabel.Text = "Save slots"; + // + // Slot1StatusButton + // + this.Slot1StatusButton.Text = "1"; + this.Slot1StatusButton.ToolTipText = "Save slot 1"; + this.Slot1StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot2StatusButton + // + this.Slot2StatusButton.Text = "2"; + this.Slot2StatusButton.ToolTipText = "Save slot 2"; + this.Slot2StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot3StatusButton + // + this.Slot3StatusButton.Text = "3"; + this.Slot3StatusButton.ToolTipText = "Save slot 3"; + this.Slot3StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot4StatusButton + // + this.Slot4StatusButton.Text = "4"; + this.Slot4StatusButton.ToolTipText = "Save slot 4"; + this.Slot4StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot5StatusButton + // + this.Slot5StatusButton.Text = "5"; + this.Slot5StatusButton.ToolTipText = "Save slot 5"; + this.Slot5StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot6StatusButton + // + this.Slot6StatusButton.Text = "6"; + this.Slot6StatusButton.ToolTipText = "Save slot 6"; + this.Slot6StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot7StatusButton + // + this.Slot7StatusButton.Text = "7"; + this.Slot7StatusButton.ToolTipText = "Save slot 7"; + this.Slot7StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot8StatusButton + // + this.Slot8StatusButton.Text = "8"; + this.Slot8StatusButton.ToolTipText = "Save slot 8"; + this.Slot8StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot9StatusButton + // + this.Slot9StatusButton.Text = "9"; + this.Slot9StatusButton.ToolTipText = "Save slot 9"; + this.Slot9StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot0StatusButton + // + this.Slot0StatusButton.Text = "0"; + this.Slot0StatusButton.ToolTipText = "Save slot 10"; + this.Slot0StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // CheatStatusButton + // + this.CheatStatusButton.Click += new System.EventHandler(this.FreezeStatus_Click); + // + // KeyPriorityStatusLabel + // + this.KeyPriorityStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.KeyPriorityStatusLabel.Margin = new System.Windows.Forms.Padding(5, 3, 5, 0); + this.KeyPriorityStatusLabel.Text = "KeyPriority"; + this.KeyPriorityStatusLabel.Click += new System.EventHandler(this.KeyPriorityStatusLabel_Click); + // + // CoreNameStatusBarButton + // + this.CoreNameStatusBarButton.Text = ""; + // + // ProfileFirstBootLabel + // + this.ProfileFirstBootLabel.AutoToolTip = true; + this.ProfileFirstBootLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.ProfileFirstBootLabel.Text = "ProfileFirstBootLabel"; + this.ProfileFirstBootLabel.ToolTipText = "Open the setup/onboarding wizard"; + this.ProfileFirstBootLabel.Visible = false; + this.ProfileFirstBootLabel.Click += new System.EventHandler(this.ProfileFirstBootLabel_Click); + // + // LinkConnectStatusBarButton + // + this.LinkConnectStatusBarButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.LinkConnectStatusBarButton.Text = "Link connection is currently enabled"; + this.LinkConnectStatusBarButton.ToolTipText = "Link connection is currently enabled"; + this.LinkConnectStatusBarButton.Click += new System.EventHandler(this.LinkConnectStatusBarButton_Click); + // + // UpdateNotification + // + this.UpdateNotification.IsLink = true; + this.UpdateNotification.Spring = true; + this.UpdateNotification.Text = "New version available!"; + this.UpdateNotification.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.UpdateNotification.Click += new System.EventHandler(this.UpdateNotification_Click); + // + // MainFormContextMenu + // + this.MainFormContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.OpenRomContextMenuItem, this.LoadLastRomContextMenuItem, this.StopAVContextMenuItem, @@ -2194,94 +2208,94 @@ private void InitializeComponent() this.ClearSRAMContextMenuItem, this.ShowMenuContextMenuSeparator, this.ShowMenuContextMenuItem}); - this.MainFormContextMenu.Name = "contextMenuStrip1"; - this.MainFormContextMenu.Size = new System.Drawing.Size(217, 490); - this.MainFormContextMenu.Closing += new System.Windows.Forms.ToolStripDropDownClosingEventHandler(this.MainFormContextMenu_Closing); - this.MainFormContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.MainFormContextMenu_Opening); - // - // OpenRomContextMenuItem - // - this.OpenRomContextMenuItem.Text = "Open Rom"; - this.OpenRomContextMenuItem.Click += new System.EventHandler(this.OpenRomMenuItem_Click); - // - // LoadLastRomContextMenuItem - // - this.LoadLastRomContextMenuItem.Text = "Load Last ROM"; - this.LoadLastRomContextMenuItem.Click += new System.EventHandler(this.LoadLastRomContextMenuItem_Click); - // - // StopAVContextMenuItem - // - this.StopAVContextMenuItem.Text = "Stop A/V Writer"; - this.StopAVContextMenuItem.Click += new System.EventHandler(this.StopAVMenuItem_Click); - // - // RecordMovieContextMenuItem - // - this.RecordMovieContextMenuItem.Text = "Record Movie"; - this.RecordMovieContextMenuItem.Click += new System.EventHandler(this.RecordMovieMenuItem_Click); - // - // PlayMovieContextMenuItem - // - this.PlayMovieContextMenuItem.Text = "Play Movie"; - this.PlayMovieContextMenuItem.Click += new System.EventHandler(this.PlayMovieMenuItem_Click); - // - // RestartMovieContextMenuItem - // - this.RestartMovieContextMenuItem.Text = "Restart Movie"; - this.RestartMovieContextMenuItem.Click += new System.EventHandler(this.PlayFromBeginningMenuItem_Click); - // - // StopMovieContextMenuItem - // - this.StopMovieContextMenuItem.Text = "Stop Movie"; - this.StopMovieContextMenuItem.Click += new System.EventHandler(this.StopMovieMenuItem_Click); - // - // LoadLastMovieContextMenuItem - // - this.LoadLastMovieContextMenuItem.Text = "Load Last Movie"; - this.LoadLastMovieContextMenuItem.Click += new System.EventHandler(this.LoadLastMovieContextMenuItem_Click); - // - // BackupMovieContextMenuItem - // - this.BackupMovieContextMenuItem.Text = "Backup Movie"; - this.BackupMovieContextMenuItem.Click += new System.EventHandler(this.BackupMovieContextMenuItem_Click); - // - // StopNoSaveContextMenuItem - // - this.StopNoSaveContextMenuItem.Text = "Stop Movie without Saving"; - this.StopNoSaveContextMenuItem.Click += new System.EventHandler(this.StopMovieWithoutSavingMenuItem_Click); - // - // ViewSubtitlesContextMenuItem - // - this.ViewSubtitlesContextMenuItem.Text = "View Subtitles"; - this.ViewSubtitlesContextMenuItem.Click += new System.EventHandler(this.ViewSubtitlesContextMenuItem_Click); - // - // AddSubtitleContextMenuItem - // - this.AddSubtitleContextMenuItem.Text = "Add Subtitle"; - this.AddSubtitleContextMenuItem.Click += new System.EventHandler(this.AddSubtitleContextMenuItem_Click); - // - // ViewCommentsContextMenuItem - // - this.ViewCommentsContextMenuItem.Text = "View Comments"; - this.ViewCommentsContextMenuItem.Click += new System.EventHandler(this.ViewCommentsContextMenuItem_Click); - // - // SaveMovieContextMenuItem - // - this.SaveMovieContextMenuItem.Text = "Save Movie"; - this.SaveMovieContextMenuItem.Click += new System.EventHandler(this.SaveMovieMenuItem_Click); - // - // SaveMovieAsContextMenuItem - // - this.SaveMovieAsContextMenuItem.Text = "Save Movie As..."; - this.SaveMovieAsContextMenuItem.Click += new System.EventHandler(this.SaveMovieAsMenuItem_Click); - // - // UndoSavestateContextMenuItem - // - this.UndoSavestateContextMenuItem.Text = "Undo Savestate"; - this.UndoSavestateContextMenuItem.Click += new System.EventHandler(this.UndoSavestateContextMenuItem_Click); - // - // ConfigContextMenuItem - // - this.ConfigContextMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MainFormContextMenu.Name = "contextMenuStrip1"; + this.MainFormContextMenu.Size = new System.Drawing.Size(217, 490); + this.MainFormContextMenu.Closing += new System.Windows.Forms.ToolStripDropDownClosingEventHandler(this.MainFormContextMenu_Closing); + this.MainFormContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.MainFormContextMenu_Opening); + // + // OpenRomContextMenuItem + // + this.OpenRomContextMenuItem.Text = "Open Rom"; + this.OpenRomContextMenuItem.Click += new System.EventHandler(this.OpenRomMenuItem_Click); + // + // LoadLastRomContextMenuItem + // + this.LoadLastRomContextMenuItem.Text = "Load Last ROM"; + this.LoadLastRomContextMenuItem.Click += new System.EventHandler(this.LoadLastRomContextMenuItem_Click); + // + // StopAVContextMenuItem + // + this.StopAVContextMenuItem.Text = "Stop A/V Writer"; + this.StopAVContextMenuItem.Click += new System.EventHandler(this.StopAVMenuItem_Click); + // + // RecordMovieContextMenuItem + // + this.RecordMovieContextMenuItem.Text = "Record Movie"; + this.RecordMovieContextMenuItem.Click += new System.EventHandler(this.RecordMovieMenuItem_Click); + // + // PlayMovieContextMenuItem + // + this.PlayMovieContextMenuItem.Text = "Play Movie"; + this.PlayMovieContextMenuItem.Click += new System.EventHandler(this.PlayMovieMenuItem_Click); + // + // RestartMovieContextMenuItem + // + this.RestartMovieContextMenuItem.Text = "Restart Movie"; + this.RestartMovieContextMenuItem.Click += new System.EventHandler(this.PlayFromBeginningMenuItem_Click); + // + // StopMovieContextMenuItem + // + this.StopMovieContextMenuItem.Text = "Stop Movie"; + this.StopMovieContextMenuItem.Click += new System.EventHandler(this.StopMovieMenuItem_Click); + // + // LoadLastMovieContextMenuItem + // + this.LoadLastMovieContextMenuItem.Text = "Load Last Movie"; + this.LoadLastMovieContextMenuItem.Click += new System.EventHandler(this.LoadLastMovieContextMenuItem_Click); + // + // BackupMovieContextMenuItem + // + this.BackupMovieContextMenuItem.Text = "Backup Movie"; + this.BackupMovieContextMenuItem.Click += new System.EventHandler(this.BackupMovieContextMenuItem_Click); + // + // StopNoSaveContextMenuItem + // + this.StopNoSaveContextMenuItem.Text = "Stop Movie without Saving"; + this.StopNoSaveContextMenuItem.Click += new System.EventHandler(this.StopMovieWithoutSavingMenuItem_Click); + // + // ViewSubtitlesContextMenuItem + // + this.ViewSubtitlesContextMenuItem.Text = "View Subtitles"; + this.ViewSubtitlesContextMenuItem.Click += new System.EventHandler(this.ViewSubtitlesContextMenuItem_Click); + // + // AddSubtitleContextMenuItem + // + this.AddSubtitleContextMenuItem.Text = "Add Subtitle"; + this.AddSubtitleContextMenuItem.Click += new System.EventHandler(this.AddSubtitleContextMenuItem_Click); + // + // ViewCommentsContextMenuItem + // + this.ViewCommentsContextMenuItem.Text = "View Comments"; + this.ViewCommentsContextMenuItem.Click += new System.EventHandler(this.ViewCommentsContextMenuItem_Click); + // + // SaveMovieContextMenuItem + // + this.SaveMovieContextMenuItem.Text = "Save Movie"; + this.SaveMovieContextMenuItem.Click += new System.EventHandler(this.SaveMovieMenuItem_Click); + // + // SaveMovieAsContextMenuItem + // + this.SaveMovieAsContextMenuItem.Text = "Save Movie As..."; + this.SaveMovieAsContextMenuItem.Click += new System.EventHandler(this.SaveMovieAsMenuItem_Click); + // + // UndoSavestateContextMenuItem + // + this.UndoSavestateContextMenuItem.Text = "Undo Savestate"; + this.UndoSavestateContextMenuItem.Click += new System.EventHandler(this.UndoSavestateContextMenuItem_Click); + // + // ConfigContextMenuItem + // + this.ConfigContextMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripMenuItem6, this.toolStripMenuItem7, this.toolStripMenuItem8, @@ -2296,126 +2310,121 @@ private void InitializeComponent() this.toolStripSeparator30, this.toolStripMenuItem66, this.toolStripMenuItem67}); - this.ConfigContextMenuItem.Text = "Config"; - // - // toolStripMenuItem6 - // - this.toolStripMenuItem6.Text = "&Controllers..."; - this.toolStripMenuItem6.Click += new System.EventHandler(this.ControllersMenuItem_Click); - // - // toolStripMenuItem7 - // - this.toolStripMenuItem7.Text = "&Hotkeys..."; - this.toolStripMenuItem7.Click += new System.EventHandler(this.HotkeysMenuItem_Click); - // - // toolStripMenuItem8 - // - this.toolStripMenuItem8.Text = "Display..."; - this.toolStripMenuItem8.Click += new System.EventHandler(this.DisplayConfigMenuItem_Click); - // - // toolStripMenuItem9 - // - this.toolStripMenuItem9.Text = "&Sound..."; - this.toolStripMenuItem9.Click += new System.EventHandler(this.SoundMenuItem_Click); - // - // toolStripMenuItem10 - // - this.toolStripMenuItem10.Text = "Paths..."; - this.toolStripMenuItem10.Click += new System.EventHandler(this.PathsMenuItem_Click); - // - // toolStripMenuItem11 - // - this.toolStripMenuItem11.Text = "&Firmware..."; - this.toolStripMenuItem11.Click += new System.EventHandler(this.FirmwareMenuItem_Click); - // - // toolStripMenuItem12 - // - this.toolStripMenuItem12.Text = "&Messages..."; - this.toolStripMenuItem12.Click += new System.EventHandler(this.MessagesMenuItem_Click); - // - // toolStripMenuItem13 - // - this.toolStripMenuItem13.Text = "&Autofire..."; - this.toolStripMenuItem13.Click += new System.EventHandler(this.AutofireMenuItem_Click); - // - // toolStripMenuItem14 - // - this.toolStripMenuItem14.Text = "&Rewind..."; - this.toolStripMenuItem14.Click += new System.EventHandler(this.RewindOptionsMenuItem_Click); - // - // toolStripMenuItem15 - // - this.toolStripMenuItem15.Text = "File Extensions..."; - this.toolStripMenuItem15.Click += new System.EventHandler(this.FileExtensionsMenuItem_Click); - // - // customizeToolStripMenuItem - // - this.customizeToolStripMenuItem.Text = "Customize..."; - this.customizeToolStripMenuItem.Click += new System.EventHandler(this.CustomizeMenuItem_Click); - // - // toolStripMenuItem66 - // - this.toolStripMenuItem66.Text = "Save Config"; - this.toolStripMenuItem66.Click += new System.EventHandler(this.SaveConfigMenuItem_Click); - // - // toolStripMenuItem67 - // - this.toolStripMenuItem67.Text = "Load Config"; - this.toolStripMenuItem67.Click += new System.EventHandler(this.LoadConfigMenuItem_Click); - // - // ScreenshotContextMenuItem - // - this.ScreenshotContextMenuItem.Text = "Screenshot"; - this.ScreenshotContextMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click); - // - // CloseRomContextMenuItem - // - this.CloseRomContextMenuItem.Text = "Close ROM"; - this.CloseRomContextMenuItem.Click += new System.EventHandler(this.CloseRomMenuItem_Click); - // - // ClearSRAMContextMenuItem - // - this.ClearSRAMContextMenuItem.Text = "Close and Clear SRAM"; - this.ClearSRAMContextMenuItem.Click += new System.EventHandler(this.ClearSramContextMenuItem_Click); - // - // ShowMenuContextMenuItem - // - this.ShowMenuContextMenuItem.Text = "Show Menu"; - this.ShowMenuContextMenuItem.Click += new System.EventHandler(this.ShowMenuContextMenuItem_Click); - // - // timerMouseIdle - // - this.timerMouseIdle.Enabled = true; - this.timerMouseIdle.Interval = 2000; - this.timerMouseIdle.Tick += new System.EventHandler(this.TimerMouseIdle_Tick); - // - // toolStripSeparator25 - // - this.toolStripSeparator25.Name = "toolStripSeparator25"; - this.toolStripSeparator25.Size = new System.Drawing.Size(228, 6); - // - // MainForm - // - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; - this.ClientSize = new System.Drawing.Size(470, 408); - this.Controls.Add(this.MainStatusBar); - this.Controls.Add(this.MainformMenu); - this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.MainMenuStrip = this.MainformMenu; - this.Name = "MainForm"; - this.Activated += new System.EventHandler(this.MainForm_Activated); - this.Deactivate += new System.EventHandler(this.MainForm_Deactivate); - this.Load += new System.EventHandler(this.MainForm_Load); - this.Shown += new System.EventHandler(this.MainForm_Shown); - this.Enter += new System.EventHandler(this.MainForm_Enter); - this.Resize += new System.EventHandler(this.MainForm_Resize); - this.MainformMenu.ResumeLayout(false); - this.MainformMenu.PerformLayout(); - this.MainStatusBar.ResumeLayout(false); - this.MainStatusBar.PerformLayout(); - this.MainFormContextMenu.ResumeLayout(false); - this.ResumeLayout(false); - this.PerformLayout(); + this.ConfigContextMenuItem.Text = "Config"; + // + // toolStripMenuItem6 + // + this.toolStripMenuItem6.Text = "&Controllers..."; + this.toolStripMenuItem6.Click += new System.EventHandler(this.ControllersMenuItem_Click); + // + // toolStripMenuItem7 + // + this.toolStripMenuItem7.Text = "&Hotkeys..."; + this.toolStripMenuItem7.Click += new System.EventHandler(this.HotkeysMenuItem_Click); + // + // toolStripMenuItem8 + // + this.toolStripMenuItem8.Text = "Display..."; + this.toolStripMenuItem8.Click += new System.EventHandler(this.DisplayConfigMenuItem_Click); + // + // toolStripMenuItem9 + // + this.toolStripMenuItem9.Text = "&Sound..."; + this.toolStripMenuItem9.Click += new System.EventHandler(this.SoundMenuItem_Click); + // + // toolStripMenuItem10 + // + this.toolStripMenuItem10.Text = "Paths..."; + this.toolStripMenuItem10.Click += new System.EventHandler(this.PathsMenuItem_Click); + // + // toolStripMenuItem11 + // + this.toolStripMenuItem11.Text = "&Firmware..."; + this.toolStripMenuItem11.Click += new System.EventHandler(this.FirmwareMenuItem_Click); + // + // toolStripMenuItem12 + // + this.toolStripMenuItem12.Text = "&Messages..."; + this.toolStripMenuItem12.Click += new System.EventHandler(this.MessagesMenuItem_Click); + // + // toolStripMenuItem13 + // + this.toolStripMenuItem13.Text = "&Autofire..."; + this.toolStripMenuItem13.Click += new System.EventHandler(this.AutofireMenuItem_Click); + // + // toolStripMenuItem14 + // + this.toolStripMenuItem14.Text = "&Rewind..."; + this.toolStripMenuItem14.Click += new System.EventHandler(this.RewindOptionsMenuItem_Click); + // + // toolStripMenuItem15 + // + this.toolStripMenuItem15.Text = "File Extensions..."; + this.toolStripMenuItem15.Click += new System.EventHandler(this.FileExtensionsMenuItem_Click); + // + // customizeToolStripMenuItem + // + this.customizeToolStripMenuItem.Text = "Customize..."; + this.customizeToolStripMenuItem.Click += new System.EventHandler(this.CustomizeMenuItem_Click); + // + // toolStripMenuItem66 + // + this.toolStripMenuItem66.Text = "Save Config"; + this.toolStripMenuItem66.Click += new System.EventHandler(this.SaveConfigMenuItem_Click); + // + // toolStripMenuItem67 + // + this.toolStripMenuItem67.Text = "Load Config"; + this.toolStripMenuItem67.Click += new System.EventHandler(this.LoadConfigMenuItem_Click); + // + // ScreenshotContextMenuItem + // + this.ScreenshotContextMenuItem.Text = "Screenshot"; + this.ScreenshotContextMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click); + // + // CloseRomContextMenuItem + // + this.CloseRomContextMenuItem.Text = "Close ROM"; + this.CloseRomContextMenuItem.Click += new System.EventHandler(this.CloseRomMenuItem_Click); + // + // ClearSRAMContextMenuItem + // + this.ClearSRAMContextMenuItem.Text = "Close and Clear SRAM"; + this.ClearSRAMContextMenuItem.Click += new System.EventHandler(this.ClearSramContextMenuItem_Click); + // + // ShowMenuContextMenuItem + // + this.ShowMenuContextMenuItem.Text = "Show Menu"; + this.ShowMenuContextMenuItem.Click += new System.EventHandler(this.ShowMenuContextMenuItem_Click); + // + // timerMouseIdle + // + this.timerMouseIdle.Enabled = true; + this.timerMouseIdle.Interval = 2000; + this.timerMouseIdle.Tick += new System.EventHandler(this.TimerMouseIdle_Tick); + // + // MainForm + // + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; + this.ClientSize = new System.Drawing.Size(470, 408); + this.Controls.Add(this.MainStatusBar); + this.Controls.Add(this.MainformMenu); + this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.MainMenuStrip = this.MainformMenu; + this.Name = "MainForm"; + this.Activated += new System.EventHandler(this.MainForm_Activated); + this.Deactivate += new System.EventHandler(this.MainForm_Deactivate); + this.Load += new System.EventHandler(this.MainForm_Load); + this.Shown += new System.EventHandler(this.MainForm_Shown); + this.Enter += new System.EventHandler(this.MainForm_Enter); + this.Resize += new System.EventHandler(this.MainForm_Resize); + this.MainformMenu.ResumeLayout(false); + this.MainformMenu.PerformLayout(); + this.MainStatusBar.ResumeLayout(false); + this.MainStatusBar.PerformLayout(); + this.MainFormContextMenu.ResumeLayout(false); + this.ResumeLayout(false); + this.PerformLayout(); } @@ -2779,5 +2788,6 @@ private void InitializeComponent() private System.Windows.Forms.ToolStripSeparator toolStripSeparator25; private ToolStripMenuItemEx DisableResizeWithFramebufferMenuItem; private ToolStripSeparatorEx toolStripSeparator26; + private System.Windows.Forms.ToolStripMenuItem TAStudioMPRToolStripMenuItem; } } diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Events.cs b/src/BizHawk.Client.EmuHawk/MainForm.Events.cs index b1dc69b7e5b..c0c6e99b959 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Events.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Events.cs @@ -1128,6 +1128,22 @@ private void TAStudioMenuItem_Click(object sender, EventArgs e) Tools.Load(); } + private void TAStudioMPRToolStripMenuItem_Click(object sender, EventArgs e) + { + if (!Emulator.CanPollInput()) + { + ShowMessageBox(owner: null, "Current core does not support input polling. TAStudio can't be used."); + return; + } + const int DONT_PROMPT_BEFORE_FRAME = 2 * 60 * 60; // 2 min @ 60 fps + if (MovieSession.Movie.NotActive() && Emulator.Frame > DONT_PROMPT_BEFORE_FRAME // if playing casually (not recording) AND played for enough frames (prompting always would be annoying)... + && !this.ModalMessageBox2("This will reload the rom without saving. Launch TAStudio anyway?", "Confirmation")) // ...AND user responds "No" to "Open TAStudio?", then cancel + { + return; + } + Tools.Load(); + } + private void HexEditorMenuItem_Click(object sender, EventArgs e) { Tools.Load(); diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index f9249cb0a1e..0f7482812e1 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -4756,6 +4756,8 @@ private void SingleInstanceProcessArgs(string[] args) private IRetroAchievements RA { get; set; } + + private void OpenRetroAchievements() { RA = RetroAchievements.CreateImpl( diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.Designer.cs new file mode 100644 index 00000000000..a44101bb17b --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.Designer.cs @@ -0,0 +1,262 @@ +namespace BizHawk.Client.EmuHawk +{ + partial class BookmarksBranchesBoxMPR + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.BookmarksBranchesGroupBox = new System.Windows.Forms.GroupBox(); + this.UndoBranchButton = new System.Windows.Forms.Button(); + this.JumpToBranchButton = new System.Windows.Forms.Button(); + this.UpdateBranchButton = new System.Windows.Forms.Button(); + this.AddWithTextBranchButton = new System.Windows.Forms.Button(); + this.AddBranchButton = new System.Windows.Forms.Button(); + this.LoadBranchButton = new System.Windows.Forms.Button(); + this.BranchView = new BizHawk.Client.EmuHawk.InputRoll(); + this.BranchesContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); + this.AddBranchContextMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AddBranchWithTextContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadBranchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.UpdateBranchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.EditBranchTextContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.JumpToBranchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.UndoBranchToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.RemoveBranchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); + this.BookmarksBranchesGroupBox.SuspendLayout(); + this.BranchesContextMenu.SuspendLayout(); + this.SuspendLayout(); + // + // BookmarksBranchesGroupBox + // + this.BookmarksBranchesGroupBox.Controls.Add(this.UndoBranchButton); + this.BookmarksBranchesGroupBox.Controls.Add(this.JumpToBranchButton); + this.BookmarksBranchesGroupBox.Controls.Add(this.UpdateBranchButton); + this.BookmarksBranchesGroupBox.Controls.Add(this.AddWithTextBranchButton); + this.BookmarksBranchesGroupBox.Controls.Add(this.AddBranchButton); + this.BookmarksBranchesGroupBox.Controls.Add(this.LoadBranchButton); + this.BookmarksBranchesGroupBox.Controls.Add(this.BranchView); + this.BookmarksBranchesGroupBox.Dock = System.Windows.Forms.DockStyle.Fill; + this.BookmarksBranchesGroupBox.Location = new System.Drawing.Point(0, 0); + this.BookmarksBranchesGroupBox.Name = "BookmarksBranchesGroupBox"; + this.BookmarksBranchesGroupBox.Size = new System.Drawing.Size(198, 278); + this.BookmarksBranchesGroupBox.TabIndex = 0; + this.BookmarksBranchesGroupBox.TabStop = false; + this.BookmarksBranchesGroupBox.Text = "Branches"; + // + // UndoBranchButton + // + this.UndoBranchButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.UndoBranchButton.Enabled = false; + this.UndoBranchButton.Location = new System.Drawing.Point(156, 247); + this.UndoBranchButton.Name = "UndoBranchButton"; + this.UndoBranchButton.Size = new System.Drawing.Size(24, 24); + this.UndoBranchButton.TabIndex = 6; + this.UndoBranchButton.UseVisualStyleBackColor = true; + this.UndoBranchButton.Click += new System.EventHandler(this.UndoBranchToolStripMenuItem_Click); + // + // JumpToBranchButton + // + this.JumpToBranchButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.JumpToBranchButton.Enabled = false; + this.JumpToBranchButton.Location = new System.Drawing.Point(126, 247); + this.JumpToBranchButton.Name = "JumpToBranchButton"; + this.JumpToBranchButton.Size = new System.Drawing.Size(24, 24); + this.JumpToBranchButton.TabIndex = 5; + this.toolTip1.SetToolTip(this.JumpToBranchButton, "Jump To Branch Frame"); + this.JumpToBranchButton.UseVisualStyleBackColor = true; + this.JumpToBranchButton.Click += new System.EventHandler(this.JumpToBranchToolStripMenuItem_Click); + // + // UpdateBranchButton + // + this.UpdateBranchButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.UpdateBranchButton.Enabled = false; + this.UpdateBranchButton.Location = new System.Drawing.Point(96, 247); + this.UpdateBranchButton.Name = "UpdateBranchButton"; + this.UpdateBranchButton.Size = new System.Drawing.Size(24, 24); + this.UpdateBranchButton.TabIndex = 4; + this.toolTip1.SetToolTip(this.UpdateBranchButton, "Update Branch"); + this.UpdateBranchButton.UseVisualStyleBackColor = true; + this.UpdateBranchButton.Click += new System.EventHandler(this.UpdateBranchToolStripMenuItem_Click); + // + // AddWithTextBranchButton + // + this.AddWithTextBranchButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.AddWithTextBranchButton.Location = new System.Drawing.Point(36, 247); + this.AddWithTextBranchButton.Name = "AddWithTextBranchButton"; + this.AddWithTextBranchButton.Size = new System.Drawing.Size(24, 24); + this.AddWithTextBranchButton.TabIndex = 2; + this.toolTip1.SetToolTip(this.AddWithTextBranchButton, "Add Branch with Text"); + this.AddWithTextBranchButton.UseVisualStyleBackColor = true; + this.AddWithTextBranchButton.Click += new System.EventHandler(this.AddBranchWithTexToolStripMenuItem_Click); + // + // AddBranchButton + // + this.AddBranchButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.AddBranchButton.Location = new System.Drawing.Point(6, 247); + this.AddBranchButton.Name = "AddBranchButton"; + this.AddBranchButton.Size = new System.Drawing.Size(24, 24); + this.AddBranchButton.TabIndex = 1; + this.toolTip1.SetToolTip(this.AddBranchButton, "Add Branch"); + this.AddBranchButton.UseVisualStyleBackColor = true; + this.AddBranchButton.Click += new System.EventHandler(this.AddBranchToolStripMenuItem_Click); + // + // LoadBranchButton + // + this.LoadBranchButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.LoadBranchButton.Enabled = false; + this.LoadBranchButton.Location = new System.Drawing.Point(66, 247); + this.LoadBranchButton.Name = "LoadBranchButton"; + this.LoadBranchButton.Size = new System.Drawing.Size(24, 24); + this.LoadBranchButton.TabIndex = 3; + this.toolTip1.SetToolTip(this.LoadBranchButton, "Load Branch"); + this.LoadBranchButton.UseVisualStyleBackColor = true; + this.LoadBranchButton.Click += new System.EventHandler(this.LoadBranchToolStripMenuItem_Click); + // + // BranchView + // + this.BranchView.AllowColumnReorder = false; + this.BranchView.AllowColumnResize = false; + this.BranchView.AlwaysScroll = false; + this.BranchView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.BranchView.CellHeightPadding = 0; + this.BranchView.ChangeSelectionWhenPaging = false; + this.BranchView.ContextMenuStrip = this.BranchesContextMenu; + this.BranchView.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.BranchView.FullRowSelect = true; + this.BranchView.HorizontalOrientation = false; + this.BranchView.LetKeysModifySelection = false; + this.BranchView.Location = new System.Drawing.Point(6, 19); + this.BranchView.Name = "BranchView"; + this.BranchView.RowCount = 0; + this.BranchView.ScrollSpeed = 1; + this.BranchView.Size = new System.Drawing.Size(186, 224); + this.BranchView.TabIndex = 0; + this.BranchView.PointedCellChanged += new BizHawk.Client.EmuHawk.InputRoll.CellChangeEventHandler(this.BranchView_PointedCellChanged); + this.BranchView.SelectedIndexChanged += new System.EventHandler(this.BranchView_SelectedIndexChanged); + this.BranchView.CellDropped += new BizHawk.Client.EmuHawk.InputRoll.CellDroppedEvent(this.BranchView_CellDropped); + this.BranchView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.BranchView_MouseDoubleClick); + this.BranchView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.BranchView_MouseDown); + this.BranchView.MouseLeave += new System.EventHandler(this.BranchView_MouseLeave); + this.BranchView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.BranchView_MouseMove); + this.BranchView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.BranchView_MouseUp); + // + // BranchesContextMenu + // + this.BranchesContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AddBranchContextMenu, + this.AddBranchWithTextContextMenuItem, + this.LoadBranchContextMenuItem, + this.UpdateBranchContextMenuItem, + this.EditBranchTextContextMenuItem, + this.JumpToBranchContextMenuItem, + this.UndoBranchToolStripMenuItem, + this.toolStripSeparator2, + this.RemoveBranchContextMenuItem}); + this.BranchesContextMenu.Name = "BranchesContextMenu"; + this.BranchesContextMenu.Size = new System.Drawing.Size(147, 186); + this.BranchesContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.BranchesContextMenu_Opening); + // + // AddBranchContextMenu + // + this.AddBranchContextMenu.Text = "Add"; + this.AddBranchContextMenu.Click += new System.EventHandler(this.AddBranchToolStripMenuItem_Click); + // + // AddBranchWithTextContextMenuItem + // + this.AddBranchWithTextContextMenuItem.Text = "Add with Text"; + this.AddBranchWithTextContextMenuItem.Click += new System.EventHandler(this.AddBranchWithTexToolStripMenuItem_Click); + // + // LoadBranchContextMenuItem + // + this.LoadBranchContextMenuItem.Text = "Load"; + this.LoadBranchContextMenuItem.Click += new System.EventHandler(this.LoadBranchToolStripMenuItem_Click); + // + // UpdateBranchContextMenuItem + // + this.UpdateBranchContextMenuItem.Text = "&Update"; + this.UpdateBranchContextMenuItem.Click += new System.EventHandler(this.UpdateBranchToolStripMenuItem_Click); + // + // EditBranchTextContextMenuItem + // + this.EditBranchTextContextMenuItem.Text = "Edit Text"; + this.EditBranchTextContextMenuItem.Click += new System.EventHandler(this.EditBranchTextToolStripMenuItem_Click); + // + // JumpToBranchContextMenuItem + // + this.JumpToBranchContextMenuItem.Text = "Jump To"; + this.JumpToBranchContextMenuItem.Click += new System.EventHandler(this.JumpToBranchToolStripMenuItem_Click); + // + // UndoBranchToolStripMenuItem + // + this.UndoBranchToolStripMenuItem.Enabled = false; + this.UndoBranchToolStripMenuItem.Text = "Undo"; + this.UndoBranchToolStripMenuItem.Click += new System.EventHandler(this.UndoBranchToolStripMenuItem_Click); + // + // RemoveBranchContextMenuItem + // + this.RemoveBranchContextMenuItem.Text = "Remove"; + this.RemoveBranchContextMenuItem.Click += new System.EventHandler(this.RemoveBranchToolStripMenuItem_Click); + // + // BookmarksBranchesBox + // + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; + this.Controls.Add(this.BookmarksBranchesGroupBox); + this.Name = "BookmarksBranchesBox"; + this.Size = new System.Drawing.Size(198, 278); + this.BookmarksBranchesGroupBox.ResumeLayout(false); + this.BranchesContextMenu.ResumeLayout(false); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.GroupBox BookmarksBranchesGroupBox; + private InputRoll BranchView; + private System.Windows.Forms.ContextMenuStrip BranchesContextMenu; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx AddBranchContextMenu; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx RemoveBranchContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx LoadBranchContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx UpdateBranchContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx EditBranchTextContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx AddBranchWithTextContextMenuItem; + private System.Windows.Forms.Button UpdateBranchButton; + private System.Windows.Forms.Button AddWithTextBranchButton; + private System.Windows.Forms.Button AddBranchButton; + private System.Windows.Forms.Button LoadBranchButton; + private System.Windows.Forms.ToolTip toolTip1; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator2; + private System.Windows.Forms.Button JumpToBranchButton; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx JumpToBranchContextMenuItem; + private System.Windows.Forms.Button UndoBranchButton; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx UndoBranchToolStripMenuItem; + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.cs new file mode 100644 index 00000000000..95b62ef117e --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.cs @@ -0,0 +1,699 @@ +using System.ComponentModel; +using System.Drawing; +using System.IO; +using System.Linq; +using System.Windows.Forms; + +using BizHawk.Client.Common; +using BizHawk.Client.EmuHawk.Properties; +using BizHawk.Common.CollectionExtensions; +using BizHawk.Emulation.Common; + +namespace BizHawk.Client.EmuHawk +{ + public partial class BookmarksBranchesBoxMPR : UserControl, IDialogParent + { + private const string BranchNumberColumnName = "BranchNumberColumn"; + private const string FrameColumnName = "FrameColumn"; + private const string UserTextColumnName = "TextColumn"; + + private readonly ScreenshotForm _screenshot = new ScreenshotForm(); + + private ITasMovie Movie => TastudioMPR.CurrentTasMovie; + private ITasBranchCollection Branches => Movie.Branches; + + private IMainFormForTools MainForm => TastudioMPR.MainForm; + private TasBranch _backupBranch; + private BranchUndo _branchUndo = BranchUndo.None; + + private enum BranchUndo + { + Load, Update, Text, Remove, None + } + + public Action LoadedCallback { get; set; } + + public Action SavedCallback { get; set; } + + public Action RemovedCallback { get; set; } + + public TAStudioMPR TastudioMPR { get; set; } + + public IDialogController DialogController => TastudioMPR.MainForm; + + public BookmarksBranchesBoxMPR() + { + InitializeComponent(); + UndoBranchButton.Image = Resources.Undo; + JumpToBranchButton.Image = Resources.JumpTo; + UpdateBranchButton.Image = Resources.Reboot; + AddWithTextBranchButton.Image = Resources.AddEdit; + AddBranchButton.Image = Resources.Add; + LoadBranchButton.Image = Resources.Debugger; + AddBranchContextMenu.Image = Resources.Add; + AddBranchWithTextContextMenuItem.Image = Resources.AddEdit; + LoadBranchContextMenuItem.Image = Resources.Debugger; + UpdateBranchContextMenuItem.Image = Resources.Reboot; + EditBranchTextContextMenuItem.Image = Resources.Pencil; + JumpToBranchContextMenuItem.Image = Resources.JumpTo; + UndoBranchToolStripMenuItem.Image = Resources.Undo; + RemoveBranchContextMenuItem.Image = Resources.Delete; + SetupColumns(); + BranchView.QueryItemText += QueryItemText; + BranchView.QueryItemBkColor += QueryItemBkColor; + } + + private void SetupColumns() + { + BranchView.AllColumns.Clear(); + BranchView.AllColumns.Add(new(name: BranchNumberColumnName, widthUnscaled: 30, text: "#")); + BranchView.AllColumns.Add(new(name: FrameColumnName, widthUnscaled: 64, text: "Frame")); + BranchView.AllColumns.Add(new(name: UserTextColumnName, widthUnscaled: 90, text: "UserText")); + } + + private void QueryItemText(int index, RollColumn column, out string text, ref int offsetX, ref int offsetY) + { + text = ""; + + // This could happen if the control is told to redraw while Tastudio is rebooting, as we would not have a TasMovie just yet + if (TastudioMPR.CurrentTasMovie == null) + { + return; + } + + text = column.Name switch + { + BranchNumberColumnName => (index + 1).ToString(), + FrameColumnName => Branches[index].Frame.ToString(), + UserTextColumnName => Branches[index].UserText, + _ => text + }; + } + + private void QueryItemBkColor(int index, RollColumn column, ref Color color) + { + // This could happen if the control is told to redraw while Tastudio is rebooting, as we would not have a TasMovie just yet + if (TastudioMPR.CurrentTasMovie == null) + { + return; + } + + var branch = Branches[index]; + if (branch != null) + { + var record = Movie[branch.Frame]; + if (index == Branches.Current) + { + color = TastudioMPR.Palette.CurrentFrame_InputLog; + } + else if (record.Lagged.HasValue) + { + color = record.Lagged.Value + ? TastudioMPR.Palette.LagZone_InputLog + : TastudioMPR.Palette.GreenZone_InputLog; + } + } + + // Highlight the branch cell a little, if hovering over it + if (BranchView.CurrentCell is { RowIndex: int targetRow, Column.Name: BranchNumberColumnName } + && index == targetRow && column.Name is BranchNumberColumnName) + { + color = Color.FromArgb((byte)(color.A - 24), (byte)(color.R - 24), (byte)(color.G - 24), (byte)(color.B - 24)); + } + } + + // used to capture a reserved state immediately on branch creation + // while also not doing a double state + private class BufferedStatable : IStatable + { + private readonly byte[] _bufferedState; + + public BufferedStatable(byte[] state) + => _bufferedState = state; + + public bool AvoidRewind => true; + + public void SaveStateBinary(BinaryWriter writer) + => writer.Write(_bufferedState); + + public void LoadStateBinary(BinaryReader reader) + => throw new NotImplementedException(); + } + + /// + /// Add a new branch. + /// + public void Branch() + { + var branch = CreateBranch(); + Movie.Branches.NewBranchText = ""; // reset every time it's used + Branches.Add(branch); + BranchView.RowCount = Branches.Count; + Branches.Current = Branches.Count - 1; + Movie.TasSession.UpdateValues(TastudioMPR.Emulator.Frame, Branches.Current); + Movie.TasStateManager.Capture(TastudioMPR.Emulator.Frame, new BufferedStatable(branch.CoreData)); + BranchView.ScrollToIndex(Branches.Current); + BranchView.DeselectAll(); + Select(Branches.Current, true); + BranchView.Refresh(); + TastudioMPR.RefreshDialog(); + MainForm.UpdateStatusSlots(); + } + + public TasBranch SelectedBranch + => BranchView.AnyRowsSelected ? Branches[BranchView.FirstSelectedRowIndex] : null; + + private TasBranch CreateBranch() + { + return new() + { + Frame = TastudioMPR.Emulator.Frame, + CoreData = TastudioMPR.Emulator.AsStatable().CloneSavestate(), + InputLog = Movie.GetLogEntries().Clone(), + CoreFrameBuffer = MainForm.MakeScreenshotImage(), + OSDFrameBuffer = MainForm.CaptureOSD(), + ChangeLog = new(Movie), + TimeStamp = DateTime.Now, + Markers = Movie.Markers.DeepClone(), + UserText = Movie.Branches.NewBranchText + }; + } + + private void LoadBranch(TasBranch branch) + { + if (TastudioMPR.Settings.OldControlSchemeForBranches && !TastudioMPR.TasPlaybackBoxMPR.RecordingMode) + { + JumpToBranchToolStripMenuItem_Click(null, null); + return; + } + + Movie.LoadBranch(branch); + TastudioMPR.LoadState(new(branch.Frame, new MemoryStream(branch.CoreData, false))); + // set the controller state to the previous frame for input display purposes + int previousFrame = Movie.Emulator.Frame - 1; + TastudioMPR.MovieSession.MovieController.SetFrom(Movie.GetInputState(previousFrame)); + + Movie.TasStateManager.Capture(TastudioMPR.Emulator.Frame, TastudioMPR.Emulator.AsStatable()); + QuickBmpFile.Copy(new BitmapBufferVideoProvider(branch.CoreFrameBuffer), TastudioMPR.VideoProvider); + + if (TastudioMPR.Settings.OldControlSchemeForBranches && TastudioMPR.TasPlaybackBoxMPR.RecordingMode) + Movie.Truncate(branch.Frame); + + MainForm.PauseOnFrame = null; + TastudioMPR.RefreshDialog(); + } + + private bool LoadSelectedBranch() + { + if (SelectedBranch == null) return false; + Branches.Current = BranchView.FirstSelectedRowIndex; + LoadBranch(SelectedBranch); + BranchView.Refresh(); + TastudioMPR.MainForm.AddOnScreenMessage($"Loaded branch {Branches.Current + 1}"); + return true; + } + + private void BranchesContextMenu_Opening(object sender, CancelEventArgs e) + { + RemoveBranchContextMenuItem.Enabled = SelectedBranch != null; + + UpdateBranchContextMenuItem.Enabled = + LoadBranchContextMenuItem.Enabled = + EditBranchTextContextMenuItem.Enabled = + JumpToBranchContextMenuItem.Enabled = + BranchView.SelectedRows.CountIsExactly(1); + } + + private void AddBranchToolStripMenuItem_Click(object sender, EventArgs e) + { + Branch(); + SavedCallback?.Invoke(Branches.Count - 1); + TastudioMPR.MainForm.AddOnScreenMessage($"Added branch {Branches.Current + 1}"); + } + + private void AddBranchWithTexToolStripMenuItem_Click(object sender, EventArgs e) + { + Branch(); + EditBranchTextPopUp(Branches.Current); + SavedCallback?.Invoke(Branches.Count - 1); + TastudioMPR.MainForm.AddOnScreenMessage($"Added branch {Branches.Current + 1}"); + } + + private bool PrepareHistoryAndLoadSelectedBranch() + { + _backupBranch = CreateBranch(); + + var currentHashes = Branches.Select(b => b.Uuid.GetHashCode()).ToList(); + do + { + _backupBranch.Uuid = Guid.NewGuid(); + } + while (currentHashes.Contains(_backupBranch.Uuid.GetHashCode())); + + UndoBranchToolStripMenuItem.Enabled = UndoBranchButton.Enabled = true; + UndoBranchToolStripMenuItem.Text = "Undo Branch Load"; + toolTip1.SetToolTip(UndoBranchButton, "Undo Branch Load"); + _branchUndo = BranchUndo.Load; + + if (!BranchView.AnyRowsSelected) return false; // why'd we do all that then + + var success = LoadSelectedBranch(); + LoadedCallback?.Invoke(BranchView.FirstSelectedRowIndex); + return success; + } + + private void LoadBranchToolStripMenuItem_Click(object sender, EventArgs e) + => PrepareHistoryAndLoadSelectedBranch(); + + private void UpdateBranchToolStripMenuItem_Click(object sender, EventArgs e) + { + if (SelectedBranch == null) + { + return; + } + + Branches.Current = BranchView.FirstSelectedRowIndex; + + _backupBranch = SelectedBranch.Clone(); + UndoBranchToolStripMenuItem.Enabled = UndoBranchButton.Enabled = true; + UndoBranchToolStripMenuItem.Text = "Undo Branch Update"; + toolTip1.SetToolTip(UndoBranchButton, "Undo Branch Update"); + _branchUndo = BranchUndo.Update; + + BranchView.ScrollToIndex(Branches.Current); + var branch = CreateBranch(); + Branches.Replace(SelectedBranch, branch); + Movie.TasStateManager.Capture(TastudioMPR.Emulator.Frame, new BufferedStatable(branch.CoreData)); + TastudioMPR.RefreshDialog(); + SavedCallback?.Invoke(Branches.Current); + TastudioMPR.MainForm.AddOnScreenMessage($"Saved branch {Branches.Current + 1}"); + } + + private void EditBranchTextToolStripMenuItem_Click(object sender, EventArgs e) + { + if (SelectedBranch == null) + { + return; + } + + var index = BranchView.FirstSelectedRowIndex; + string oldText = SelectedBranch.UserText; + + if (EditBranchTextPopUp(index)) + { + _backupBranch = SelectedBranch.Clone(); + _backupBranch.UserText = oldText; + UndoBranchToolStripMenuItem.Enabled = UndoBranchButton.Enabled = true; + UndoBranchToolStripMenuItem.Text = "Undo Branch Text Edit"; + toolTip1.SetToolTip(UndoBranchButton, "Undo Branch Text Edit"); + _branchUndo = BranchUndo.Text; + + TastudioMPR.MainForm.AddOnScreenMessage($"Edited branch {index + 1}"); + } + } + + private void JumpToBranchToolStripMenuItem_Click(object sender, EventArgs e) + { + if (BranchView.AnyRowsSelected) TastudioMPR.GoToFrame(Branches[BranchView.FirstSelectedRowIndex].Frame); + } + + private void RemoveBranchToolStripMenuItem_Click(object sender, EventArgs e) + { + if (!BranchView.AnyRowsSelected) + { + return; + } + + var indices = BranchView.SelectedRows.ToList(); + var branches = Branches.ToList(); + foreach (var index in indices) + { + _backupBranch = branches[index].Clone(); + Branches.Remove(branches[index]); + RemovedCallback?.Invoke(index); + TastudioMPR.MainForm.AddOnScreenMessage($"Removed branch {index + 1}"); + + if (index == Branches.Current) + { + Branches.Current = -1; + } + else if (index < Branches.Current) + { + Branches.Current--; + } + } + + UndoBranchToolStripMenuItem.Enabled = UndoBranchButton.Enabled = true; + UndoBranchToolStripMenuItem.Text = "Undo Branch Removal"; + toolTip1.SetToolTip(UndoBranchButton, "Undo Branch Removal"); + _branchUndo = BranchUndo.Remove; + + BranchView.RowCount = Branches.Count; + TastudioMPR.RefreshDialog(refreshBranches: false); + MainForm.UpdateStatusSlots(); + } + + private void UndoBranchToolStripMenuItem_Click(object sender, EventArgs e) + { + if (_branchUndo == BranchUndo.Load) + { + LoadBranch(_backupBranch); + LoadedCallback?.Invoke(Branches.IndexOf(_backupBranch)); + TastudioMPR.MainForm.AddOnScreenMessage("Branch Load canceled"); + } + else if (_branchUndo == BranchUndo.Update) + { + var branch = Branches.SingleOrDefault(b => b.Uuid == _backupBranch.Uuid); + if (branch != null) + { + Branches.Replace(branch, _backupBranch); + SavedCallback?.Invoke(Branches.IndexOf(_backupBranch)); + TastudioMPR.MainForm.AddOnScreenMessage("Branch Update canceled"); + } + } + else if (_branchUndo == BranchUndo.Text) + { + var branch = Branches.SingleOrDefault(b => b.Uuid == _backupBranch.Uuid); + if (branch != null) + { + branch.UserText = _backupBranch.UserText; + } + + TastudioMPR.MainForm.AddOnScreenMessage("Branch Text Edit canceled"); + } + else if (_branchUndo == BranchUndo.Remove) + { + Branches.Add(_backupBranch); + BranchView.RowCount = Branches.Count; + SavedCallback?.Invoke(Branches.IndexOf(_backupBranch)); + TastudioMPR.MainForm.AddOnScreenMessage("Branch Removal canceled"); + } + + UndoBranchToolStripMenuItem.Enabled = UndoBranchButton.Enabled = false; + BranchView.Refresh(); + TastudioMPR.RefreshDialog(); + } + + public void AddBranchExternal() + { + AddBranchToolStripMenuItem_Click(null, null); + } + + public bool LoadBranchExternal(int slot = -1) + { + if (TastudioMPR.AxisEditingMode) + { + return false; + } + + if (slot != -1) + { + if (Branches[slot] != null) + { + BranchView.DeselectAll(); + Select(slot, true); + } + else + { + NonExistentBranchMessage(slot); + return false; + } + } + + return PrepareHistoryAndLoadSelectedBranch(); + } + + public void UpdateBranchExternal(int slot = -1) + { + if (TastudioMPR.AxisEditingMode) + { + return; + } + + if (slot != -1) + { + if (Branches[slot] != null) + { + BranchView.DeselectAll(); + Select(slot, true); + } + else + { + //NonExistentBranchMessage(slot); // some people can't get used to creating branches explicitly with unusual hotkeys + AddBranchExternal(); // so just make a new branch, even though the index may be wrong + return; + } + } + + UpdateBranchToolStripMenuItem_Click(null, null); + } + + public void RemoveBranchExternal() + { + RemoveBranchToolStripMenuItem_Click(null, null); + } + + public void SelectBranchExternal(int slot) + { + if (TastudioMPR.AxisEditingMode) + { + return; + } + + if (Branches[slot] != null) + { + Select(slot, true); + BranchView.Refresh(); + } + else + { + NonExistentBranchMessage(slot); + } + } + + public void SelectBranchExternal(bool next) + { + if (SelectedBranch == null) + { + if (Branches.Current != -1) + { + Select(Branches.Current, true); + BranchView.Refresh(); + } + return; + } + + var sel = BranchView.FirstSelectedRowIndex; + if (next) + { + if (Branches[sel + 1] != null) + { + Select(sel, false); + Select(sel + 1, true); + } + } + else // previous + { + if (Branches[sel - 1] != null) + { + Select(sel, false); + Select(sel - 1, true); + } + } + + BranchView.Refresh(); + } + + private void UpdateButtons() + { + UpdateBranchButton.Enabled = + LoadBranchButton.Enabled = + JumpToBranchButton.Enabled = + BranchView.SelectedRows.CountIsExactly(1); + } + + private void Select(int index, bool value) + { + BranchView.SelectRow(index, value); + UpdateButtons(); + } + + public void NonExistentBranchMessage(int slot) + { + TastudioMPR.MainForm.AddOnScreenMessage($"Branch {slot + 1} does not exist"); + TastudioMPR.MainForm.AddOnScreenMessage($"Use {TastudioMPR.Config!.HotkeyBindings["Add Branch"]} to add branches"); + } + + public void UpdateValues() + { + BranchView.RowCount = Branches.Count; + } + + public void Restart() + { + BranchView.RowCount = Branches.Count; + + if (BranchView.RowCount == 0) + { + SetupColumns(); + } + + BranchView.Refresh(); + } + + public void UpdateTextColumnWidth() + { + if (Branches.Any()) + { + var longestBranchText = Branches + .OrderBy(b => b.UserText?.Length ?? 0) + .Last() + .UserText; + + BranchView.ExpandColumnToFitText(UserTextColumnName, longestBranchText); + } + } + + public bool EditBranchTextPopUp(int index) + { + var branch = Branches[index]; + if (branch == null) + { + return false; + } + + var i = new InputPrompt + { + Text = $"Text for branch {index + 1}", + TextInputType = InputPrompt.InputType.Text, + Message = "Enter a message", + InitialValue = branch.UserText + }; + + i.FollowMousePointer(); + if (i.ShowDialogOnScreen().IsOk()) + { + branch.UserText = i.PromptText; + UpdateTextColumnWidth(); + UpdateValues(); + return true; + } + + return false; + } + + private void BranchView_MouseDown(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + if (BranchView.CurrentCell is { RowIndex: not null, Column.Name: BranchNumberColumnName }) + { + BranchView.DragCurrentCell(); + } + } + } + + private void BranchView_MouseUp(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + BranchView.ReleaseCurrentCell(); + } + } + + private void BranchView_MouseDoubleClick(object sender, MouseEventArgs e) + { + if (TastudioMPR.Settings.LoadBranchOnDoubleClick) + { + PrepareHistoryAndLoadSelectedBranch(); + } + } + + private void BranchView_MouseMove(object sender, MouseEventArgs e) + { + if (BranchView.CurrentCell?.RowIndex == null || BranchView.CurrentCell.Column == null) + { + _screenshot.FadeOut(); + } + else if (BranchView.CurrentCell.Column.Name == BranchNumberColumnName) + { + BranchView.Refresh(); + } + } + + private void BranchView_MouseLeave(object sender, EventArgs e) + { + _screenshot.FadeOut(); + } + + private void BranchView_CellDropped(object sender, InputRoll.CellEventArgs e) + { + if (e.NewCell.IsDataCell() && e.OldCell.RowIndex < Branches.Count) + { + var guid = Branches.Current > Branches.Count + ? Guid.Empty + : Branches[Branches.Current].Uuid; + + Branches.Swap(e.OldCell.RowIndex.Value, e.NewCell.RowIndex.Value); + int newIndex = Branches.IndexOfHash(guid); + Branches.Current = newIndex; + Select(newIndex, true); + } + } + + private void BranchView_PointedCellChanged(object sender, InputRoll.CellEventArgs e) + { + if (e.NewCell?.RowIndex != null && e.NewCell.Column != null && e.NewCell.RowIndex < Branches.Count) + { + if (BranchView.CurrentCell is { RowIndex: int targetRow, Column.Name: BranchNumberColumnName } + && targetRow < Branches.Count) + { + var branch = Branches[targetRow]; + var bb = branch.OSDFrameBuffer; + var width = bb.Width; + Point location = PointToScreen(Location); + var bottom = location.Y + bb.Height; + location.Offset(-width, 0); + + if (location.X < 0) + { + // show on the right of branch control + location.Offset(width + Width, 0); + } + + location.Y = Math.Max(0, location.Y); + var screen = Screen.AllScreens.First(s => s.WorkingArea.Contains(location)); + var h = screen.WorkingArea.Bottom - bottom; + + if (h < 0) + { + // move up to become fully visible + location.Y += h; + } + + _screenshot.UpdateValues( + bb, + branch.UserText, + location, + width: width, + height: bb.Height, + Graphics.FromHwnd(Handle).MeasureString); + _screenshot.FadeIn(); + } + else + { + _screenshot.FadeOut(); + } + } + else + { + _screenshot.FadeOut(); + } + } + + private void BranchView_SelectedIndexChanged(object sender, EventArgs e) + { + UpdateButtons(); + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.resx b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.resx new file mode 100644 index 00000000000..b72db1b6d3f --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 185, 17 + + + 23, 17 + + + 185, 17 + + \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/FramesPromptMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/FramesPromptMPR.Designer.cs new file mode 100644 index 00000000000..e39c681ec1a --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/FramesPromptMPR.Designer.cs @@ -0,0 +1,110 @@ +namespace BizHawk.Client.EmuHawk +{ + partial class FramesPromptMPR + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.OkBtn = new System.Windows.Forms.Button(); + this.CancelBtn = new System.Windows.Forms.Button(); + this.label1 = new BizHawk.WinForms.Controls.LocLabelEx(); + this.NumFramesBox = new BizHawk.Client.EmuHawk.WatchValueBox(); + this.SuspendLayout(); + // + // OkBtn + // + this.OkBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.OkBtn.Location = new System.Drawing.Point(67, 47); + this.OkBtn.Name = "OkBtn"; + this.OkBtn.Size = new System.Drawing.Size(60, 23); + this.OkBtn.TabIndex = 1; + this.OkBtn.Text = "&OK"; + this.OkBtn.UseVisualStyleBackColor = true; + this.OkBtn.Click += new System.EventHandler(this.OkBtn_Click); + // + // CancelBtn + // + this.CancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.CancelBtn.Location = new System.Drawing.Point(134, 47); + this.CancelBtn.Name = "CancelBtn"; + this.CancelBtn.Size = new System.Drawing.Size(60, 23); + this.CancelBtn.TabIndex = 2; + this.CancelBtn.Text = "&Cancel"; + this.CancelBtn.UseVisualStyleBackColor = true; + this.CancelBtn.Click += new System.EventHandler(this.CancelBtn_Click); + // + // label1 + // + this.label1.Location = new System.Drawing.Point(12, 20); + this.label1.Name = "label1"; + this.label1.Text = "Insert number of frames:"; + // + // NumFramesBox + // + this.NumFramesBox.ByteSize = BizHawk.Client.Common.WatchSize.Word; + this.NumFramesBox.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper; + this.NumFramesBox.Location = new System.Drawing.Point(138, 16); + this.NumFramesBox.MaxLength = 5; + this.NumFramesBox.Name = "NumFramesBox"; + this.NumFramesBox.Nullable = false; + this.NumFramesBox.Size = new System.Drawing.Size(51, 20); + this.NumFramesBox.TabIndex = 3; + this.NumFramesBox.Text = "1"; + this.NumFramesBox.Type = BizHawk.Client.Common.WatchDisplayType.Unsigned; + // + // FramesPrompt + // + this.AcceptButton = this.OkBtn; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.CancelButton = this.CancelBtn; + this.ClientSize = new System.Drawing.Size(206, 82); + this.Controls.Add(this.label1); + this.Controls.Add(this.NumFramesBox); + this.Controls.Add(this.CancelBtn); + this.Controls.Add(this.OkBtn); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FramesPrompt"; + this.ShowIcon = false; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; + this.Text = "Insert Frames"; + this.Load += new System.EventHandler(this.FramesPrompt_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button OkBtn; + private System.Windows.Forms.Button CancelBtn; + private WatchValueBox NumFramesBox; + private BizHawk.WinForms.Controls.LocLabelEx label1; + } +} \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/FramesPromptMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/FramesPromptMPR.cs new file mode 100644 index 00000000000..5ba86c219f4 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/FramesPromptMPR.cs @@ -0,0 +1,39 @@ +using System.Windows.Forms; + +namespace BizHawk.Client.EmuHawk +{ + public partial class FramesPromptMPR : Form + { + public FramesPromptMPR() + { + InitializeComponent(); + } + + public FramesPromptMPR(string headMessage, string bodyMessage) + { + InitializeComponent(); + + this.Text = headMessage; + this.label1.Text = bodyMessage; + } + + public int Frames => NumFramesBox.ToRawInt() ?? 0; + + private void FramesPrompt_Load(object sender, EventArgs e) + { + NumFramesBox.Select(); + } + + private void OkBtn_Click(object sender, EventArgs e) + { + DialogResult = DialogResult.OK; + Close(); + } + + private void CancelBtn_Click(object sender, EventArgs e) + { + DialogResult = DialogResult.Cancel; + Close(); + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/FramesPromptMPR.resx b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/FramesPromptMPR.resx new file mode 100644 index 00000000000..29dcb1b3a35 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/FramesPromptMPR.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/GreenzoneSettingsMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/GreenzoneSettingsMPR.Designer.cs new file mode 100644 index 00000000000..bbeb1f0a560 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/GreenzoneSettingsMPR.Designer.cs @@ -0,0 +1,109 @@ +namespace BizHawk.Client.EmuHawk +{ + partial class GreenzoneSettingsMPR + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.OkBtn = new System.Windows.Forms.Button(); + this.CancelBtn = new System.Windows.Forms.Button(); + this.DefaultsButton = new System.Windows.Forms.Button(); + this.SettingsPropertyGrid = new System.Windows.Forms.PropertyGrid(); + this.SuspendLayout(); + // + // OkBtn + // + this.OkBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.OkBtn.Location = new System.Drawing.Point(263, 333); + this.OkBtn.Name = "OkBtn"; + this.OkBtn.Size = new System.Drawing.Size(60, 23); + this.OkBtn.TabIndex = 3; + this.OkBtn.Text = "&OK"; + this.OkBtn.UseVisualStyleBackColor = true; + this.OkBtn.Click += new System.EventHandler(this.OkBtn_Click); + // + // CancelBtn + // + this.CancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.CancelBtn.Location = new System.Drawing.Point(329, 333); + this.CancelBtn.Name = "CancelBtn"; + this.CancelBtn.Size = new System.Drawing.Size(60, 23); + this.CancelBtn.TabIndex = 2; + this.CancelBtn.Text = "&Cancel"; + this.CancelBtn.UseVisualStyleBackColor = true; + this.CancelBtn.Click += new System.EventHandler(this.CancelBtn_Click); + // + // DefaultsButton + // + this.DefaultsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.DefaultsButton.Location = new System.Drawing.Point(12, 333); + this.DefaultsButton.Name = "DefaultsButton"; + this.DefaultsButton.Size = new System.Drawing.Size(101, 23); + this.DefaultsButton.TabIndex = 4; + this.DefaultsButton.Text = "Restore &Defaults"; + this.DefaultsButton.UseVisualStyleBackColor = true; + this.DefaultsButton.Click += new System.EventHandler(this.DefaultsButton_Click); + // + // SettingsPropertyGrid + // + this.SettingsPropertyGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.SettingsPropertyGrid.Location = new System.Drawing.Point(12, 8); + this.SettingsPropertyGrid.Name = "SettingsPropertyGrid"; + this.SettingsPropertyGrid.PropertySort = System.Windows.Forms.PropertySort.NoSort; + this.SettingsPropertyGrid.Size = new System.Drawing.Size(376, 319); + this.SettingsPropertyGrid.TabIndex = 5; + this.SettingsPropertyGrid.ToolbarVisible = false; + // + // GreenzoneSettings + // + this.AcceptButton = this.OkBtn; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.CancelButton = this.CancelBtn; + this.ClientSize = new System.Drawing.Size(400, 368); + this.Controls.Add(this.SettingsPropertyGrid); + this.Controls.Add(this.DefaultsButton); + this.Controls.Add(this.OkBtn); + this.Controls.Add(this.CancelBtn); + this.Name = "GreenzoneSettings"; + this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; + this.Text = "Default Savestate History Settings"; + this.Load += new System.EventHandler(this.GreenzoneSettings_Load); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Button OkBtn; + private System.Windows.Forms.Button CancelBtn; + private System.Windows.Forms.Button DefaultsButton; + private System.Windows.Forms.PropertyGrid SettingsPropertyGrid; + } +} \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/GreenzoneSettingsMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/GreenzoneSettingsMPR.cs new file mode 100644 index 00000000000..8fef7da0fcf --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/GreenzoneSettingsMPR.cs @@ -0,0 +1,52 @@ +using System.Windows.Forms; + +using BizHawk.Client.Common; + +namespace BizHawk.Client.EmuHawk +{ + public partial class GreenzoneSettingsMPR : Form, IDialogParent + { + private readonly Action _saveSettings; + private ZwinderStateManagerSettings _settings; + private readonly bool _isDefault; + + public IDialogController DialogController { get; } + + public GreenzoneSettingsMPR(IDialogController dialogController, ZwinderStateManagerSettings settings, Action saveSettings, bool isDefault) + { + DialogController = dialogController; + InitializeComponent(); + Icon = Properties.Resources.TAStudioIcon; + + _saveSettings = saveSettings; + _settings = settings; + _isDefault = isDefault; + if (!isDefault) + Text = "Savestate History Settings"; + SettingsPropertyGrid.SelectedObject = _settings; + } + + private void GreenzoneSettings_Load(object sender, EventArgs e) + { + SettingsPropertyGrid.AdjustDescriptionHeightToFit(); + } + + private void OkBtn_Click(object sender, EventArgs e) + { + var keep = !_isDefault && DialogController.ShowMessageBox2("Attempt to keep old states?", "Keep old states?"); + _saveSettings(_settings, keep); + Close(); + } + + private void CancelBtn_Click(object sender, EventArgs e) + { + Close(); + } + + private void DefaultsButton_Click(object sender, EventArgs e) + { + _settings = new ZwinderStateManagerSettings(); + SettingsPropertyGrid.SelectedObject = _settings; + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/GreenzoneSettingsMPR.resx b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/GreenzoneSettingsMPR.resx new file mode 100644 index 00000000000..29dcb1b3a35 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/GreenzoneSettingsMPR.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/HeaderEditorMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/HeaderEditorMPR.Designer.cs new file mode 100644 index 00000000000..b49db74ba25 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/HeaderEditorMPR.Designer.cs @@ -0,0 +1,233 @@ +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Windows.Forms; + +namespace BizHawk.Client.EmuHawk +{ + public partial class MovieHeaderEditorMPR + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.CancelBtn = new System.Windows.Forms.Button(); + this.OkBtn = new System.Windows.Forms.Button(); + this.AuthorTextBox = new System.Windows.Forms.TextBox(); + this.label1 = new BizHawk.WinForms.Controls.LocLabelEx(); + this.DefaultAuthorButton = new System.Windows.Forms.Button(); + this.MakeDefaultCheckbox = new System.Windows.Forms.CheckBox(); + this.label2 = new BizHawk.WinForms.Controls.LocLabelEx(); + this.EmulatorVersionTextBox = new System.Windows.Forms.TextBox(); + this.CoreTextBox = new System.Windows.Forms.TextBox(); + this.label4 = new BizHawk.WinForms.Controls.LocLabelEx(); + this.BoardNameTextBox = new System.Windows.Forms.TextBox(); + this.label5 = new BizHawk.WinForms.Controls.LocLabelEx(); + this.GameNameTextBox = new System.Windows.Forms.TextBox(); + this.label6 = new BizHawk.WinForms.Controls.LocLabelEx(); + this.SuspendLayout(); + // + // CancelBtn + // + this.CancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.CancelBtn.Location = new System.Drawing.Point(249, 238); + this.CancelBtn.Name = "CancelBtn"; + this.CancelBtn.Size = new System.Drawing.Size(60, 23); + this.CancelBtn.TabIndex = 0; + this.CancelBtn.Text = "&Cancel"; + this.CancelBtn.UseVisualStyleBackColor = true; + this.CancelBtn.Click += new System.EventHandler(this.CancelBtn_Click); + // + // OkBtn + // + this.OkBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.OkBtn.Location = new System.Drawing.Point(183, 238); + this.OkBtn.Name = "OkBtn"; + this.OkBtn.Size = new System.Drawing.Size(60, 23); + this.OkBtn.TabIndex = 1; + this.OkBtn.Text = "&OK"; + this.OkBtn.UseVisualStyleBackColor = true; + this.OkBtn.Click += new System.EventHandler(this.OkBtn_Click); + // + // AuthorTextBox + // + this.AuthorTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.AuthorTextBox.Location = new System.Drawing.Point(90, 20); + this.AuthorTextBox.Name = "AuthorTextBox"; + this.AuthorTextBox.Size = new System.Drawing.Size(162, 20); + this.AuthorTextBox.TabIndex = 2; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(12, 20); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(38, 13); + this.label1.TabIndex = 3; + this.label1.Text = "Author"; + // + // DefaultAuthorButton + // + this.DefaultAuthorButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.DefaultAuthorButton.Location = new System.Drawing.Point(258, 19); + this.DefaultAuthorButton.Name = "DefaultAuthorButton"; + this.DefaultAuthorButton.Size = new System.Drawing.Size(51, 23); + this.DefaultAuthorButton.TabIndex = 4; + this.DefaultAuthorButton.Text = "Default"; + this.DefaultAuthorButton.UseVisualStyleBackColor = true; + this.DefaultAuthorButton.Click += new System.EventHandler(this.DefaultAuthorButton_Click); + // + // MakeDefaultCheckbox + // + this.MakeDefaultCheckbox.AutoSize = true; + this.MakeDefaultCheckbox.Location = new System.Drawing.Point(108, 43); + this.MakeDefaultCheckbox.Name = "MakeDefaultCheckbox"; + this.MakeDefaultCheckbox.Size = new System.Drawing.Size(88, 17); + this.MakeDefaultCheckbox.TabIndex = 5; + this.MakeDefaultCheckbox.Text = "Make default"; + this.MakeDefaultCheckbox.UseVisualStyleBackColor = true; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(12, 80); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(66, 13); + this.label2.TabIndex = 6; + this.label2.Text = "Emu Version"; + // + // EmulatorVersionTextBox + // + this.EmulatorVersionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.EmulatorVersionTextBox.Location = new System.Drawing.Point(90, 76); + this.EmulatorVersionTextBox.Name = "EmulatorVersionTextBox"; + this.EmulatorVersionTextBox.Size = new System.Drawing.Size(162, 20); + this.EmulatorVersionTextBox.TabIndex = 7; + // + // CoreTextBox + // + this.CoreTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.CoreTextBox.Location = new System.Drawing.Point(90, 106); + this.CoreTextBox.Name = "CoreTextBox"; + this.CoreTextBox.Size = new System.Drawing.Size(162, 20); + this.CoreTextBox.TabIndex = 10; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Location = new System.Drawing.Point(12, 110); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(29, 13); + this.label4.TabIndex = 11; + this.label4.Text = "Core"; + // + // BoardNameTextBox + // + this.BoardNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.BoardNameTextBox.Location = new System.Drawing.Point(90, 136); + this.BoardNameTextBox.Name = "BoardNameTextBox"; + this.BoardNameTextBox.Size = new System.Drawing.Size(162, 20); + this.BoardNameTextBox.TabIndex = 12; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Location = new System.Drawing.Point(12, 140); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(64, 13); + this.label5.TabIndex = 13; + this.label5.Text = "Board name"; + // + // GameNameTextBox + // + this.GameNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GameNameTextBox.Location = new System.Drawing.Point(90, 166); + this.GameNameTextBox.Name = "GameNameTextBox"; + this.GameNameTextBox.Size = new System.Drawing.Size(162, 20); + this.GameNameTextBox.TabIndex = 14; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Location = new System.Drawing.Point(12, 170); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(64, 13); + this.label6.TabIndex = 15; + this.label6.Text = "Game name"; + // + // MovieHeaderEditor + // + this.AcceptButton = this.OkBtn; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.CancelButton = this.CancelBtn; + this.ClientSize = new System.Drawing.Size(321, 273); + this.Controls.Add(this.label6); + this.Controls.Add(this.GameNameTextBox); + this.Controls.Add(this.label5); + this.Controls.Add(this.BoardNameTextBox); + this.Controls.Add(this.label4); + this.Controls.Add(this.CoreTextBox); + this.Controls.Add(this.EmulatorVersionTextBox); + this.Controls.Add(this.label2); + this.Controls.Add(this.MakeDefaultCheckbox); + this.Controls.Add(this.DefaultAuthorButton); + this.Controls.Add(this.label1); + this.Controls.Add(this.AuthorTextBox); + this.Controls.Add(this.OkBtn); + this.Controls.Add(this.CancelBtn); + this.MinimumSize = new System.Drawing.Size(150, 311); + this.Name = "MovieHeaderEditor"; + this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; + this.Text = "Header Info"; + this.Load += new System.EventHandler(this.MovieHeaderEditor_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + private Button CancelBtn; + private Button OkBtn; + private TextBox AuthorTextBox; + private Label label1; + private Button DefaultAuthorButton; + private CheckBox MakeDefaultCheckbox; + private Label label2; + private TextBox EmulatorVersionTextBox; + private TextBox CoreTextBox; + private Label label4; + private TextBox BoardNameTextBox; + private Label label5; + private TextBox GameNameTextBox; + private Label label6; + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/HeaderEditorMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/HeaderEditorMPR.cs new file mode 100644 index 00000000000..df47edfb14e --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/HeaderEditorMPR.cs @@ -0,0 +1,57 @@ +using System.Windows.Forms; + +using BizHawk.Client.Common; + +namespace BizHawk.Client.EmuHawk +{ + public partial class MovieHeaderEditorMPR : Form + { + private readonly IBasicMovieInfo _movie; + private readonly Config _config; + + public MovieHeaderEditorMPR(IBasicMovieInfo movie, Config config) + { + _movie = movie; + _config = config; + InitializeComponent(); + Icon = Properties.Resources.TAStudioIcon; + } + + private void MovieHeaderEditor_Load(object sender, EventArgs e) + { + AuthorTextBox.Text = _movie.Author; + EmulatorVersionTextBox.Text = _movie.EmulatorVersion; + CoreTextBox.Text = _movie.Core; + BoardNameTextBox.Text = _movie.BoardName; + GameNameTextBox.Text = _movie.GameName; + } + + private void OkBtn_Click(object sender, EventArgs e) + { + _movie.Author = AuthorTextBox.Text; + if (MakeDefaultCheckbox.Checked) + { + _config.DefaultAuthor = AuthorTextBox.Text; + } + + _movie.EmulatorVersion = EmulatorVersionTextBox.Text; + _movie.Core = CoreTextBox.Text; + _movie.BoardName = BoardNameTextBox.Text; + _movie.GameName = GameNameTextBox.Text; + + DialogResult = DialogResult.OK; + Close(); + } + + private void CancelBtn_Click(object sender, EventArgs e) + { + DialogResult = DialogResult.Cancel; + Close(); + } + + private void DefaultAuthorButton_Click(object sender, EventArgs e) + { + AuthorTextBox.Text = _config.DefaultAuthor; + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/HeaderEditorMPR.resx b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/HeaderEditorMPR.resx new file mode 100644 index 00000000000..29dcb1b3a35 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/HeaderEditorMPR.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.Designer.cs new file mode 100644 index 00000000000..c5a6da6eed2 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.Designer.cs @@ -0,0 +1,255 @@ +namespace BizHawk.Client.EmuHawk +{ + partial class MarkerControlMPR + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.MarkerContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); + this.JumpToMarkerToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ScrollToMarkerToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.EditMarkerToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.EditMarkerFrameToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AddMarkerToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.RemoveMarkerToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.JumpToMarkerButton = new System.Windows.Forms.Button(); + this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); + this.EditMarkerButton = new System.Windows.Forms.Button(); + this.EditMarkerFrameButton = new System.Windows.Forms.Button(); + this.AddMarkerButton = new System.Windows.Forms.Button(); + this.RemoveMarkerButton = new System.Windows.Forms.Button(); + this.ScrollToMarkerButton = new System.Windows.Forms.Button(); + this.AddMarkerWithTextButton = new System.Windows.Forms.Button(); + this.MarkerView = new BizHawk.Client.EmuHawk.InputRoll(); + this.MarkersGroupBox = new System.Windows.Forms.GroupBox(); + this.MarkerContextMenu.SuspendLayout(); + this.MarkersGroupBox.SuspendLayout(); + this.SuspendLayout(); + // + // MarkerContextMenu + // + this.MarkerContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.JumpToMarkerToolStripMenuItem, + this.ScrollToMarkerToolStripMenuItem, + this.EditMarkerToolStripMenuItem, + this.EditMarkerFrameToolStripMenuItem, + this.AddMarkerToolStripMenuItem, + this.toolStripSeparator1, + this.RemoveMarkerToolStripMenuItem}); + this.MarkerContextMenu.Name = "MarkerContextMenu"; + this.MarkerContextMenu.Size = new System.Drawing.Size(196, 142); + this.MarkerContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.MarkerContextMenu_Opening); + // + // JumpToMarkerToolStripMenuItem + // + this.JumpToMarkerToolStripMenuItem.Text = "Jump To"; + this.JumpToMarkerToolStripMenuItem.Click += new System.EventHandler(this.JumpToMarkerToolStripMenuItem_Click); + // + // ScrollToMarkerToolStripMenuItem + // + this.ScrollToMarkerToolStripMenuItem.Text = "Scroll To"; + this.ScrollToMarkerToolStripMenuItem.Click += new System.EventHandler(this.ScrollToMarkerToolStripMenuItem_Click); + // + // EditMarkerToolStripMenuItem + // + this.EditMarkerToolStripMenuItem.Text = "Edit Text"; + this.EditMarkerToolStripMenuItem.Click += new System.EventHandler(this.EditMarkerToolStripMenuItem_Click); + // + // EditMarkerFrameToolStripMenuItem + // + this.EditMarkerFrameToolStripMenuItem.Text = "Edit Frame (Alt + Drag)"; + this.EditMarkerFrameToolStripMenuItem.Click += new System.EventHandler(this.EditMarkerFrameToolStripMenuItem_Click); + // + // AddMarkerToolStripMenuItem + // + this.AddMarkerToolStripMenuItem.Text = "Add"; + this.AddMarkerToolStripMenuItem.Click += new System.EventHandler(this.AddMarkerToolStripMenuItem_Click); + // + // RemoveMarkerToolStripMenuItem + // + this.RemoveMarkerToolStripMenuItem.Text = "Remove"; + this.RemoveMarkerToolStripMenuItem.Click += new System.EventHandler(this.RemoveMarkerToolStripMenuItem_Click); + // + // JumpToMarkerButton + // + this.JumpToMarkerButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.JumpToMarkerButton.Enabled = false; + this.JumpToMarkerButton.Location = new System.Drawing.Point(61, 247); + this.JumpToMarkerButton.Name = "JumpToMarkerButton"; + this.JumpToMarkerButton.Size = new System.Drawing.Size(24, 24); + this.JumpToMarkerButton.TabIndex = 3; + this.toolTip1.SetToolTip(this.JumpToMarkerButton, "Jump To Marker Frame"); + this.JumpToMarkerButton.UseVisualStyleBackColor = true; + this.JumpToMarkerButton.Click += new System.EventHandler(this.JumpToMarkerToolStripMenuItem_Click); + // + // EditMarkerButton + // + this.EditMarkerButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.EditMarkerButton.Enabled = false; + this.EditMarkerButton.Location = new System.Drawing.Point(117, 247); + this.EditMarkerButton.Name = "EditMarkerButton"; + this.EditMarkerButton.Size = new System.Drawing.Size(24, 24); + this.EditMarkerButton.TabIndex = 5; + this.toolTip1.SetToolTip(this.EditMarkerButton, "Edit Marker Text"); + this.EditMarkerButton.UseVisualStyleBackColor = true; + this.EditMarkerButton.Click += new System.EventHandler(this.EditMarkerToolStripMenuItem_Click); + // + // EditMarkerFrameButton + // + this.EditMarkerFrameButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.EditMarkerFrameButton.Enabled = false; + this.EditMarkerFrameButton.Location = new System.Drawing.Point(145, 247); + this.EditMarkerFrameButton.Name = "EditMarkerFrameButton"; + this.EditMarkerFrameButton.Size = new System.Drawing.Size(24, 24); + this.EditMarkerFrameButton.TabIndex = 6; + this.toolTip1.SetToolTip(this.EditMarkerFrameButton, "Edit Marker Frame (Alt + Drag)"); + this.EditMarkerFrameButton.UseVisualStyleBackColor = true; + this.EditMarkerFrameButton.Click += new System.EventHandler(this.EditMarkerFrameToolStripMenuItem_Click); + // + // AddMarkerButton + // + this.AddMarkerButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.AddMarkerButton.Location = new System.Drawing.Point(5, 247); + this.AddMarkerButton.Name = "AddMarkerButton"; + this.AddMarkerButton.Size = new System.Drawing.Size(24, 24); + this.AddMarkerButton.TabIndex = 1; + this.toolTip1.SetToolTip(this.AddMarkerButton, "Add Marker to Emulated Frame"); + this.AddMarkerButton.UseVisualStyleBackColor = true; + this.AddMarkerButton.Click += new System.EventHandler(this.AddMarkerToolStripMenuItem_Click); + // + // RemoveMarkerButton + // + this.RemoveMarkerButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.RemoveMarkerButton.Enabled = false; + this.RemoveMarkerButton.Location = new System.Drawing.Point(173, 247); + this.RemoveMarkerButton.Name = "RemoveMarkerButton"; + this.RemoveMarkerButton.Size = new System.Drawing.Size(24, 24); + this.RemoveMarkerButton.TabIndex = 7; + this.toolTip1.SetToolTip(this.RemoveMarkerButton, "Remove Marker"); + this.RemoveMarkerButton.UseVisualStyleBackColor = true; + this.RemoveMarkerButton.Click += new System.EventHandler(this.RemoveMarkerToolStripMenuItem_Click); + // + // ScrollToMarkerButton + // + this.ScrollToMarkerButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.ScrollToMarkerButton.Enabled = false; + this.ScrollToMarkerButton.Location = new System.Drawing.Point(89, 247); + this.ScrollToMarkerButton.Name = "ScrollToMarkerButton"; + this.ScrollToMarkerButton.Size = new System.Drawing.Size(24, 24); + this.ScrollToMarkerButton.TabIndex = 4; + this.toolTip1.SetToolTip(this.ScrollToMarkerButton, "Scroll View To Marker Frame"); + this.ScrollToMarkerButton.UseVisualStyleBackColor = true; + this.ScrollToMarkerButton.Click += new System.EventHandler(this.ScrollToMarkerToolStripMenuItem_Click); + // + // AddMarkerWithTextButton + // + this.AddMarkerWithTextButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.AddMarkerWithTextButton.Location = new System.Drawing.Point(33, 247); + this.AddMarkerWithTextButton.Name = "AddMarkerWithTextButton"; + this.AddMarkerWithTextButton.Size = new System.Drawing.Size(24, 24); + this.AddMarkerWithTextButton.TabIndex = 2; + this.toolTip1.SetToolTip(this.AddMarkerWithTextButton, "Add Marker with Text to Emulated Frame"); + this.AddMarkerWithTextButton.UseVisualStyleBackColor = true; + this.AddMarkerWithTextButton.Click += new System.EventHandler(this.AddMarkerWithTextToolStripMenuItem_Click); + // + // MarkerView + // + this.MarkerView.AllowColumnReorder = false; + this.MarkerView.AllowColumnResize = false; + this.MarkerView.AlwaysScroll = false; + this.MarkerView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.MarkerView.CellHeightPadding = 0; + this.MarkerView.ContextMenuStrip = this.MarkerContextMenu; + this.MarkerView.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.MarkerView.FullRowSelect = true; + this.MarkerView.HorizontalOrientation = false; + this.MarkerView.LetKeysModifySelection = false; + this.MarkerView.Location = new System.Drawing.Point(6, 19); + this.MarkerView.Name = "MarkerView"; + this.MarkerView.RowCount = 0; + this.MarkerView.ScrollSpeed = 1; + this.MarkerView.Size = new System.Drawing.Size(186, 224); + this.MarkerView.TabIndex = 0; + this.MarkerView.TabStop = false; + this.MarkerView.SelectedIndexChanged += new System.EventHandler(this.MarkerView_SelectedIndexChanged); + this.MarkerView.DoubleClick += new System.EventHandler(this.MarkerView_MouseDoubleClick); + // + // MarkersGroupBox + // + this.MarkersGroupBox.Controls.Add(this.MarkerView); + this.MarkersGroupBox.Controls.Add(this.AddMarkerButton); + this.MarkersGroupBox.Controls.Add(this.AddMarkerWithTextButton); + this.MarkersGroupBox.Controls.Add(this.RemoveMarkerButton); + this.MarkersGroupBox.Controls.Add(this.ScrollToMarkerButton); + this.MarkersGroupBox.Controls.Add(this.EditMarkerButton); + this.MarkersGroupBox.Controls.Add(this.EditMarkerFrameButton); + this.MarkersGroupBox.Controls.Add(this.JumpToMarkerButton); + this.MarkersGroupBox.Dock = System.Windows.Forms.DockStyle.Fill; + this.MarkersGroupBox.Location = new System.Drawing.Point(0, 0); + this.MarkersGroupBox.Name = "MarkersGroupBox"; + this.MarkersGroupBox.Size = new System.Drawing.Size(198, 278); + this.MarkersGroupBox.TabIndex = 0; + this.MarkersGroupBox.TabStop = false; + this.MarkersGroupBox.Text = "Markers"; + // + // MarkerControl + // + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; + this.Controls.Add(this.MarkersGroupBox); + this.Name = "MarkerControl"; + this.Size = new System.Drawing.Size(198, 278); + this.MarkerContextMenu.ResumeLayout(false); + this.MarkersGroupBox.ResumeLayout(false); + this.ResumeLayout(false); + + } + + #endregion + + private InputRoll MarkerView; + private System.Windows.Forms.Button AddMarkerButton; + private System.Windows.Forms.Button RemoveMarkerButton; + private System.Windows.Forms.Button JumpToMarkerButton; + private System.Windows.Forms.Button EditMarkerButton; + private System.Windows.Forms.Button EditMarkerFrameButton; + private System.Windows.Forms.Button ScrollToMarkerButton; + private System.Windows.Forms.ToolTip toolTip1; + private System.Windows.Forms.ContextMenuStrip MarkerContextMenu; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx ScrollToMarkerToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx EditMarkerToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx EditMarkerFrameToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx AddMarkerToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx RemoveMarkerToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx JumpToMarkerToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1; + private System.Windows.Forms.Button AddMarkerWithTextButton; + private System.Windows.Forms.GroupBox MarkersGroupBox; + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.cs new file mode 100644 index 00000000000..683d6304e85 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.cs @@ -0,0 +1,291 @@ +using System.ComponentModel; +using System.Drawing; +using System.Linq; +using System.Windows.Forms; + +using BizHawk.Client.Common; +using BizHawk.Client.EmuHawk.Properties; + +namespace BizHawk.Client.EmuHawk +{ + public partial class MarkerControlMPR : UserControl, IDialogParent + { + public TAStudioMPR TastudioMPR { get; set; } + public TasMovieMarkerList Markers => TastudioMPR.CurrentTasMovie.Markers; + + public IDialogController DialogController => TastudioMPR.MainForm; + + private TasMovieMarker FirstSelectedMarker + => Markers[MarkerView.FirstSelectedRowIndex]; + + public MarkerControlMPR() + { + InitializeComponent(); + JumpToMarkerToolStripMenuItem.Image = Resources.JumpTo; + ScrollToMarkerToolStripMenuItem.Image = Resources.ScrollTo; + EditMarkerToolStripMenuItem.Image = Resources.Pencil; + EditMarkerFrameToolStripMenuItem.Image = Resources.Clock; + AddMarkerToolStripMenuItem.Image = Resources.Add; + RemoveMarkerToolStripMenuItem.Image = Resources.Delete; + JumpToMarkerButton.Image = Resources.JumpTo; + EditMarkerButton.Image = Resources.Pencil; + EditMarkerFrameButton.Image = Resources.Clock; + AddMarkerButton.Image = Resources.Add; + RemoveMarkerButton.Image = Resources.Delete; + ScrollToMarkerButton.Image = Resources.ScrollTo; + AddMarkerWithTextButton.Image = Resources.AddEdit; + SetupColumns(); + MarkerView.QueryItemBkColor += MarkerView_QueryItemBkColor; + MarkerView.QueryItemText += MarkerView_QueryItemText; + } + + private void SetupColumns() + { + MarkerView.AllColumns.Clear(); + MarkerView.AllColumns.Add(new(name: "FrameColumn", widthUnscaled: 52, text: "Frame")); + MarkerView.AllColumns.Add(new(name: "LabelColumn", widthUnscaled: 125, text: string.Empty)); + } + + public InputRoll MarkerInputRoll => MarkerView; + + private void MarkerView_QueryItemBkColor(int index, RollColumn column, ref Color color) + { + // This could happen if the control is told to redraw while Tastudio is rebooting, as we would not have a TasMovie just yet + if (TastudioMPR.CurrentTasMovie is null) return; + + if (index >= Markers.Count) return; // this should never happen + + var marker = Markers[index]; + var prev = Markers.PreviousOrCurrent(TastudioMPR.Emulator.Frame); + + if (ReferenceEquals(marker, prev)) + { + // feos: taseditor doesn't have it, so we're free to set arbitrary color scheme. and I prefer consistency + color = TastudioMPR.Palette.CurrentFrame_InputLog; + } + else if (TastudioMPR.CurrentTasMovie.LagLog[marker.Frame + 1] is bool lagged) + { + if (lagged) + { + color = column.Name == "FrameColumn" + ? TastudioMPR.Palette.LagZone_FrameCol + : TastudioMPR.Palette.LagZone_InputLog; + } + else + { + color = column.Name == "LabelColumn" + ? TastudioMPR.Palette.GreenZone_FrameCol + : TastudioMPR.Palette.GreenZone_InputLog; + } + } + } + + private void MarkerView_QueryItemText(int index, RollColumn column, out string text, ref int offsetX, ref int offsetY) + { + text = ""; + + // This could happen if the control is told to redraw while Tastudio is rebooting, as we would not have a TasMovie just yet + if (TastudioMPR.CurrentTasMovie == null) + { + return; + } + + if (column.Name == "FrameColumn") + { + text = Markers[index].Frame.ToString(); + } + else if (column.Name == "LabelColumn") + { + text = Markers[index].Message; + } + } + + private void MarkerContextMenu_Opening(object sender, CancelEventArgs e) + { + EditMarkerToolStripMenuItem.Enabled = + EditMarkerFrameToolStripMenuItem.Enabled = + RemoveMarkerToolStripMenuItem.Enabled = + MarkerInputRoll.AnyRowsSelected && MarkerView.FirstSelectedRowIndex is not 0; + + JumpToMarkerToolStripMenuItem.Enabled = + ScrollToMarkerToolStripMenuItem.Enabled = + MarkerInputRoll.AnyRowsSelected; + } + + private void ScrollToMarkerToolStripMenuItem_Click(object sender, EventArgs e) + { + if (MarkerView.AnyRowsSelected) + { + TastudioMPR.SetVisibleFrame(FirstSelectedMarker.Frame); + TastudioMPR.RefreshDialog(); + } + } + + private void JumpToMarkerToolStripMenuItem_Click(object sender, EventArgs e) + { + if (MarkerView.AnyRowsSelected) TastudioMPR.GoToFrame(FirstSelectedMarker.Frame); + } + + private void EditMarkerToolStripMenuItem_Click(object sender, EventArgs e) + { + if (MarkerView.AnyRowsSelected) EditMarkerPopUp(FirstSelectedMarker); + } + + private void EditMarkerFrameToolStripMenuItem_Click(object sender, EventArgs e) + { + if (MarkerView.AnyRowsSelected) EditMarkerFramePopUp(FirstSelectedMarker); + } + + private void AddMarkerToolStripMenuItem_Click(object sender, EventArgs e) + { + AddMarker(TastudioMPR.Emulator.Frame); + } + + private void AddMarkerWithTextToolStripMenuItem_Click(object sender, EventArgs e) + { + AddMarker(TastudioMPR.Emulator.Frame, true); + } + + private void RemoveMarkerToolStripMenuItem_Click(object sender, EventArgs e) + { + if (!MarkerView.AnyRowsSelected) return; + foreach (var i in MarkerView.SelectedRows.Select(index => Markers[index]).ToList()) Markers.Remove(i); + MarkerView.RowCount = Markers.Count; + TastudioMPR.RefreshDialog(); + } + + public void UpdateMarkerCount() + { + MarkerView.RowCount = Markers.Count; + } + + public void AddMarker(int frame, bool editText = false) + { + TasMovieMarker marker; + if (editText) + { + var i = new InputPrompt + { + Text = $"Marker for frame {frame}", + TextInputType = InputPrompt.InputType.Text, + Message = "Enter a message", + InitialValue = + Markers.IsMarker(frame) ? + Markers.PreviousOrCurrent(frame).Message : + "" + }; + + i.FollowMousePointer(); + if (!i.ShowDialogOnScreen().IsOk()) return; + + UpdateTextColumnWidth(); + marker = new TasMovieMarker(frame, i.PromptText); + } + else + { + marker = new TasMovieMarker(frame); + } + + UpdateValues(); + Markers.Add(marker); + var index = Markers.IndexOf(marker); + MarkerView.MakeIndexVisible(index); + TastudioMPR.RefreshDialog(); + } + + public void UpdateTextColumnWidth() + { + if (Markers.Any()) + { + var longestBranchText = Markers + .OrderBy(b => b.Message?.Length ?? 0) + .Last() + .Message; + + MarkerView.ExpandColumnToFitText("LabelColumn", longestBranchText); + } + } + + public void EditMarkerPopUp(TasMovieMarker marker) + { + var markerFrame = marker.Frame; + var i = new InputPrompt + { + Text = $"Marker for frame {markerFrame}", + TextInputType = InputPrompt.InputType.Text, + Message = "Enter a message", + InitialValue = + Markers.IsMarker(markerFrame) + ? Markers.PreviousOrCurrent(markerFrame).Message + : "" + }; + + i.FollowMousePointer(); + if (!i.ShowDialogOnScreen().IsOk()) return; + + marker.Message = i.PromptText; + UpdateTextColumnWidth(); + UpdateValues(); + } + + public void EditMarkerFramePopUp(TasMovieMarker marker) + { + var markerFrame = marker.Frame; + var i = new InputPrompt + { + Text = $"Marker for frame {markerFrame}", + TextInputType = InputPrompt.InputType.Unsigned, + Message = "Enter a frame number", + InitialValue = Markers.IsMarker(markerFrame) + ? Markers.PreviousOrCurrent(markerFrame).Frame.ToString() + : "0", + }; + + i.FollowMousePointer(); + if (!i.ShowDialogOnScreen().IsOk() + || !int.TryParse(i.PromptText, out var promptValue) + || Markers.IsMarker(promptValue)) // don't move to frame with an existing marker + { + return; + } + Markers.Move(marker.Frame, promptValue); + UpdateTextColumnWidth(); + UpdateValues(); + TastudioMPR.RefreshDialog(); + } + + public void UpdateValues() + { + if (MarkerView != null && TastudioMPR?.CurrentTasMovie != null && Markers != null) + { + MarkerView.RowCount = Markers.Count; + } + } + + public void Restart() + { + SetupColumns(); + MarkerView.RowCount = Markers.Count; + MarkerView.Refresh(); + } + + private void MarkerView_SelectedIndexChanged(object sender, EventArgs e) + { + EditMarkerButton.Enabled = + EditMarkerFrameButton.Enabled = + RemoveMarkerButton.Enabled = + MarkerInputRoll.AnyRowsSelected && MarkerView.FirstSelectedRowIndex is not 0; + + JumpToMarkerButton.Enabled = + ScrollToMarkerButton.Enabled = + MarkerInputRoll.AnyRowsSelected; + } + + // SuuperW: Marker renaming can be done with a right-click. + // A much more useful feature would be to easily jump to it. + private void MarkerView_MouseDoubleClick(object sender, EventArgs e) + { + if (MarkerView.AnyRowsSelected) TastudioMPR.GoToFrame(FirstSelectedMarker.Frame); + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.resx b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.resx new file mode 100644 index 00000000000..1e64cf29690 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + 168, 17 + + + 168, 17 + + \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PatternsFormMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PatternsFormMPR.Designer.cs new file mode 100644 index 00000000000..64b3e324946 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PatternsFormMPR.Designer.cs @@ -0,0 +1,202 @@ +namespace BizHawk.Client.EmuHawk +{ + partial class PatternsFormMPR + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.ButtonBox = new System.Windows.Forms.ComboBox(); + this.PatternList = new System.Windows.Forms.ListBox(); + this.InsertButton = new System.Windows.Forms.Button(); + this.DeleteButton = new System.Windows.Forms.Button(); + this.LagBox = new System.Windows.Forms.CheckBox(); + this.label1 = new BizHawk.WinForms.Controls.LocLabelEx(); + this.ValueNum = new System.Windows.Forms.NumericUpDown(); + this.CountNum = new System.Windows.Forms.NumericUpDown(); + this.label2 = new BizHawk.WinForms.Controls.LocLabelEx(); + this.OnOffBox = new System.Windows.Forms.CheckBox(); + ((System.ComponentModel.ISupportInitialize)(this.ValueNum)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.CountNum)).BeginInit(); + this.SuspendLayout(); + // + // ButtonBox + // + this.ButtonBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ButtonBox.FormattingEnabled = true; + this.ButtonBox.Location = new System.Drawing.Point(12, 12); + this.ButtonBox.Name = "ButtonBox"; + this.ButtonBox.Size = new System.Drawing.Size(169, 21); + this.ButtonBox.TabIndex = 0; + this.ButtonBox.SelectedIndexChanged += new System.EventHandler(this.ButtonBox_SelectedIndexChanged); + // + // PatternList + // + this.PatternList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left))); + this.PatternList.FormattingEnabled = true; + this.PatternList.Items.AddRange(new object[] { + "0: On\t(x1)", + "1: Off\t(x1)", + "Loop to 0"}); + this.PatternList.Location = new System.Drawing.Point(12, 39); + this.PatternList.Name = "PatternList"; + this.PatternList.Size = new System.Drawing.Size(169, 134); + this.PatternList.TabIndex = 1; + this.PatternList.SelectedIndexChanged += new System.EventHandler(this.PatternList_SelectedIndexChanged); + // + // InsertButton + // + this.InsertButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.InsertButton.Location = new System.Drawing.Point(12, 207); + this.InsertButton.Name = "InsertButton"; + this.InsertButton.Size = new System.Drawing.Size(57, 23); + this.InsertButton.TabIndex = 2; + this.InsertButton.Text = "Insert"; + this.InsertButton.UseVisualStyleBackColor = true; + this.InsertButton.Click += new System.EventHandler(this.InsertButton_Click); + // + // DeleteButton + // + this.DeleteButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.DeleteButton.Location = new System.Drawing.Point(124, 207); + this.DeleteButton.Name = "DeleteButton"; + this.DeleteButton.Size = new System.Drawing.Size(57, 23); + this.DeleteButton.TabIndex = 2; + this.DeleteButton.Text = "Delete"; + this.DeleteButton.UseVisualStyleBackColor = true; + this.DeleteButton.Click += new System.EventHandler(this.DeleteButton_Click); + // + // LagBox + // + this.LagBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.LagBox.AutoSize = true; + this.LagBox.Checked = true; + this.LagBox.CheckState = System.Windows.Forms.CheckState.Checked; + this.LagBox.Location = new System.Drawing.Point(12, 236); + this.LagBox.Name = "LagBox"; + this.LagBox.Size = new System.Drawing.Size(132, 17); + this.LagBox.TabIndex = 3; + this.LagBox.Text = "Account for lag frames"; + this.LagBox.UseVisualStyleBackColor = true; + this.LagBox.CheckedChanged += new System.EventHandler(this.LagBox_CheckedChanged); + // + // label1 + // + this.label1.Location = new System.Drawing.Point(9, 181); + this.label1.Name = "label1"; + this.label1.Text = "Value:"; + // + // ValueNum + // + this.ValueNum.Location = new System.Drawing.Point(48, 179); + this.ValueNum.Maximum = new decimal(new int[] { + 10000, + 0, + 0, + 0}); + this.ValueNum.Minimum = new decimal(new int[] { + 10000, + 0, + 0, + -2147483648}); + this.ValueNum.Name = "ValueNum"; + this.ValueNum.Size = new System.Drawing.Size(51, 20); + this.ValueNum.TabIndex = 5; + this.ValueNum.Visible = false; + this.ValueNum.ValueChanged += new System.EventHandler(this.ValueNum_ValueChanged); + // + // CountNum + // + this.CountNum.Location = new System.Drawing.Point(143, 179); + this.CountNum.Name = "CountNum"; + this.CountNum.Size = new System.Drawing.Size(38, 20); + this.CountNum.TabIndex = 5; + this.CountNum.Value = new decimal(new int[] { + 1, + 0, + 0, + 0}); + this.CountNum.ValueChanged += new System.EventHandler(this.CountNum_ValueChanged); + // + // label2 + // + this.label2.Location = new System.Drawing.Point(103, 181); + this.label2.Name = "label2"; + this.label2.Text = "Count:"; + // + // OnOffBox + // + this.OnOffBox.AutoSize = true; + this.OnOffBox.Location = new System.Drawing.Point(48, 180); + this.OnOffBox.Name = "OnOffBox"; + this.OnOffBox.Size = new System.Drawing.Size(15, 14); + this.OnOffBox.TabIndex = 6; + this.OnOffBox.UseVisualStyleBackColor = true; + this.OnOffBox.CheckedChanged += new System.EventHandler(this.OnOffBox_CheckedChanged); + // + // PatternsForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(193, 258); + this.Controls.Add(this.OnOffBox); + this.Controls.Add(this.CountNum); + this.Controls.Add(this.ValueNum); + this.Controls.Add(this.label2); + this.Controls.Add(this.label1); + this.Controls.Add(this.LagBox); + this.Controls.Add(this.DeleteButton); + this.Controls.Add(this.InsertButton); + this.Controls.Add(this.PatternList); + this.Controls.Add(this.ButtonBox); + this.MaximizeBox = false; + this.MaximumSize = new System.Drawing.Size(209, 9999); + this.MinimizeBox = false; + this.MinimumSize = new System.Drawing.Size(209, 39); + this.Name = "PatternsForm"; + this.Text = "Patterns Options"; + this.Load += new System.EventHandler(this.PatternsForm_Load); + ((System.ComponentModel.ISupportInitialize)(this.ValueNum)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.CountNum)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.ComboBox ButtonBox; + private System.Windows.Forms.ListBox PatternList; + private System.Windows.Forms.Button InsertButton; + private System.Windows.Forms.Button DeleteButton; + private System.Windows.Forms.CheckBox LagBox; + private BizHawk.WinForms.Controls.LocLabelEx label1; + private System.Windows.Forms.NumericUpDown ValueNum; + private System.Windows.Forms.NumericUpDown CountNum; + private BizHawk.WinForms.Controls.LocLabelEx label2; + private System.Windows.Forms.CheckBox OnOffBox; + } +} \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PatternsFormMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PatternsFormMPR.cs new file mode 100644 index 00000000000..1b6bcf93ed7 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PatternsFormMPR.cs @@ -0,0 +1,310 @@ +using System.Collections.Generic; +using System.Globalization; +using System.Windows.Forms; + +using BizHawk.Client.Common; + +namespace BizHawk.Client.EmuHawk +{ + public partial class PatternsFormMPR : Form + { + private readonly TAStudioMPR _tastudio; + + private readonly List _counts = new List(); + private readonly List _values = new List(); + private int _loopAt; + private bool _updating; + + private string SelectedButton => ButtonBox.Text; + + private bool IsBool => _tastudio.MovieSession.MovieController.Definition.BoolButtons.Contains(SelectedButton); + + public PatternsFormMPR(TAStudioMPR owner) + { + InitializeComponent(); + _tastudio = owner; + + foreach (var button in _tastudio.MovieSession.MovieController.Definition.BoolButtons) + { + ButtonBox.Items.Add(button); + } + + foreach (var button in _tastudio.MovieSession.MovieController.Definition.Axes.Keys) + { + ButtonBox.Items.Add(button); + } + } + + private void PatternsForm_Load(object sender, EventArgs e) + { + ButtonBox.SelectedIndex = 0; + } + + private void ButtonBox_SelectedIndexChanged(object sender, EventArgs e) + { + GetPattern(); + UpdateDisplay(); + + if (IsBool) + { + OnOffBox.Visible = true; + ValueNum.Visible = false; + } + else + { + ValueNum.Visible = true; + OnOffBox.Visible = false; + } + + CountNum.Value = _counts[0]; + } + + private void PatternList_SelectedIndexChanged(object sender, EventArgs e) + { + if (!_updating) + { + UpdateDisplay(); + } + } + + private void InsertButton_Click(object sender, EventArgs e) + { + _counts.Insert(PatternList.SelectedIndex, 1); + string defaultStr = "false"; + if (!IsBool) + { + defaultStr = _tastudio.MovieSession.MovieController.Definition.Axes[SelectedButton].Neutral.ToString(); + } + + _values.Insert(PatternList.SelectedIndex, defaultStr); + + UpdatePattern(); + UpdateDisplay(); + } + + private void DeleteButton_Click(object sender, EventArgs e) + { + if (PatternList.SelectedIndex >= _counts.Count) + { + return; + } + _counts.RemoveAt(PatternList.SelectedIndex); + _values.RemoveAt(PatternList.SelectedIndex); + UpdatePattern(); + UpdateDisplay(); + } + + private void LagBox_CheckedChanged(object sender, EventArgs e) + { + UpdatePattern(); + } + + private void ValueNum_ValueChanged(object sender, EventArgs e) + { + if (_updating || PatternList.SelectedIndex == -1 || PatternList.SelectedIndex >= _counts.Count) + { + return; + } + + _values[PatternList.SelectedIndex] = ((int) ValueNum.Value).ToString(NumberFormatInfo.InvariantInfo); + UpdatePattern(); + UpdateDisplay(); + } + + private void OnOffBox_CheckedChanged(object sender, EventArgs e) + { + if (_updating || PatternList.SelectedIndex == -1 || PatternList.SelectedIndex >= _counts.Count) + { + return; + } + + _values[PatternList.SelectedIndex] = OnOffBox.Checked.ToString(); + UpdatePattern(); + UpdateDisplay(); + } + + private void CountNum_ValueChanged(object sender, EventArgs e) + { + if (_updating || PatternList.SelectedIndex == -1 || PatternList.SelectedIndex > _counts.Count) + { + return; + } + + if (PatternList.SelectedIndex == _counts.Count) + { + _loopAt = (int)CountNum.Value; + } + else + { + // repeating zero times is not allowed + if ((int)CountNum.Value == 0) + { + CountNum.Value = 1; + } + + _counts[PatternList.SelectedIndex] = (int)CountNum.Value; + } + + UpdatePattern(); + UpdateDisplay(); + } + + private void UpdateDisplay() + { + _updating = true; + PatternList.SuspendLayout(); + + int oldIndex = PatternList.SelectedIndex; + if (oldIndex == -1) + { + oldIndex = 0; + } + + PatternList.Items.Clear(); + int index = 0; + for (int i = 0; i < _counts.Count; i++) + { + string str = $"{index}: "; + if (IsBool) + { + str += _values[i][0] == 'T' ? "On" : "Off"; + } + else + { + str += _values[i]; + } + + PatternList.Items.Add($"{str}\t(x{_counts[i]})"); + index += _counts[i]; + } + + PatternList.Items.Add($"Loop to: {_loopAt}"); + + if (oldIndex >= PatternList.Items.Count) + { + oldIndex = PatternList.Items.Count - 1; + } + + PatternList.SelectedIndex = oldIndex; + + if (PatternList.SelectedIndex != -1 && PatternList.SelectedIndex < _values.Count) + { + index = _tastudio.MovieSession.MovieController.Definition.BoolButtons.IndexOf(SelectedButton); + + if (index != -1) + { + LagBox.Checked = _tastudio.BoolPatterns[index].SkipsLag; + OnOffBox.Checked = _values[PatternList.SelectedIndex][0] == 'T'; + CountNum.Value = _counts[PatternList.SelectedIndex]; + } + else + { + index = _tastudio.MovieSession.MovieController.Definition.Axes.IndexOf(SelectedButton); + + LagBox.Checked = _tastudio.AxisPatterns[index].SkipsLag; + ValueNum.Value = int.Parse(_values[PatternList.SelectedIndex]); + CountNum.Value = _counts[PatternList.SelectedIndex]; + } + } + else if (PatternList.SelectedIndex == _values.Count) + { + CountNum.Value = _loopAt; + } + + PatternList.ResumeLayout(); + _updating = false; + } + + private void UpdatePattern() + { + int index = _tastudio.MovieSession.MovieController.Definition.BoolButtons.IndexOf(SelectedButton); + + if (index != -1) + { + var p = new List(); + for (int i = 0; i < _counts.Count; i++) + { + for (int c = 0; c < _counts[i]; c++) + { + p.Add(Convert.ToBoolean(_values[i])); + } + } + + _tastudio.BoolPatterns[index] = new AutoPatternBool(p.ToArray(), LagBox.Checked, 0, _loopAt); + } + else + { + index = _tastudio.MovieSession.MovieController.Definition.Axes.IndexOf(SelectedButton); + + var p = new List(); + for (int i = 0; i < _counts.Count; i++) + { + for (int c = 0; c < _counts[i]; c++) + { + p.Add(int.Parse(_values[i])); + } + } + + _tastudio.AxisPatterns[index] = new AutoPatternAxis(p.ToArray(), LagBox.Checked, 0, _loopAt); + } + + _tastudio.UpdateAutoFire(SelectedButton, null); + } + + private void GetPattern() + { + int index = _tastudio.MovieSession.MovieController.Definition.BoolButtons.IndexOf(SelectedButton); + + if (index != -1) + { + bool[] p = _tastudio.BoolPatterns[index].Pattern; + bool lastValue = p[0]; + _counts.Clear(); + _values.Clear(); + _counts.Add(1); + _values.Add(lastValue.ToString()); + for (int i = 1; i < p.Length; i++) + { + if (p[i] == lastValue) + { + _counts[_counts.Count - 1]++; + } + else + { + _counts.Add(1); + _values.Add(p[i].ToString()); + lastValue = p[i]; + } + } + + _loopAt = _tastudio.BoolPatterns[index].Loop; + } + else + { + index = _tastudio.MovieSession.MovieController.Definition.Axes.IndexOf(SelectedButton); + + var p = _tastudio.AxisPatterns[index].Pattern; + var lastValue = p[0]; + _counts.Clear(); + _values.Clear(); + _counts.Add(1); + _values.Add(lastValue.ToString()); + for (int i = 1; i < p.Length; i++) + { + if (p[i] == lastValue) + { + _counts[_counts.Count - 1]++; + } + else + { + _counts.Add(1); + _values.Add(p[i].ToString()); + lastValue = p[i]; + } + } + + _loopAt = _tastudio.AxisPatterns[index].Loop; + } + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PatternsFormMPR.resx b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PatternsFormMPR.resx new file mode 100644 index 00000000000..29dcb1b3a35 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PatternsFormMPR.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PlaybackBoxMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PlaybackBoxMPR.Designer.cs new file mode 100644 index 00000000000..e2b16fe7f24 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PlaybackBoxMPR.Designer.cs @@ -0,0 +1,196 @@ +namespace BizHawk.Client.EmuHawk +{ + partial class PlaybackBoxMPR + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.PlaybackGroupBox = new System.Windows.Forms.GroupBox(); + this.RecordingModeCheckbox = new System.Windows.Forms.CheckBox(); + this.AutoRestoreCheckbox = new System.Windows.Forms.CheckBox(); + this.TurboSeekCheckbox = new System.Windows.Forms.CheckBox(); + this.FollowCursorCheckbox = new System.Windows.Forms.CheckBox(); + this.NextMarkerButton = new System.Windows.Forms.Button(); + this.FrameAdvanceButton = new BizHawk.Client.EmuHawk.RepeatButton(); + this.PauseButton = new System.Windows.Forms.Button(); + this.RewindButton = new BizHawk.Client.EmuHawk.RepeatButton(); + this.PreviousMarkerButton = new System.Windows.Forms.Button(); + this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); + this.PlaybackGroupBox.SuspendLayout(); + this.SuspendLayout(); + // + // PlaybackGroupBox + // + this.PlaybackGroupBox.Controls.Add(this.RecordingModeCheckbox); + this.PlaybackGroupBox.Controls.Add(this.AutoRestoreCheckbox); + this.PlaybackGroupBox.Controls.Add(this.TurboSeekCheckbox); + this.PlaybackGroupBox.Controls.Add(this.FollowCursorCheckbox); + this.PlaybackGroupBox.Controls.Add(this.NextMarkerButton); + this.PlaybackGroupBox.Controls.Add(this.FrameAdvanceButton); + this.PlaybackGroupBox.Controls.Add(this.PauseButton); + this.PlaybackGroupBox.Controls.Add(this.RewindButton); + this.PlaybackGroupBox.Controls.Add(this.PreviousMarkerButton); + this.PlaybackGroupBox.Dock = System.Windows.Forms.DockStyle.Fill; + this.PlaybackGroupBox.Location = new System.Drawing.Point(0, 0); + this.PlaybackGroupBox.Name = "PlaybackGroupBox"; + this.PlaybackGroupBox.Size = new System.Drawing.Size(198, 104); + this.PlaybackGroupBox.TabIndex = 0; + this.PlaybackGroupBox.TabStop = false; + this.PlaybackGroupBox.Text = "Playback"; + // + // RecordingModeCheckbox + // + this.RecordingModeCheckbox.AutoSize = true; + this.RecordingModeCheckbox.Location = new System.Drawing.Point(10, 85); + this.RecordingModeCheckbox.Name = "RecordingModeCheckbox"; + this.RecordingModeCheckbox.Size = new System.Drawing.Size(104, 17); + this.RecordingModeCheckbox.TabIndex = 9; + this.RecordingModeCheckbox.Text = "Recording mode"; + this.RecordingModeCheckbox.UseVisualStyleBackColor = true; + this.RecordingModeCheckbox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.RecordingModeCheckbox_MouseClick); + // + // AutoRestoreCheckbox + // + this.AutoRestoreCheckbox.AutoSize = true; + this.AutoRestoreCheckbox.Location = new System.Drawing.Point(10, 64); + this.AutoRestoreCheckbox.Name = "AutoRestoreCheckbox"; + this.AutoRestoreCheckbox.Size = new System.Drawing.Size(141, 17); + this.AutoRestoreCheckbox.TabIndex = 8; + this.AutoRestoreCheckbox.Text = "Auto-restore last position"; + this.AutoRestoreCheckbox.UseVisualStyleBackColor = true; + this.AutoRestoreCheckbox.CheckedChanged += new System.EventHandler(this.AutoRestoreCheckbox_CheckedChanged); + // + // TurboSeekCheckbox + // + this.TurboSeekCheckbox.AutoSize = true; + this.TurboSeekCheckbox.Location = new System.Drawing.Point(117, 43); + this.TurboSeekCheckbox.Name = "TurboSeekCheckbox"; + this.TurboSeekCheckbox.Size = new System.Drawing.Size(80, 17); + this.TurboSeekCheckbox.TabIndex = 6; + this.TurboSeekCheckbox.Text = "Turbo seek"; + this.TurboSeekCheckbox.UseVisualStyleBackColor = true; + this.TurboSeekCheckbox.CheckedChanged += new System.EventHandler(this.TurboSeekCheckbox_CheckedChanged); + // + // FollowCursorCheckbox + // + this.FollowCursorCheckbox.AutoSize = true; + this.FollowCursorCheckbox.Location = new System.Drawing.Point(10, 43); + this.FollowCursorCheckbox.Name = "FollowCursorCheckbox"; + this.FollowCursorCheckbox.Size = new System.Drawing.Size(89, 17); + this.FollowCursorCheckbox.TabIndex = 5; + this.FollowCursorCheckbox.Text = "Follow Cursor"; + this.FollowCursorCheckbox.UseVisualStyleBackColor = true; + this.FollowCursorCheckbox.CheckedChanged += new System.EventHandler(this.FollowCursorCheckbox_CheckedChanged); + // + // NextMarkerButton + // + this.NextMarkerButton.Location = new System.Drawing.Point(154, 17); + this.NextMarkerButton.Name = "NextMarkerButton"; + this.NextMarkerButton.Size = new System.Drawing.Size(38, 23); + this.NextMarkerButton.TabIndex = 4; + this.NextMarkerButton.Text = ">>"; + this.NextMarkerButton.UseVisualStyleBackColor = true; + this.NextMarkerButton.Click += new System.EventHandler(this.NextMarkerButton_Click); + // + // FrameAdvanceButton + // + this.FrameAdvanceButton.InitialDelay = 500; + this.FrameAdvanceButton.Location = new System.Drawing.Point(117, 17); + this.FrameAdvanceButton.Name = "FrameAdvanceButton"; + this.FrameAdvanceButton.RepeatDelay = 50; + this.FrameAdvanceButton.Size = new System.Drawing.Size(38, 23); + this.FrameAdvanceButton.TabIndex = 3; + this.FrameAdvanceButton.Text = ">"; + this.toolTip1.SetToolTip(this.FrameAdvanceButton, "Right Mouse Button + Wheel Down"); + this.FrameAdvanceButton.UseVisualStyleBackColor = true; + this.FrameAdvanceButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.FrameAdvanceButton_MouseDown); + this.FrameAdvanceButton.MouseLeave += new System.EventHandler(this.FrameAdvanceButton_MouseLeave); + this.FrameAdvanceButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.FrameAdvanceButton_MouseUp); + // + // PauseButton + // + this.PauseButton.Location = new System.Drawing.Point(80, 17); + this.PauseButton.Name = "PauseButton"; + this.PauseButton.Size = new System.Drawing.Size(38, 23); + this.PauseButton.TabIndex = 2; + this.PauseButton.Text = "> ||"; + this.toolTip1.SetToolTip(this.PauseButton, "Middle Mouse Button"); + this.PauseButton.UseVisualStyleBackColor = true; + this.PauseButton.Click += new System.EventHandler(this.PauseButton_Click); + // + // RewindButton + // + this.RewindButton.InitialDelay = 1000; + this.RewindButton.Location = new System.Drawing.Point(43, 17); + this.RewindButton.Name = "RewindButton"; + this.RewindButton.RepeatDelay = 100; + this.RewindButton.Size = new System.Drawing.Size(38, 23); + this.RewindButton.TabIndex = 1; + this.RewindButton.Text = "<"; + this.toolTip1.SetToolTip(this.RewindButton, "Right Mouse Button + Wheel Up"); + this.RewindButton.UseVisualStyleBackColor = true; + this.RewindButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.RewindButton_MouseDown); + this.RewindButton.MouseLeave += new System.EventHandler(this.RewindButton_MouseLeave); + this.RewindButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.RewindButton_MouseUp); + // + // PreviousMarkerButton + // + this.PreviousMarkerButton.Location = new System.Drawing.Point(6, 17); + this.PreviousMarkerButton.Name = "PreviousMarkerButton"; + this.PreviousMarkerButton.Size = new System.Drawing.Size(38, 23); + this.PreviousMarkerButton.TabIndex = 0; + this.PreviousMarkerButton.Text = "<<"; + this.PreviousMarkerButton.UseVisualStyleBackColor = true; + this.PreviousMarkerButton.Click += new System.EventHandler(this.PreviousMarkerButton_Click); + // + // PlaybackBox + // + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; + this.Controls.Add(this.PlaybackGroupBox); + this.Name = "PlaybackBox"; + this.Size = new System.Drawing.Size(198, 104); + this.PlaybackGroupBox.ResumeLayout(false); + this.PlaybackGroupBox.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.GroupBox PlaybackGroupBox; + private System.Windows.Forms.Button NextMarkerButton; + private RepeatButton FrameAdvanceButton; + private System.Windows.Forms.Button PauseButton; + private RepeatButton RewindButton; + private System.Windows.Forms.Button PreviousMarkerButton; + private System.Windows.Forms.CheckBox AutoRestoreCheckbox; + private System.Windows.Forms.CheckBox TurboSeekCheckbox; + private System.Windows.Forms.CheckBox FollowCursorCheckbox; + private System.Windows.Forms.CheckBox RecordingModeCheckbox; + private System.Windows.Forms.ToolTip toolTip1; + } +} \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PlaybackBoxMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PlaybackBoxMPR.cs new file mode 100644 index 00000000000..0461f54f5d2 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PlaybackBoxMPR.cs @@ -0,0 +1,155 @@ +using System.ComponentModel; +using System.Windows.Forms; + +using BizHawk.Client.Common; + +namespace BizHawk.Client.EmuHawk +{ + public partial class PlaybackBoxMPR : UserControl + { + private bool _loading = true; + + public TAStudioMPR TastudioMPR { get; set; } + + [Browsable(true)] + [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] + public bool TurboSeek + { + get => TastudioMPR.Config.TurboSeek; + set => TurboSeekCheckbox.Checked = value; + } + + [Browsable(true)] + [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] + public bool AutoRestore + { + get => TastudioMPR.Settings.AutoRestoreLastPosition; + set => AutoRestoreCheckbox.Checked = value; + } + + [Browsable(true)] + [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] + public bool FollowCursor + { + get => TastudioMPR.Settings.FollowCursor; + set => FollowCursorCheckbox.Checked = value; + } + + [Browsable(true)] + [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] + public bool RecordingMode + { + get => TastudioMPR.CurrentTasMovie.IsRecording(); + set + { + RecordingModeCheckbox.Checked = value; + TastudioMPR.MovieSession.ReadOnly = !value; + if (RecordingModeCheckbox.Checked) + { + TastudioMPR.CurrentTasMovie.SwitchToRecord(); + } + else + { + TastudioMPR.CurrentTasMovie.SwitchToPlay(); + } + + TastudioMPR.MainForm.SetMainformMovieInfo(); + } + } + + public PlaybackBoxMPR() + { + InitializeComponent(); + } + + protected override void OnLoad(EventArgs e) + { + base.OnLoad(e); + if (DesignMode) + { + return; + } + + TurboSeekCheckbox.Checked = TastudioMPR.Config?.TurboSeek ?? false; + AutoRestoreCheckbox.Checked = TastudioMPR.Settings.AutoRestoreLastPosition; + FollowCursorCheckbox.Checked = TastudioMPR.Settings.FollowCursor; + RecordingModeCheckbox.Checked = RecordingMode; + + _loading = false; + } + + private void PreviousMarkerButton_Click(object sender, EventArgs e) + { + TastudioMPR.GoToPreviousMarker(); + } + + private void PauseButton_Click(object sender, EventArgs e) + { + TastudioMPR.TogglePause(); + } + + private void NextMarkerButton_Click(object sender, EventArgs e) + { + TastudioMPR.GoToNextMarker(); + } + + private void TurboSeekCheckbox_CheckedChanged(object sender, EventArgs e) + { + if (!_loading) TastudioMPR.Config.TurboSeek = !TastudioMPR.Config.TurboSeek; + } + + private void AutoRestoreCheckbox_CheckedChanged(object sender, EventArgs e) + { + if (!_loading) TastudioMPR.Settings.AutoRestoreLastPosition = !TastudioMPR.Settings.AutoRestoreLastPosition; + } + + private void FollowCursorCheckbox_CheckedChanged(object sender, EventArgs e) + { + if (!_loading) + { + TastudioMPR.Settings.FollowCursor = !TastudioMPR.Settings.FollowCursor; + if (TastudioMPR.Settings.FollowCursor) + { + TastudioMPR.SetVisibleFrame(); + TastudioMPR.RefreshDialog(); + } + } + } + + private void RecordingModeCheckbox_MouseClick(object sender, MouseEventArgs e) + { + RecordingMode = !RecordingMode; + TastudioMPR.WasRecording = RecordingMode; // hard reset at manual click and hotkey + } + + private void RewindButton_MouseDown(object sender, MouseEventArgs e) + { + TastudioMPR.MainForm.PressRewind = true; + } + + private void RewindButton_MouseUp(object sender, MouseEventArgs e) + { + TastudioMPR.MainForm.PressRewind = false; + } + + private void RewindButton_MouseLeave(object sender, EventArgs e) + { + TastudioMPR.MainForm.PressRewind = false; + } + + private void FrameAdvanceButton_MouseDown(object sender, MouseEventArgs e) + { + TastudioMPR.MainForm.HoldFrameAdvance = true; + } + + private void FrameAdvanceButton_MouseLeave(object sender, EventArgs e) + { + TastudioMPR.MainForm.HoldFrameAdvance = false; + } + + private void FrameAdvanceButton_MouseUp(object sender, MouseEventArgs e) + { + TastudioMPR.MainForm.HoldFrameAdvance = false; + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PlaybackBoxMPR.resx b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PlaybackBoxMPR.resx new file mode 100644 index 00000000000..65a871b69cb --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/PlaybackBoxMPR.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioColorSettingsFormMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioColorSettingsFormMPR.cs new file mode 100644 index 00000000000..f0426c75beb --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioColorSettingsFormMPR.cs @@ -0,0 +1,103 @@ +using System.Collections.Generic; +using System.Drawing; +using System.Linq; +using System.Windows.Forms; + +using BizHawk.WinForms.Controls; + +namespace BizHawk.Client.EmuHawk +{ + public sealed class TAStudioColorSettingsFormMPR : Form + { + public TAStudioColorSettingsFormMPR(TAStudioPaletteMPR initPalette, Action save) + { + Dictionary colours = new(); + void Init(TAStudioPaletteMPR fromPalette) + { +// colours["currentFrame_FrameCol"] = fromPalette.CurrentFrame_FrameCol; + colours["currentFrame_InputLog"] = fromPalette.CurrentFrame_InputLog; + colours["greenZone_FrameCol"] = fromPalette.GreenZone_FrameCol; + colours["greenZone_InputLog"] = fromPalette.GreenZone_InputLog; + colours["greenZone_InputLog_Stated"] = fromPalette.GreenZone_InputLog_Stated; + colours["greenZone_InputLog_Invalidated"] = fromPalette.GreenZone_InputLog_Invalidated; + colours["lagZone_FrameCol"] = fromPalette.LagZone_FrameCol; + colours["lagZone_InputLog"] = fromPalette.LagZone_InputLog; + colours["lagZone_InputLog_Stated"] = fromPalette.LagZone_InputLog_Stated; + colours["lagZone_InputLog_Invalidated"] = fromPalette.LagZone_InputLog_Invalidated; + colours["marker_FrameCol"] = fromPalette.Marker_FrameCol; + colours["analogEdit_Col"] = fromPalette.AnalogEdit_Col; + } + Init(initPalette); + + ColorDialog picker = new() { FullOpen = true }; + Size panelSize = new(20, 20); + SingleRowFLP Row(string key, string labelText) // can't use ref here because those aren't captured in closures :( + { + Panel panel = new() { BackColor = colours[key], BorderStyle = BorderStyle.FixedSingle, Size = panelSize, Tag = key }; + panel.Click += (_, _) => + { + picker.Color = colours[key]; + if (picker.ShowDialog().IsOk()) panel.BackColor = colours[key] = picker.Color; + }; + return new() { Controls = { panel, new LabelEx { Text = labelText } } }; + } + SingleColumnFLP flpPanels = new() + { + Controls = + { +// Row("currentFrame_FrameCol", "CurrentFrame: FrameCol"), + Row("currentFrame_InputLog", "Emulated Frame Cursor"), + Row("greenZone_FrameCol", "Frame# Column"), + Row("greenZone_InputLog", "Input Log"), + Row("greenZone_InputLog_Stated", "Savestate"), + Row("greenZone_InputLog_Invalidated", "Invalidated"), + Row("lagZone_FrameCol", "Frame# Column (Lag)"), + Row("lagZone_InputLog", "Input Log (Lag)"), + Row("lagZone_InputLog_Stated", "Savestate (Lag)"), + Row("lagZone_InputLog_Invalidated", "Invalidated (Lag)"), + Row("marker_FrameCol", "Marker"), + Row("analogEdit_Col", "Analog Edit Mode"), + }, + }; + + Size btnSize = new(75, 23); + SzButtonEx btnOK = new() { Size = btnSize, Text = "OK" }; + btnOK.Click += (_, _) => + { + save(new( +// currentFrame_FrameCol: colours["currentFrame_FrameCol"], + currentFrame_InputLog: colours["currentFrame_InputLog"], + greenZone_FrameCol: colours["greenZone_FrameCol"], + greenZone_InputLog: colours["greenZone_InputLog"], + greenZone_InputLog_Stated: colours["greenZone_InputLog_Stated"], + greenZone_InputLog_Invalidated: colours["greenZone_InputLog_Invalidated"], + lagZone_FrameCol: colours["lagZone_FrameCol"], + lagZone_InputLog: colours["lagZone_InputLog"], + lagZone_InputLog_Stated: colours["lagZone_InputLog_Stated"], + lagZone_InputLog_Invalidated: colours["lagZone_InputLog_Invalidated"], + marker_FrameCol: colours["marker_FrameCol"], + analogEdit_Col: colours["analogEdit_Col"])); + Close(); + }; + SzButtonEx btnCancel = new() { Size = btnSize, Text = "Cancel" }; + btnCancel.Click += (_, _) => Close(); + SzButtonEx btnDefaults = new() { Size = btnSize, Text = "Defaults" }; + btnDefaults.Click += (_, _) => + { + Init(TAStudioPaletteMPR.Default); + foreach (var panel in flpPanels.Controls.Cast().Select(flp => (Panel)flp.Controls[0])) + { + panel.BackColor = colours[(string) panel.Tag]; + } + }; + SingleRowFLP flpButtons = new() { Controls = { btnOK, btnCancel, btnDefaults } }; + ((FlowLayoutPanel) flpButtons).FlowDirection = FlowDirection.RightToLeft; // why did I disable this + + SuspendLayout(); + ClientSize = new(240, 320); + Text = "Edit TAStudio Colors"; + Controls.Add(new SingleColumnFLP { Controls = { flpButtons, flpPanels } }); + ResumeLayout(); + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Callbacks.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Callbacks.cs new file mode 100644 index 00000000000..26a3dd17558 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Callbacks.cs @@ -0,0 +1,37 @@ +using System.Drawing; + +namespace BizHawk.Client.EmuHawk +{ + public partial class TAStudioMPR + { + // Everything here is currently for Lua + public Func QueryItemBgColorCallback { get; set; } + public Func QueryItemTextCallback { get; set; } + public Func QueryItemIconCallback { get; set; } + + public Action GreenzoneInvalidatedCallback { get; set; } + public Action BranchLoadedCallback { get; set; } + public Action BranchSavedCallback { get; set; } + public Action BranchRemovedCallback { get; set; } + + private void GreenzoneInvalidated(int index) + { + GreenzoneInvalidatedCallback?.Invoke(index); + } + + private void BranchLoaded(int index) + { + BranchLoadedCallback?.Invoke(index); + } + + private void BranchSaved(int index) + { + BranchSavedCallback?.Invoke(index); + } + + private void BranchRemoved(int index) + { + BranchRemovedCallback?.Invoke(index); + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs new file mode 100644 index 00000000000..af0ccfbdaf8 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs @@ -0,0 +1,1364 @@ +using BizHawk.WinForms.Controls; + +namespace BizHawk.Client.EmuHawk +{ + partial class TAStudioMPR + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.TASMenu = new BizHawk.WinForms.Controls.MenuStripEx(); + this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NewTASMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NewFromSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NewFromNowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NewFromCurrentSaveRamMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.OpenTASMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveTASMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveAsTASMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveBackupMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveBk2BackupMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RecentSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.saveSelectionToMacroToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.placeMacroAtSelectionToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.recentMacrosToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator22 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.toolStripSeparator20 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ToBk2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.EditSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.UndoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RedoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.showUndoHistoryToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectionUndoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectionRedoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DeselectMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectBetweenMarkersMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectAllMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ReselectClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator7 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.CopyMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PasteMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PasteInsertMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CutMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator8 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ClearFramesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.InsertFrameMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DeleteFramesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CloneFramesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CloneFramesXTimesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.InsertNumFramesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator6 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.TruncateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ClearGreenzoneMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GreenzoneICheckSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.StateHistoryIntegrityCheckMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ConfigSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SetMaxUndoLevelsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CopyIncludesFrameNoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator26 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.autosaveToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SetAutosaveIntervalMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AutosaveAsBk2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AutosaveAsBackupFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BackupPerFileSaveMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator9 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.AutoadjustInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.applyPatternToPaintedInputToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.onlyOnAutoFireColumnsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SingleClickAxisEditMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.UseInputKeysItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.BindMarkersToInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.OldControlSchemeForBranchesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadBranchOnDoubleclickMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.OsdInBranchScreenshotsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator14 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.AutopauseAtEndOfMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.sepToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.autoHoldFireToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.keepSetPatternsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.sepToolStripMenuItem1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.autoHoldToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.autoFireToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.customPatternToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.setpToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.setCustomsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SetFontMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MetaSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HeaderMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StateHistorySettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CommentsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SubtitlesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator21 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DefaultStateSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SettingsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RotateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HideLagFramesSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HideLagFrames0 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HideLagFrames1 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HideLagFrames2 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HideLagFrames3 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator12 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.hideWasLagFramesToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.iconsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DenoteStatesWithIconsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DenoteStatesWithBGColorToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DenoteMarkersWithIconsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DenoteMarkersWithBGColorToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ColorSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator23 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.followCursorToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.alwaysScrollToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator24 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.scrollToViewToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.scrollToTopToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.scrollToBottomToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.scrollToCenterToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator25 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.wheelScrollSpeedToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ColumnsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator19 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.HelpSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.TASEditorManualOnlineMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ForumThreadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.aboutToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator10 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.EnableTooltipsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.TasView = new BizHawk.Client.EmuHawk.InputRoll(); + this.TasStatusStrip = new BizHawk.WinForms.Controls.StatusStripEx(); + this.MessageStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); + this.ProgressBar = new System.Windows.Forms.ToolStripProgressBar(); + this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel(); + this.SplicerStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); + this.TasPlaybackBoxMPR = new BizHawk.Client.EmuHawk.PlaybackBoxMPR(); + this.MarkerControlMPR = new BizHawk.Client.EmuHawk.MarkerControlMPR(); + this.RightClickMenu = new System.Windows.Forms.ContextMenuStrip(this.components); + this.SetMarkersContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SetMarkerWithTextContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RemoveMarkersContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator15 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DeselectContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectBetweenMarkersContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator16 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.UngreenzoneContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CancelSeekContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator17 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.copyToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.pasteToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.pasteInsertToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.cutToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.separateToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ClearContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.InsertFrameContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DeleteFramesContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CloneContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CloneXTimesContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.InsertNumFramesContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator18 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.TruncateContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BranchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StartFromNowSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.StartNewProjectFromNowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StartANewProjectFromSaveRamMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BookMarkControlMPR = new BizHawk.Client.EmuHawk.BookmarksBranchesBoxMPR(); + this.BranchesMarkersSplit = new System.Windows.Forms.SplitContainer(); + this.MainVertialSplit = new System.Windows.Forms.SplitContainer(); + this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); + this.TASMenu.SuspendLayout(); + this.TasStatusStrip.SuspendLayout(); + this.RightClickMenu.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.BranchesMarkersSplit)).BeginInit(); + this.BranchesMarkersSplit.Panel1.SuspendLayout(); + this.BranchesMarkersSplit.Panel2.SuspendLayout(); + this.BranchesMarkersSplit.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.MainVertialSplit)).BeginInit(); + this.MainVertialSplit.Panel1.SuspendLayout(); + this.MainVertialSplit.Panel2.SuspendLayout(); + this.MainVertialSplit.SuspendLayout(); + this.SuspendLayout(); + // + // TASMenu + // + this.TASMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.FileSubMenu, + this.EditSubMenu, + this.ConfigSubMenu, + this.MetaSubMenu, + this.SettingsSubMenu, + this.ColumnsSubMenu, + this.HelpSubMenu}); + this.TASMenu.TabIndex = 0; + this.TASMenu.MenuActivate += new System.EventHandler(this.TASMenu_MenuActivate); + this.TASMenu.MenuDeactivate += new System.EventHandler(this.TASMenu_MenuDeactivate); + // + // FileSubMenu + // + this.FileSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.NewTASMenuItem, + this.NewFromSubMenu, + this.OpenTASMenuItem, + this.SaveTASMenuItem, + this.SaveAsTASMenuItem, + this.SaveBackupMenuItem, + this.SaveBk2BackupMenuItem, + this.RecentSubMenu, + this.toolStripSeparator1, + this.saveSelectionToMacroToolStripMenuItem, + this.placeMacroAtSelectionToolStripMenuItem, + this.recentMacrosToolStripMenuItem, + this.toolStripSeparator20, + this.ToBk2MenuItem}); + this.FileSubMenu.Text = "&File"; + this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened); + // + // NewTASMenuItem + // + this.NewTASMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); + this.NewTASMenuItem.Text = "&New"; + this.NewTASMenuItem.Click += new System.EventHandler(this.NewTasMenuItem_Click); + // + // NewFromSubMenu + // + this.NewFromSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.NewFromNowMenuItem, + this.NewFromCurrentSaveRamMenuItem}); + this.NewFromSubMenu.Text = "New From"; + this.NewFromSubMenu.DropDownOpened += new System.EventHandler(this.NewFromSubMenu_DropDownOpened); + // + // NewFromNowMenuItem + // + this.NewFromNowMenuItem.Text = "&Now"; + this.NewFromNowMenuItem.Click += new System.EventHandler(this.StartNewProjectFromNowMenuItem_Click); + // + // NewFromCurrentSaveRamMenuItem + // + this.NewFromCurrentSaveRamMenuItem.Text = "&Current SaveRam"; + this.NewFromCurrentSaveRamMenuItem.Click += new System.EventHandler(this.StartANewProjectFromSaveRamMenuItem_Click); + // + // OpenTASMenuItem + // + this.OpenTASMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); + this.OpenTASMenuItem.Text = "&Open"; + this.OpenTASMenuItem.Click += new System.EventHandler(this.OpenTasMenuItem_Click); + // + // SaveTASMenuItem + // + this.SaveTASMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); + this.SaveTASMenuItem.Text = "&Save"; + this.SaveTASMenuItem.Click += new System.EventHandler(this.SaveTasMenuItem_Click); + // + // SaveAsTASMenuItem + // + this.SaveAsTASMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) + | System.Windows.Forms.Keys.S))); + this.SaveAsTASMenuItem.Text = "Save As"; + this.SaveAsTASMenuItem.Click += new System.EventHandler(this.SaveAsTasMenuItem_Click); + // + // SaveBackupMenuItem + // + this.SaveBackupMenuItem.Text = "Save Backup"; + this.SaveBackupMenuItem.Click += new System.EventHandler(this.SaveBackupMenuItem_Click); + // + // SaveBk2BackupMenuItem + // + this.SaveBk2BackupMenuItem.Text = "Save Bk2 Backup"; + this.SaveBk2BackupMenuItem.Click += new System.EventHandler(this.SaveBk2BackupMenuItem_Click); + // + // RecentSubMenu + // + this.RecentSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripSeparator3}); + this.RecentSubMenu.Text = "Recent"; + this.RecentSubMenu.DropDownOpened += new System.EventHandler(this.RecentSubMenu_DropDownOpened); + // + // saveSelectionToMacroToolStripMenuItem + // + this.saveSelectionToMacroToolStripMenuItem.Text = "Save Selection to Macro"; + this.saveSelectionToMacroToolStripMenuItem.Click += new System.EventHandler(this.SaveSelectionToMacroMenuItem_Click); + // + // placeMacroAtSelectionToolStripMenuItem + // + this.placeMacroAtSelectionToolStripMenuItem.Text = "Place Macro at Selection"; + this.placeMacroAtSelectionToolStripMenuItem.Click += new System.EventHandler(this.PlaceMacroAtSelectionMenuItem_Click); + // + // recentMacrosToolStripMenuItem + // + this.recentMacrosToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripSeparator22}); + this.recentMacrosToolStripMenuItem.Text = "Recent Macros"; + this.recentMacrosToolStripMenuItem.DropDownOpened += new System.EventHandler(this.RecentMacrosMenuItem_DropDownOpened); + // + // ToBk2MenuItem + // + this.ToBk2MenuItem.Text = "&Export to Bk2"; + this.ToBk2MenuItem.Click += new System.EventHandler(this.ToBk2MenuItem_Click); + // + // EditSubMenu + // + this.EditSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.UndoMenuItem, + this.RedoMenuItem, + this.showUndoHistoryToolStripMenuItem, + this.SelectionUndoMenuItem, + this.SelectionRedoMenuItem, + this.toolStripSeparator5, + this.DeselectMenuItem, + this.SelectBetweenMarkersMenuItem, + this.SelectAllMenuItem, + this.ReselectClipboardMenuItem, + this.toolStripSeparator7, + this.CopyMenuItem, + this.PasteMenuItem, + this.PasteInsertMenuItem, + this.CutMenuItem, + this.toolStripSeparator8, + this.ClearFramesMenuItem, + this.DeleteFramesMenuItem, + this.InsertFrameMenuItem, + this.InsertNumFramesMenuItem, + this.CloneFramesMenuItem, + this.CloneFramesXTimesMenuItem, + this.toolStripSeparator6, + this.TruncateMenuItem, + this.ClearGreenzoneMenuItem, + this.GreenzoneICheckSeparator, + this.StateHistoryIntegrityCheckMenuItem}); + this.EditSubMenu.Text = "&Edit"; + this.EditSubMenu.DropDownOpened += new System.EventHandler(this.EditSubMenu_DropDownOpened); + // + // UndoMenuItem + // + this.UndoMenuItem.Text = "&Undo"; + this.UndoMenuItem.Click += new System.EventHandler(this.UndoMenuItem_Click); + // + // RedoMenuItem + // + this.RedoMenuItem.Enabled = false; + this.RedoMenuItem.Text = "&Redo"; + this.RedoMenuItem.Click += new System.EventHandler(this.RedoMenuItem_Click); + // + // showUndoHistoryToolStripMenuItem + // + this.showUndoHistoryToolStripMenuItem.Text = "Show Undo History"; + this.showUndoHistoryToolStripMenuItem.Click += new System.EventHandler(this.ShowUndoHistoryMenuItem_Click); + // + // SelectionUndoMenuItem + // + this.SelectionUndoMenuItem.Enabled = false; + this.SelectionUndoMenuItem.Text = "Selection Undo"; + // + // SelectionRedoMenuItem + // + this.SelectionRedoMenuItem.Enabled = false; + this.SelectionRedoMenuItem.Text = "Selection Redo"; + // + // DeselectMenuItem + // + this.DeselectMenuItem.Text = "Deselect"; + this.DeselectMenuItem.Click += new System.EventHandler(this.DeselectMenuItem_Click); + // + // SelectBetweenMarkersMenuItem + // + this.SelectBetweenMarkersMenuItem.Text = "Select between Markers"; + this.SelectBetweenMarkersMenuItem.Click += new System.EventHandler(this.SelectBetweenMarkersMenuItem_Click); + // + // SelectAllMenuItem + // + this.SelectAllMenuItem.ShortcutKeyDisplayString = ""; + this.SelectAllMenuItem.Text = "Select &All"; + this.SelectAllMenuItem.Click += new System.EventHandler(this.SelectAllMenuItem_Click); + // + // ReselectClipboardMenuItem + // + this.ReselectClipboardMenuItem.Text = "Reselect Clipboard"; + this.ReselectClipboardMenuItem.Click += new System.EventHandler(this.ReselectClipboardMenuItem_Click); + // + // CopyMenuItem + // + this.CopyMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); + this.CopyMenuItem.Text = "Copy"; + this.CopyMenuItem.Click += new System.EventHandler(this.CopyMenuItem_Click); + // + // PasteMenuItem + // + this.PasteMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); + this.PasteMenuItem.Text = "&Paste"; + this.PasteMenuItem.Click += new System.EventHandler(this.PasteMenuItem_Click); + // + // PasteInsertMenuItem + // + this.PasteInsertMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) + | System.Windows.Forms.Keys.V))); + this.PasteInsertMenuItem.Text = "&Paste Insert"; + this.PasteInsertMenuItem.Click += new System.EventHandler(this.PasteInsertMenuItem_Click); + // + // CutMenuItem + // + this.CutMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X))); + this.CutMenuItem.Text = "&Cut"; + this.CutMenuItem.Click += new System.EventHandler(this.CutMenuItem_Click); + // + // ClearFramesMenuItem + // + this.ClearFramesMenuItem.ShortcutKeyDisplayString = ""; + this.ClearFramesMenuItem.Text = "Clear"; + this.ClearFramesMenuItem.Click += new System.EventHandler(this.ClearFramesMenuItem_Click); + // + // InsertFrameMenuItem + // + this.InsertFrameMenuItem.Text = "&Insert"; + this.InsertFrameMenuItem.Click += new System.EventHandler(this.InsertFrameMenuItem_Click); + // + // DeleteFramesMenuItem + // + this.DeleteFramesMenuItem.Text = "&Delete"; + this.DeleteFramesMenuItem.Click += new System.EventHandler(this.DeleteFramesMenuItem_Click); + // + // CloneFramesMenuItem + // + this.CloneFramesMenuItem.Text = "&Clone"; + this.CloneFramesMenuItem.Click += new System.EventHandler(this.CloneFramesMenuItem_Click); + // + // CloneFramesXTimesMenuItem + // + this.CloneFramesXTimesMenuItem.Text = "Clone # Times"; + this.CloneFramesXTimesMenuItem.Click += new System.EventHandler(this.CloneFramesXTimesMenuItem_Click); + // + // InsertNumFramesMenuItem + // + this.InsertNumFramesMenuItem.ShortcutKeyDisplayString = ""; + this.InsertNumFramesMenuItem.Text = "Insert # of Frames"; + this.InsertNumFramesMenuItem.Click += new System.EventHandler(this.InsertNumFramesMenuItem_Click); + // + // TruncateMenuItem + // + this.TruncateMenuItem.Text = "&Truncate Movie"; + this.TruncateMenuItem.Click += new System.EventHandler(this.TruncateMenuItem_Click); + // + // ClearGreenzoneMenuItem + // + this.ClearGreenzoneMenuItem.Text = "&Clear Savestate History"; + this.ClearGreenzoneMenuItem.Click += new System.EventHandler(this.ClearGreenzoneMenuItem_Click); + // + // StateHistoryIntegrityCheckMenuItem + // + this.StateHistoryIntegrityCheckMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) + | System.Windows.Forms.Keys.I))); + this.StateHistoryIntegrityCheckMenuItem.Text = "State History Integrity Check"; + this.StateHistoryIntegrityCheckMenuItem.Click += new System.EventHandler(this.StateHistoryIntegrityCheckMenuItem_Click); + // + // ConfigSubMenu + // + this.ConfigSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SetMaxUndoLevelsMenuItem, + this.CopyIncludesFrameNoMenuItem, + this.toolStripSeparator26, + this.autosaveToolStripMenuItem, + this.BackupPerFileSaveMenuItem, + this.toolStripSeparator9, + this.AutoadjustInputMenuItem, + this.applyPatternToPaintedInputToolStripMenuItem, + this.onlyOnAutoFireColumnsToolStripMenuItem, + this.SingleClickAxisEditMenuItem, + this.UseInputKeysItem, + this.toolStripSeparator4, + this.BindMarkersToInputMenuItem, + this.OldControlSchemeForBranchesMenuItem, + this.LoadBranchOnDoubleclickMenuItem, + this.OsdInBranchScreenshotsMenuItem, + this.toolStripSeparator14, + this.AutopauseAtEndOfMovieMenuItem, + this.sepToolStripMenuItem, + this.autoHoldFireToolStripMenuItem, + this.SetFontMenuItem}); + this.ConfigSubMenu.Text = "&Config"; + this.ConfigSubMenu.DropDownOpened += new System.EventHandler(this.ConfigSubMenu_DropDownOpened); + // + // SetMaxUndoLevelsMenuItem + // + this.SetMaxUndoLevelsMenuItem.Text = "Set max Undo Levels"; + this.SetMaxUndoLevelsMenuItem.Click += new System.EventHandler(this.SetMaxUndoLevelsMenuItem_Click); + // + // CopyIncludesFrameNoMenuItem + // + this.CopyIncludesFrameNoMenuItem.Text = "Include Frame # When Copying Input"; + this.CopyIncludesFrameNoMenuItem.Click += new System.EventHandler(this.CopyIncludesFrameNoMenuItem_Click); + // + // autosaveToolStripMenuItem + // + this.autosaveToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SetAutosaveIntervalMenuItem, + this.AutosaveAsBk2MenuItem, + this.AutosaveAsBackupFileMenuItem}); + this.autosaveToolStripMenuItem.Text = "Autosave"; + // + // SetAutosaveIntervalMenuItem + // + this.SetAutosaveIntervalMenuItem.Text = "Set Autosave Interval"; + this.SetAutosaveIntervalMenuItem.Click += new System.EventHandler(this.SetAutosaveIntervalMenuItem_Click); + // + // AutosaveAsBk2MenuItem + // + this.AutosaveAsBk2MenuItem.Text = "Autosave As Bk2"; + this.AutosaveAsBk2MenuItem.Click += new System.EventHandler(this.AutosaveAsBk2MenuItem_Click); + // + // AutosaveAsBackupFileMenuItem + // + this.AutosaveAsBackupFileMenuItem.Text = "Autosave As Backup File"; + this.AutosaveAsBackupFileMenuItem.Click += new System.EventHandler(this.AutosaveAsBackupFileMenuItem_Click); + // + // BackupPerFileSaveMenuItem + // + this.BackupPerFileSaveMenuItem.Text = "Backup Per File Save"; + this.BackupPerFileSaveMenuItem.Click += new System.EventHandler(this.BackupPerFileSaveMenuItem_Click); + // + // AutoadjustInputMenuItem + // + this.AutoadjustInputMenuItem.CheckOnClick = true; + this.AutoadjustInputMenuItem.Text = "Auto-adjust Input according to Lag"; + this.AutoadjustInputMenuItem.Click += new System.EventHandler(this.AutoadjustInputMenuItem_Click); + // + // applyPatternToPaintedInputToolStripMenuItem + // + this.applyPatternToPaintedInputToolStripMenuItem.CheckOnClick = true; + this.applyPatternToPaintedInputToolStripMenuItem.Text = "Apply Pattern to painted input"; + this.applyPatternToPaintedInputToolStripMenuItem.CheckedChanged += new System.EventHandler(this.ApplyPatternToPaintedInputMenuItem_CheckedChanged); + // + // onlyOnAutoFireColumnsToolStripMenuItem + // + this.onlyOnAutoFireColumnsToolStripMenuItem.Checked = true; + this.onlyOnAutoFireColumnsToolStripMenuItem.CheckOnClick = true; + this.onlyOnAutoFireColumnsToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.onlyOnAutoFireColumnsToolStripMenuItem.Enabled = false; + this.onlyOnAutoFireColumnsToolStripMenuItem.Text = "Only on Auto-Fire columns"; + // + // SingleClickAxisEditMenuItem + // + this.SingleClickAxisEditMenuItem.Enabled = false; + this.SingleClickAxisEditMenuItem.Text = "Enter Axis Edit mode by single click"; + this.SingleClickAxisEditMenuItem.Visible = false; + this.SingleClickAxisEditMenuItem.Click += new System.EventHandler(this.SingleClickAxisEditMenuItem_Click); + // + // UseInputKeysItem + // + this.UseInputKeysItem.Enabled = false; + this.UseInputKeysItem.Text = "Use Input keys for Column Set"; + this.UseInputKeysItem.Visible = false; + // + // BindMarkersToInputMenuItem + // + this.BindMarkersToInputMenuItem.Checked = true; + this.BindMarkersToInputMenuItem.CheckOnClick = true; + this.BindMarkersToInputMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.BindMarkersToInputMenuItem.Text = "Bind Markers to Input"; + this.BindMarkersToInputMenuItem.Click += new System.EventHandler(this.BindMarkersToInputMenuItem_Click); + // + // OldControlSchemeForBranchesMenuItem + // + this.OldControlSchemeForBranchesMenuItem.Text = "Old control scheme for Branches"; + this.OldControlSchemeForBranchesMenuItem.Click += new System.EventHandler(this.OldControlSchemeForBranchesMenuItem_Click); + // + // LoadBranchOnDoubleclickMenuItem + // + this.LoadBranchOnDoubleclickMenuItem.Text = "Load Branch on double-click"; + this.LoadBranchOnDoubleclickMenuItem.Click += new System.EventHandler(this.LoadBranchOnDoubleClickMenuItem_Click); + // + // OsdInBranchScreenshotsMenuItem + // + this.OsdInBranchScreenshotsMenuItem.Enabled = false; + this.OsdInBranchScreenshotsMenuItem.Text = "OSD in Branch screenshots"; + this.OsdInBranchScreenshotsMenuItem.Visible = false; + // + // AutopauseAtEndOfMovieMenuItem + // + this.AutopauseAtEndOfMovieMenuItem.Text = "Autopause at end of Movie"; + this.AutopauseAtEndOfMovieMenuItem.Click += new System.EventHandler(this.AutoPauseAtEndMenuItem_Click); + // + // autoHoldFireToolStripMenuItem + // + this.autoHoldFireToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.keepSetPatternsToolStripMenuItem, + this.sepToolStripMenuItem1, + this.autoHoldToolStripMenuItem, + this.autoFireToolStripMenuItem, + this.customPatternToolStripMenuItem, + this.setpToolStripMenuItem, + this.setCustomsToolStripMenuItem}); + this.autoHoldFireToolStripMenuItem.Text = "Auto Hold/Fire"; + // + // keepSetPatternsToolStripMenuItem + // + this.keepSetPatternsToolStripMenuItem.CheckOnClick = true; + this.keepSetPatternsToolStripMenuItem.Text = "Keep set patterns"; + // + // autoHoldToolStripMenuItem + // + this.autoHoldToolStripMenuItem.Checked = true; + this.autoHoldToolStripMenuItem.CheckOnClick = true; + this.autoHoldToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.autoHoldToolStripMenuItem.Text = "Auto-Hold"; + this.autoHoldToolStripMenuItem.CheckedChanged += new System.EventHandler(this.AutoHoldMenuItem_CheckedChanged); + // + // autoFireToolStripMenuItem + // + this.autoFireToolStripMenuItem.CheckOnClick = true; + this.autoFireToolStripMenuItem.Text = "Auto-Fire"; + this.autoFireToolStripMenuItem.CheckedChanged += new System.EventHandler(this.AutoFireMenuItem_CheckedChanged); + // + // customPatternToolStripMenuItem + // + this.customPatternToolStripMenuItem.CheckOnClick = true; + this.customPatternToolStripMenuItem.Text = "Custom Pattern"; + this.customPatternToolStripMenuItem.CheckedChanged += new System.EventHandler(this.CustomPatternMenuItem_CheckedChanged); + // + // setCustomsToolStripMenuItem + // + this.setCustomsToolStripMenuItem.Text = "Set Customs..."; + this.setCustomsToolStripMenuItem.Click += new System.EventHandler(this.SetCustomsMenuItem_Click); + // + // SetFontMenuItem + // + this.SetFontMenuItem.Text = "Set Font"; + this.SetFontMenuItem.Click += new System.EventHandler(this.SetFontMenuItem_Click); + // + // MetaSubMenu + // + this.MetaSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.HeaderMenuItem, + this.StateHistorySettingsMenuItem, + this.CommentsMenuItem, + this.SubtitlesMenuItem, + this.toolStripSeparator21, + this.DefaultStateSettingsMenuItem}); + this.MetaSubMenu.Text = "&Metadata"; + // + // HeaderMenuItem + // + this.HeaderMenuItem.Text = "&Header..."; + this.HeaderMenuItem.Click += new System.EventHandler(this.HeaderMenuItem_Click); + // + // StateHistorySettingsMenuItem + // + this.StateHistorySettingsMenuItem.Text = "&Savestate History Settings..."; + this.StateHistorySettingsMenuItem.Click += new System.EventHandler(this.StateHistorySettingsMenuItem_Click); + // + // CommentsMenuItem + // + this.CommentsMenuItem.Text = "&Comments..."; + this.CommentsMenuItem.Click += new System.EventHandler(this.CommentsMenuItem_Click); + // + // SubtitlesMenuItem + // + this.SubtitlesMenuItem.Text = "&Subtitles..."; + this.SubtitlesMenuItem.Click += new System.EventHandler(this.SubtitlesMenuItem_Click); + // + // DefaultStateSettingsMenuItem + // + this.DefaultStateSettingsMenuItem.Text = "&Default State History Settings..."; + this.DefaultStateSettingsMenuItem.Click += new System.EventHandler(this.DefaultStateSettingsMenuItem_Click); + // + // SettingsSubMenu + // + this.SettingsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.RotateMenuItem, + this.HideLagFramesSubMenu, + this.iconsToolStripMenuItem, + this.ColorSettingsMenuItem, + this.toolStripSeparator23, + this.followCursorToolStripMenuItem, + this.toolStripSeparator25, + this.wheelScrollSpeedToolStripMenuItem}); + this.SettingsSubMenu.Text = "&Settings"; + this.SettingsSubMenu.DropDownOpened += new System.EventHandler(this.SettingsSubMenu_DropDownOpened); + // + // RotateMenuItem + // + this.RotateMenuItem.Text = "Rotate"; + this.RotateMenuItem.Click += new System.EventHandler(this.RotateMenuItem_Click); + // + // HideLagFramesSubMenu + // + this.HideLagFramesSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.HideLagFrames0, + this.HideLagFrames1, + this.HideLagFrames2, + this.HideLagFrames3, + this.toolStripSeparator12, + this.hideWasLagFramesToolStripMenuItem}); + this.HideLagFramesSubMenu.Text = "Hide Lag Frames"; + this.HideLagFramesSubMenu.DropDownOpened += new System.EventHandler(this.HideLagFramesSubMenu_DropDownOpened); + // + // HideLagFrames0 + // + this.HideLagFrames0.Checked = true; + this.HideLagFrames0.CheckOnClick = true; + this.HideLagFrames0.CheckState = System.Windows.Forms.CheckState.Checked; + this.HideLagFrames0.Tag = 0; + this.HideLagFrames0.Text = "Don\'t Hide"; + this.HideLagFrames0.Click += new System.EventHandler(this.HideLagFramesX_Click); + // + // HideLagFrames1 + // + this.HideLagFrames1.CheckOnClick = true; + this.HideLagFrames1.Tag = 1; + this.HideLagFrames1.Text = "1 (30 fps)"; + this.HideLagFrames1.Click += new System.EventHandler(this.HideLagFramesX_Click); + // + // HideLagFrames2 + // + this.HideLagFrames2.Tag = 2; + this.HideLagFrames2.Text = "2 (20 fps)"; + this.HideLagFrames2.Click += new System.EventHandler(this.HideLagFramesX_Click); + // + // HideLagFrames3 + // + this.HideLagFrames3.CheckOnClick = true; + this.HideLagFrames3.Tag = 3; + this.HideLagFrames3.Text = "3 (15fps)"; + this.HideLagFrames3.Click += new System.EventHandler(this.HideLagFramesX_Click); + // + // hideWasLagFramesToolStripMenuItem + // + this.hideWasLagFramesToolStripMenuItem.CheckOnClick = true; + this.hideWasLagFramesToolStripMenuItem.Text = "Hide WasLag Frames"; + this.hideWasLagFramesToolStripMenuItem.Click += new System.EventHandler(this.HideWasLagFramesMenuItem_Click); + // + // iconsToolStripMenuItem + // + this.iconsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.DenoteStatesWithIconsToolStripMenuItem, + this.DenoteStatesWithBGColorToolStripMenuItem, + this.DenoteMarkersWithIconsToolStripMenuItem, + this.DenoteMarkersWithBGColorToolStripMenuItem}); + this.iconsToolStripMenuItem.Text = "Icons"; + this.iconsToolStripMenuItem.DropDownOpened += new System.EventHandler(this.IconsMenuItem_DropDownOpened); + // + // DenoteStatesWithIconsToolStripMenuItem + // + this.DenoteStatesWithIconsToolStripMenuItem.CheckOnClick = true; + this.DenoteStatesWithIconsToolStripMenuItem.Text = "Denote States With Icons"; + this.DenoteStatesWithIconsToolStripMenuItem.Click += new System.EventHandler(this.DenoteStatesWithIconsToolStripMenuItem_Click); + // + // DenoteStatesWithBGColorToolStripMenuItem + // + this.DenoteStatesWithBGColorToolStripMenuItem.CheckOnClick = true; + this.DenoteStatesWithBGColorToolStripMenuItem.Text = "Denote States With BG Color"; + this.DenoteStatesWithBGColorToolStripMenuItem.Click += new System.EventHandler(this.DenoteStatesWithBGColorToolStripMenuItem_Click); + // + // DenoteMarkersWithIconsToolStripMenuItem + // + this.DenoteMarkersWithIconsToolStripMenuItem.CheckOnClick = true; + this.DenoteMarkersWithIconsToolStripMenuItem.Text = "Denote Markers With Icons"; + this.DenoteMarkersWithIconsToolStripMenuItem.Click += new System.EventHandler(this.DenoteMarkersWithIconsToolStripMenuItem_Click); + // + // DenoteMarkersWithBGColorToolStripMenuItem + // + this.DenoteMarkersWithBGColorToolStripMenuItem.CheckOnClick = true; + this.DenoteMarkersWithBGColorToolStripMenuItem.Text = "Denote Markers With BG Color"; + this.DenoteMarkersWithBGColorToolStripMenuItem.Click += new System.EventHandler(this.DenoteMarkersWithBGColorToolStripMenuItem_Click); + // + // ColorSettingsMenuItem + // + this.ColorSettingsMenuItem.Text = "Edit TAStudio Colors..."; + this.ColorSettingsMenuItem.Click += new System.EventHandler(this.ColorSettingsMenuItem_Click); + // + // followCursorToolStripMenuItem + // + this.followCursorToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.alwaysScrollToolStripMenuItem, + this.toolStripSeparator24, + this.scrollToViewToolStripMenuItem, + this.scrollToTopToolStripMenuItem, + this.scrollToBottomToolStripMenuItem, + this.scrollToCenterToolStripMenuItem}); + this.followCursorToolStripMenuItem.Text = "Follow Cursor"; + this.followCursorToolStripMenuItem.DropDownOpened += new System.EventHandler(this.FollowCursorMenuItem_DropDownOpened); + // + // alwaysScrollToolStripMenuItem + // + this.alwaysScrollToolStripMenuItem.CheckOnClick = true; + this.alwaysScrollToolStripMenuItem.Text = "Always Scroll"; + this.alwaysScrollToolStripMenuItem.Click += new System.EventHandler(this.AlwaysScrollMenuItem_Click); + // + // scrollToViewToolStripMenuItem + // + this.scrollToViewToolStripMenuItem.Checked = true; + this.scrollToViewToolStripMenuItem.CheckOnClick = true; + this.scrollToViewToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.scrollToViewToolStripMenuItem.Text = "Scroll to View"; + this.scrollToViewToolStripMenuItem.Click += new System.EventHandler(this.ScrollToViewMenuItem_Click); + // + // scrollToTopToolStripMenuItem + // + this.scrollToTopToolStripMenuItem.CheckOnClick = true; + this.scrollToTopToolStripMenuItem.Text = "Scroll to Top"; + this.scrollToTopToolStripMenuItem.Click += new System.EventHandler(this.ScrollToTopMenuItem_Click); + // + // scrollToBottomToolStripMenuItem + // + this.scrollToBottomToolStripMenuItem.CheckOnClick = true; + this.scrollToBottomToolStripMenuItem.Text = "Scroll to Bottom"; + this.scrollToBottomToolStripMenuItem.Click += new System.EventHandler(this.ScrollToBottomMenuItem_Click); + // + // scrollToCenterToolStripMenuItem + // + this.scrollToCenterToolStripMenuItem.CheckOnClick = true; + this.scrollToCenterToolStripMenuItem.Text = "Scroll to Center"; + this.scrollToCenterToolStripMenuItem.Click += new System.EventHandler(this.ScrollToCenterMenuItem_Click); + // + // wheelScrollSpeedToolStripMenuItem + // + this.wheelScrollSpeedToolStripMenuItem.Text = "Wheel Scroll Speed..."; + this.wheelScrollSpeedToolStripMenuItem.Click += new System.EventHandler(this.WheelScrollSpeedMenuItem_Click); + // + // ColumnsSubMenu + // + this.ColumnsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripSeparator19}); + this.ColumnsSubMenu.Text = "&Columns"; + // + // HelpSubMenu + // + this.HelpSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.TASEditorManualOnlineMenuItem, + this.ForumThreadMenuItem, + this.aboutToolStripMenuItem, + this.toolStripSeparator10, + this.EnableTooltipsMenuItem}); + this.HelpSubMenu.Text = "&Help"; + // + // TASEditorManualOnlineMenuItem + // + this.TASEditorManualOnlineMenuItem.Text = "TAS Editor Manual Online..."; + this.TASEditorManualOnlineMenuItem.Click += new System.EventHandler(this.TASEditorManualOnlineMenuItem_Click); + // + // ForumThreadMenuItem + // + this.ForumThreadMenuItem.Text = "Forum Thread..."; + this.ForumThreadMenuItem.Click += new System.EventHandler(this.ForumThreadMenuItem_Click); + // + // aboutToolStripMenuItem + // + this.aboutToolStripMenuItem.Enabled = false; + this.aboutToolStripMenuItem.Text = "&About"; + // + // EnableTooltipsMenuItem + // + this.EnableTooltipsMenuItem.Enabled = false; + this.EnableTooltipsMenuItem.Text = "&Enable Tooltips"; + // + // TasView + // + this.TasView.AllowColumnReorder = false; + this.TasView.AllowColumnResize = false; + this.TasView.AllowMassNavigationShortcuts = false; + this.TasView.AllowRightClickSelection = false; + this.TasView.AlwaysScroll = false; + this.TasView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.TasView.CellHeightPadding = 0; + this.TasView.ChangeSelectionWhenPaging = false; + this.TasView.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.TasView.FullRowSelect = true; + this.TasView.HorizontalOrientation = false; + this.TasView.InputPaintingMode = true; + this.TasView.LetKeysModifySelection = true; + this.TasView.Location = new System.Drawing.Point(3, 0); + this.TasView.Name = "TasView"; + this.TasView.Rotatable = true; + this.TasView.RowCount = 0; + this.TasView.ScrollSpeed = 1; + this.TasView.Size = new System.Drawing.Size(289, 528); + this.TasView.TabIndex = 1; + this.TasView.ColumnClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnClick); + this.TasView.ColumnRightClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnRightClick); + this.TasView.SelectedIndexChanged += new System.EventHandler(this.TasView_SelectedIndexChanged); + this.TasView.RightMouseScrolled += new BizHawk.Client.EmuHawk.InputRoll.RightMouseScrollEventHandler(this.TasView_MouseWheel); + this.TasView.ColumnReordered += new BizHawk.Client.EmuHawk.InputRoll.ColumnReorderedEventHandler(this.TasView_ColumnReordered); + this.TasView.CellDropped += new BizHawk.Client.EmuHawk.InputRoll.CellDroppedEvent(this.TasView_CellDropped); + this.TasView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TasView_KeyDown); + this.TasView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseDoubleClick); + this.TasView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseDown); + this.TasView.MouseEnter += new System.EventHandler(this.TasView_MouseEnter); + this.TasView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseMove); + this.TasView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseUp); + // + // TasStatusStrip + // + this.TasStatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MessageStatusLabel, + this.ProgressBar, + this.toolStripStatusLabel2, + this.SplicerStatusLabel}); + this.TasStatusStrip.Location = new System.Drawing.Point(0, 554); + this.TasStatusStrip.Name = "TasStatusStrip"; + this.TasStatusStrip.TabIndex = 4; + // + // MessageStatusLabel + // + this.MessageStatusLabel.Name = "MessageStatusLabel"; + this.MessageStatusLabel.Size = new System.Drawing.Size(103, 17); + this.MessageStatusLabel.Text = "TAStudio engaged"; + // + // ProgressBar + // + this.ProgressBar.Name = "ProgressBar"; + this.ProgressBar.Size = new System.Drawing.Size(100, 16); + // + // toolStripStatusLabel2 + // + this.toolStripStatusLabel2.Name = "toolStripStatusLabel2"; + this.toolStripStatusLabel2.Size = new System.Drawing.Size(269, 17); + this.toolStripStatusLabel2.Spring = true; + // + // SplicerStatusLabel + // + this.SplicerStatusLabel.Name = "SplicerStatusLabel"; + this.SplicerStatusLabel.Padding = new System.Windows.Forms.Padding(20, 0, 0, 0); + this.SplicerStatusLabel.Size = new System.Drawing.Size(20, 17); + // + // TasPlaybackBox + // + this.TasPlaybackBoxMPR.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.TasPlaybackBoxMPR.Location = new System.Drawing.Point(4, 4); + this.TasPlaybackBoxMPR.Name = "TasPlaybackBox"; + this.TasPlaybackBoxMPR.Size = new System.Drawing.Size(200, 108); + this.TasPlaybackBoxMPR.TabIndex = 5; + this.TasPlaybackBoxMPR.TastudioMPR = null; + // + // MarkerControl + // + this.MarkerControlMPR.Dock = System.Windows.Forms.DockStyle.Fill; + this.MarkerControlMPR.Location = new System.Drawing.Point(0, 0); + this.MarkerControlMPR.Name = "MarkerControl"; + this.MarkerControlMPR.Size = new System.Drawing.Size(200, 225); + this.MarkerControlMPR.TabIndex = 6; + this.MarkerControlMPR.TastudioMPR = null; + // + // RightClickMenu + // + this.RightClickMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SetMarkersContextMenuItem, + this.SetMarkerWithTextContextMenuItem, + this.RemoveMarkersContextMenuItem, + this.toolStripSeparator15, + this.DeselectContextMenuItem, + this.SelectBetweenMarkersContextMenuItem, + this.toolStripSeparator16, + this.UngreenzoneContextMenuItem, + this.CancelSeekContextMenuItem, + this.toolStripSeparator17, + this.copyToolStripMenuItem, + this.pasteToolStripMenuItem, + this.pasteInsertToolStripMenuItem, + this.cutToolStripMenuItem, + this.separateToolStripMenuItem, + this.ClearContextMenuItem, + this.DeleteFramesContextMenuItem, + this.InsertFrameContextMenuItem, + this.InsertNumFramesContextMenuItem, + this.CloneContextMenuItem, + this.CloneXTimesContextMenuItem, + this.toolStripSeparator18, + this.TruncateContextMenuItem, + this.BranchContextMenuItem, + this.StartFromNowSeparator, + this.StartNewProjectFromNowMenuItem, + this.StartANewProjectFromSaveRamMenuItem}); + this.RightClickMenu.Name = "RightClickMenu"; + this.RightClickMenu.Size = new System.Drawing.Size(253, 524); + this.RightClickMenu.Opened += new System.EventHandler(this.RightClickMenu_Opened); + // + // SetMarkersContextMenuItem + // + this.SetMarkersContextMenuItem.Text = "Set Markers"; + this.SetMarkersContextMenuItem.Click += new System.EventHandler(this.SetMarkersMenuItem_Click); + // + // SetMarkerWithTextContextMenuItem + // + this.SetMarkerWithTextContextMenuItem.Text = "Set Marker with Text"; + this.SetMarkerWithTextContextMenuItem.Click += new System.EventHandler(this.SetMarkerWithTextMenuItem_Click); + // + // RemoveMarkersContextMenuItem + // + this.RemoveMarkersContextMenuItem.Text = "Remove Markers"; + this.RemoveMarkersContextMenuItem.Click += new System.EventHandler(this.RemoveMarkersMenuItem_Click); + // + // DeselectContextMenuItem + // + this.DeselectContextMenuItem.Text = "Deselect"; + this.DeselectContextMenuItem.Click += new System.EventHandler(this.DeselectMenuItem_Click); + // + // SelectBetweenMarkersContextMenuItem + // + this.SelectBetweenMarkersContextMenuItem.Text = "Select between Markers"; + this.SelectBetweenMarkersContextMenuItem.Click += new System.EventHandler(this.SelectBetweenMarkersMenuItem_Click); + // + // UngreenzoneContextMenuItem + // + this.UngreenzoneContextMenuItem.Text = "Clear Greenzone"; + this.UngreenzoneContextMenuItem.Click += new System.EventHandler(this.ClearGreenzoneMenuItem_Click); + // + // CancelSeekContextMenuItem + // + this.CancelSeekContextMenuItem.Text = "Cancel Seek"; + this.CancelSeekContextMenuItem.Click += new System.EventHandler(this.CancelSeekContextMenuItem_Click); + // + // copyToolStripMenuItem + // + this.copyToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+C"; + this.copyToolStripMenuItem.Text = "Copy"; + this.copyToolStripMenuItem.Click += new System.EventHandler(this.CopyMenuItem_Click); + // + // pasteToolStripMenuItem + // + this.pasteToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+V"; + this.pasteToolStripMenuItem.Text = "Paste"; + this.pasteToolStripMenuItem.Click += new System.EventHandler(this.PasteMenuItem_Click); + // + // pasteInsertToolStripMenuItem + // + this.pasteInsertToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+Shift+V"; + this.pasteInsertToolStripMenuItem.Text = "Paste Insert"; + this.pasteInsertToolStripMenuItem.Click += new System.EventHandler(this.PasteInsertMenuItem_Click); + // + // cutToolStripMenuItem + // + this.cutToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+X"; + this.cutToolStripMenuItem.Text = "Cut"; + this.cutToolStripMenuItem.Click += new System.EventHandler(this.CutMenuItem_Click); + // + // ClearContextMenuItem + // + this.ClearContextMenuItem.Text = "Clear"; + this.ClearContextMenuItem.Click += new System.EventHandler(this.ClearFramesMenuItem_Click); + // + // InsertFrameContextMenuItem + // + this.InsertFrameContextMenuItem.Text = "Insert"; + this.InsertFrameContextMenuItem.Click += new System.EventHandler(this.InsertFrameMenuItem_Click); + // + // DeleteFramesContextMenuItem + // + this.DeleteFramesContextMenuItem.Text = "Delete"; + this.DeleteFramesContextMenuItem.Click += new System.EventHandler(this.DeleteFramesMenuItem_Click); + // + // CloneContextMenuItem + // + this.CloneContextMenuItem.Text = "Clone"; + this.CloneContextMenuItem.Click += new System.EventHandler(this.CloneFramesMenuItem_Click); + // + // CloneXTimesContextMenuItem + // + this.CloneXTimesContextMenuItem.Text = "Clone # Times"; + this.CloneXTimesContextMenuItem.Click += new System.EventHandler(this.CloneFramesXTimesMenuItem_Click); + // + // InsertNumFramesContextMenuItem + // + this.InsertNumFramesContextMenuItem.Text = "Insert # of Frames"; + this.InsertNumFramesContextMenuItem.Click += new System.EventHandler(this.InsertNumFramesMenuItem_Click); + // + // TruncateContextMenuItem + // + this.TruncateContextMenuItem.Text = "Truncate Movie"; + this.TruncateContextMenuItem.Click += new System.EventHandler(this.TruncateMenuItem_Click); + // + // BranchContextMenuItem + // + this.BranchContextMenuItem.Text = "&Branch"; + this.BranchContextMenuItem.Click += new System.EventHandler(this.BranchContextMenuItem_Click); + // + // StartNewProjectFromNowMenuItem + // + this.StartNewProjectFromNowMenuItem.Text = "Start a new project from Now"; + this.StartNewProjectFromNowMenuItem.Click += new System.EventHandler(this.StartNewProjectFromNowMenuItem_Click); + // + // StartANewProjectFromSaveRamMenuItem + // + this.StartANewProjectFromSaveRamMenuItem.Text = "Start a new project from SaveRam"; + this.StartANewProjectFromSaveRamMenuItem.Click += new System.EventHandler(this.StartANewProjectFromSaveRamMenuItem_Click); + // + // BookMarkControl + // + this.BookMarkControlMPR.Dock = System.Windows.Forms.DockStyle.Fill; + this.BookMarkControlMPR.LoadedCallback = null; + this.BookMarkControlMPR.Location = new System.Drawing.Point(0, 0); + this.BookMarkControlMPR.Name = "BookMarkControl"; + this.BookMarkControlMPR.RemovedCallback = null; + this.BookMarkControlMPR.SavedCallback = null; + this.BookMarkControlMPR.Size = new System.Drawing.Size(200, 183); + this.BookMarkControlMPR.TabIndex = 8; + this.BookMarkControlMPR.TastudioMPR = null; + // + // BranchesMarkersSplit + // + this.BranchesMarkersSplit.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.BranchesMarkersSplit.Location = new System.Drawing.Point(4, 116); + this.BranchesMarkersSplit.Name = "BranchesMarkersSplit"; + this.BranchesMarkersSplit.Orientation = System.Windows.Forms.Orientation.Horizontal; + // + // BranchesMarkersSplit.Panel1 + // + this.BranchesMarkersSplit.Panel1.Controls.Add(this.BookMarkControlMPR); + // + // BranchesMarkersSplit.Panel2 + // + this.BranchesMarkersSplit.Panel2.Controls.Add(this.MarkerControlMPR); + this.BranchesMarkersSplit.Size = new System.Drawing.Size(200, 412); + this.BranchesMarkersSplit.SplitterDistance = 183; + this.BranchesMarkersSplit.TabIndex = 9; + this.BranchesMarkersSplit.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.BranchesMarkersSplit_SplitterMoved); + // + // MainVertialSplit + // + this.MainVertialSplit.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.MainVertialSplit.FixedPanel = System.Windows.Forms.FixedPanel.Panel2; + this.MainVertialSplit.Location = new System.Drawing.Point(2, 23); + this.MainVertialSplit.Name = "MainVertialSplit"; + // + // MainVertialSplit.Panel1 + // + this.MainVertialSplit.Panel1.Controls.Add(this.TasView); + // + // MainVertialSplit.Panel2 + // + this.MainVertialSplit.Panel2.Controls.Add(this.TasPlaybackBoxMPR); + this.MainVertialSplit.Panel2.Controls.Add(this.BranchesMarkersSplit); + this.MainVertialSplit.Size = new System.Drawing.Size(507, 528); + this.MainVertialSplit.SplitterDistance = 295; + this.MainVertialSplit.TabIndex = 10; + this.MainVertialSplit.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.MainVerticalSplit_SplitterMoved); + // + // TAStudio + // + this.AllowDrop = true; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(509, 576); + this.Controls.Add(this.MainVertialSplit); + this.Controls.Add(this.TasStatusStrip); + this.Controls.Add(this.TASMenu); + this.KeyPreview = true; + this.MainMenuStrip = this.TASMenu; + this.MinimumSize = new System.Drawing.Size(200, 148); + this.Name = "TAStudio"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Tastudio_Closing); + this.Load += new System.EventHandler(this.Tastudio_Load); + this.DragDrop += new System.Windows.Forms.DragEventHandler(this.TAStudio_DragDrop); + this.DragEnter += new System.Windows.Forms.DragEventHandler(this.DragEnterWrapper); + this.TASMenu.ResumeLayout(false); + this.TASMenu.PerformLayout(); + this.TasStatusStrip.ResumeLayout(false); + this.TasStatusStrip.PerformLayout(); + this.RightClickMenu.ResumeLayout(false); + this.BranchesMarkersSplit.Panel1.ResumeLayout(false); + this.BranchesMarkersSplit.Panel2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.BranchesMarkersSplit)).EndInit(); + this.BranchesMarkersSplit.ResumeLayout(false); + this.MainVertialSplit.Panel1.ResumeLayout(false); + this.MainVertialSplit.Panel2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.MainVertialSplit)).EndInit(); + this.MainVertialSplit.ResumeLayout(false); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private MenuStripEx TASMenu; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx NewTASMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx OpenTASMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveTASMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveAsTASMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx EditSubMenu; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx ConfigSubMenu; + private InputRoll TasView; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx RecentSubMenu; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator3; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx InsertFrameMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator4; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator7; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx CloneFramesMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx CloneFramesXTimesMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx DeleteFramesMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearFramesMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx InsertNumFramesMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SelectAllMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator8; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx TruncateMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx CopyMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx PasteMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx PasteInsertMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx CutMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx UndoMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx RedoMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SelectionUndoMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SelectionRedoMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator5; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx DeselectMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SelectBetweenMarkersMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx ReselectClipboardMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator6; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator9; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx HelpSubMenu; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx EnableTooltipsMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator10; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx aboutToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SetMaxUndoLevelsMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx AutoadjustInputMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx UseInputKeysItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx BindMarkersToInputMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx OldControlSchemeForBranchesMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx OsdInBranchScreenshotsMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator14; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx AutopauseAtEndOfMovieMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SettingsSubMenu; + private StatusStripEx TasStatusStrip; + private System.Windows.Forms.ToolStripStatusLabel MessageStatusLabel; + public PlaybackBoxMPR TasPlaybackBoxMPR; + private System.Windows.Forms.ToolStripStatusLabel SplicerStatusLabel; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx MetaSubMenu; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx HeaderMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx CommentsMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SubtitlesMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx StateHistorySettingsMenuItem; + private MarkerControlMPR MarkerControlMPR; + private System.Windows.Forms.ContextMenuStrip RightClickMenu; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SetMarkersContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx RemoveMarkersContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator15; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx DeselectContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SelectBetweenMarkersContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator16; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx UngreenzoneContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator17; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx DeleteFramesContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx InsertFrameContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx InsertNumFramesContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx CloneContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx CloneXTimesContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator18; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx TruncateContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearGreenzoneMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx GreenzoneICheckSeparator; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx StateHistoryIntegrityCheckMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx ColumnsSubMenu; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator19; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator21; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx DefaultStateSettingsMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx CancelSeekContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx StartFromNowSeparator; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx StartNewProjectFromNowMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx RotateMenuItem; + private System.Windows.Forms.ToolStripProgressBar ProgressBar; + private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel2; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx HideLagFramesSubMenu; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx HideLagFrames3; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx HideLagFrames0; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx HideLagFrames1; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx HideLagFrames2; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx copyToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx pasteToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx separateToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx pasteInsertToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx cutToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx showUndoHistoryToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx sepToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx autoHoldFireToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx keepSetPatternsToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx sepToolStripMenuItem1; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx autoHoldToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx autoFireToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx customPatternToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx setpToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx setCustomsToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator12; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx hideWasLagFramesToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx saveSelectionToMacroToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx placeMacroAtSelectionToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator20; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx ToBk2MenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx recentMacrosToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator22; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator23; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx followCursorToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx alwaysScrollToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator24; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx scrollToViewToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx scrollToTopToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx scrollToBottomToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx scrollToCenterToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx applyPatternToPaintedInputToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx onlyOnAutoFireColumnsToolStripMenuItem; + private BookmarksBranchesBoxMPR BookMarkControlMPR; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx BranchContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator25; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx wheelScrollSpeedToolStripMenuItem; + private System.Windows.Forms.SplitContainer BranchesMarkersSplit; + private System.Windows.Forms.SplitContainer MainVertialSplit; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx StartANewProjectFromSaveRamMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx iconsToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx ColorSettingsMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx DenoteStatesWithIconsToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx DenoteStatesWithBGColorToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx DenoteMarkersWithIconsToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx DenoteMarkersWithBGColorToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx NewFromSubMenu; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx NewFromNowMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx NewFromCurrentSaveRamMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SetMarkerWithTextContextMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator26; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx TASEditorManualOnlineMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx ForumThreadMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx autosaveToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SetAutosaveIntervalMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx AutosaveAsBk2MenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx AutosaveAsBackupFileMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx BackupPerFileSaveMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveBackupMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveBk2BackupMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SingleClickAxisEditMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx LoadBranchOnDoubleclickMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx SetFontMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx CopyIncludesFrameNoMenuItem; + private System.Windows.Forms.ToolTip toolTip1; + } +} \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.IControlMainForm.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.IControlMainForm.cs new file mode 100644 index 00000000000..0629328296b --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.IControlMainForm.cs @@ -0,0 +1,117 @@ +namespace BizHawk.Client.EmuHawk +{ + public partial class TAStudioMPR : IControlMainform + { + private bool _suppressAskSave; + + public bool NamedStatePending { get; set; } + + public bool WantsToControlSavestates => !NamedStatePending; + + public void SaveState() + { + BookMarkControlMPR.UpdateBranchExternal(); + } + + public bool LoadState() + => BookMarkControlMPR.LoadBranchExternal(); + + public void SaveStateAs() + { + // dummy + } + + public bool LoadStateAs() + => false; + + public void SaveQuickSave(int slot) + => BookMarkControlMPR.UpdateBranchExternal(slot - 1); + + public bool LoadQuickSave(int slot) + => BookMarkControlMPR.LoadBranchExternal(slot - 1); + + public bool SelectSlot(int slot) + { + BookMarkControlMPR.SelectBranchExternal(slot - 1); + return false; + } + + public bool PreviousSlot() + { + BookMarkControlMPR.SelectBranchExternal(false); + return false; + } + + public bool NextSlot() + { + BookMarkControlMPR.SelectBranchExternal(true); + return false; + } + + public bool WantsToControlReadOnly => true; + + public void ToggleReadOnly() + { + TastudioToggleReadOnly(); + } + + public bool WantsToControlStopMovie { get; private set; } + + public void StopMovie(bool suppressSave) + { + if (!MainForm.GameIsClosing) + { + Activate(); + _suppressAskSave = suppressSave; + StartNewTasMovie(); + _suppressAskSave = false; + } + } + + public bool WantsToControlRewind { get; private set; } = true; + + public void CaptureRewind() + { + // Do nothing, Tastudio handles this just fine + } + + public bool Rewind() + { + // copy pasted from TasView_MouseWheel(), just without notch logic + if (MainForm.IsSeeking && !MainForm.EmulatorPaused) + { + MainForm.PauseOnFrame--; + + // that's a weird condition here, but for whatever reason it works best + if (Emulator.Frame >= MainForm.PauseOnFrame) + { + MainForm.PauseEmulator(); + StopSeeking(); + GoToPreviousFrame(); + } + + RefreshDialog(); + } + else + { + StopSeeking(); // late breaking memo: don't know whether this is needed + GoToPreviousFrame(); + } + + return true; + } + + public bool WantsToControlRestartMovie { get; } + + public bool RestartMovie() + { + if (!AskSaveChanges()) return false; + var success = StartNewMovieWrapper(CurrentTasMovie, isNew: false); + RefreshDialog(); + return success; + } + + public bool WantsToControlReboot => false; + public void RebootCore() => throw new NotSupportedException("This should never be called"); + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.IToolForm.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.IToolForm.cs new file mode 100644 index 00000000000..bea2c32727d --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.IToolForm.cs @@ -0,0 +1,145 @@ +using BizHawk.Client.Common; +using BizHawk.Emulation.Common; + +namespace BizHawk.Client.EmuHawk +{ + public partial class TAStudioMPR : IToolForm + { + [RequiredService] + public IEmulator Emulator { get; private set; } + + [RequiredService] + public IStatable StatableEmulator { get; private set; } + + [RequiredService] + public IVideoProvider VideoProvider { get; private set; } + + [OptionalService] + public ISaveRam SaveRamEmulator { get; private set; } + + private bool _initializing; // If true, will bypass restart logic, this is necessary since loading projects causes a movie to load which causes a rom to reload causing dialogs to restart + + private int _lastRefresh; + + private void UpdateProgressBar() + { + if (MainForm.PauseOnFrame.HasValue) + { + int diff = Emulator.Frame - _seekStartFrame.Value; + int unit = MainForm.PauseOnFrame.Value - _seekStartFrame.Value; + double progress = 0; + + if (diff != 0 && unit != 0) + { + progress = (double)100d / unit * diff; + } + + if (progress < 0) + { + progress = 0; + } + else if (progress > 100) + { + progress = 100; + } + + ProgressBar.Value = (int)progress; + } + else + { + ProgressBar.Visible = false; + MessageStatusLabel.Text = ""; + } + } + + protected override void GeneralUpdate() + { + RefreshDialog(); + } + + protected override void UpdateAfter() + { + if (!IsHandleCreated || IsDisposed || CurrentTasMovie == null) + { + return; + } + + if (_exiting) + { + return; + } + + var refreshNeeded = false; + if (Settings.AutoadjustInput) + { + refreshNeeded = AutoAdjustInput(); + } + + CurrentTasMovie.TasSession.UpdateValues(Emulator.Frame, CurrentTasMovie.Branches.Current); + MaybeFollowCursor(); + + if (TasView.IsPartiallyVisible(Emulator.Frame) || TasView.IsPartiallyVisible(_lastRefresh)) + { + refreshNeeded = true; + } + + RefreshDialog(refreshNeeded, refreshBranches: false); + UpdateProgressBar(); + } + + protected override void FastUpdateAfter() + { + UpdateProgressBar(); + } + + public override void Restart() + { + if (!IsActive) + { + return; + } + + if (_initializing) + { + return; + } + + if (CurrentTasMovie != null) + { + bool loadRecent = Game.Hash == CurrentTasMovie.Hash && CurrentTasMovie.Filename == Settings.RecentTas.MostRecent; + TastudioStopMovie(); + // try to load the most recent movie if it matches the currently loaded movie + if (loadRecent) + { + LoadMostRecentOrStartNew(); + } + else + { + StartNewTasMovie(); + } + } + } + + /// + /// Ask whether changes should be saved. Returns false if cancelled, else true. + /// + public override bool AskSaveChanges() + { + if (_suppressAskSave) + { + return true; + } + + StopSeeking(); + if (CurrentTasMovie?.Changes is not true) return true; + var result = DialogController.DoWithTempMute(() => this.ModalMessageBox3( + caption: "Closing with Unsaved Changes", + icon: EMsgBoxIcon.Question, + text: $"Save {WindowTitleStatic} project?")); + if (result is null) return false; + if (result.Value) SaveTas(); + else CurrentTasMovie.ClearChanges(); + return true; + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs new file mode 100644 index 00000000000..cea1803a905 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs @@ -0,0 +1,1445 @@ +using System.Drawing; +using System.Linq; +using System.Windows.Forms; +using System.Collections.Generic; +using System.Globalization; +using BizHawk.Emulation.Common; +using BizHawk.Common.NumberExtensions; +using BizHawk.Client.Common; +using BizHawk.Common; +using BizHawk.Common.CollectionExtensions; +using BizHawk.Common.StringExtensions; + +namespace BizHawk.Client.EmuHawk +{ + public partial class TAStudioMPR + { + // Input Painting + private string _startBoolDrawColumn = ""; + private string _startAxisDrawColumn = ""; + private bool _drewAxis; + private bool _boolPaintState; + private int _axisPaintState; + private int _axisBackupState; + private bool _patternPaint; + private bool _startCursorDrag; + private bool _startSelectionDrag; + private bool _selectionDragState; + private bool _suppressContextMenu; + private int _startRow; + private int _paintingMinFrame = -1; + private bool _playbackInterrupted; // Occurs when the emulator is unpaused and the user click and holds mouse down to begin delivering input + + // Editing analog input + private string _axisEditColumn = ""; + private int _axisEditRow = -1; + private string _axisTypedValue; + private int _axisEditYPos = -1; + private int AxisEditRow + { + set + { + _axisEditRow = value; + TasView.SuspendHotkeys = AxisEditingMode; + } + } + + public bool AxisEditingMode => _axisEditRow != -1; + + private readonly List _extraAxisRows = new List(); + + // Right-click dragging + private string[] _rightClickInput; + private string[] _rightClickOverInput; + private int _rightClickFrame = -1; + private int _rightClickLastFrame = -1; + private bool _rightClickShift, _rightClickControl, _rightClickAlt; + private bool _leftButtonHeld; + + private bool MouseButtonHeld => _rightClickFrame != -1 || _leftButtonHeld; + + private bool _triggerAutoRestore; // If true, autorestore will be called on mouse up + private bool? _autoRestorePaused; + private int? _seekStartFrame; + private bool _unpauseAfterSeeking; + + private readonly Dictionary _alternateRowColor = new(); + + private ControllerDefinition ControllerType => MovieSession.MovieController.Definition; + + public bool WasRecording { get; set; } + public AutoPatternBool[] BoolPatterns; + public AutoPatternAxis[] AxisPatterns; + + public void JumpToGreenzone(bool OnLeftMouseDown = false) + { + if (Emulator.Frame > CurrentTasMovie.LastEditedFrame) + { + GoToLastEmulatedFrameIfNecessary(CurrentTasMovie.LastEditedFrame, OnLeftMouseDown); + } + } + + private void StartSeeking(int? frame, bool fromMiddleClick = false) + { + if (!frame.HasValue) + { + return; + } + + if (!fromMiddleClick) + { + if (MainForm.PauseOnFrame != null) + { + StopSeeking(true); // don't restore rec mode just yet, as with heavy editing checkbox updating causes lag + } + _seekStartFrame = Emulator.Frame; + } + + MainForm.PauseOnFrame = frame.Value; + int? diff = MainForm.PauseOnFrame - _seekStartFrame; + + WasRecording = CurrentTasMovie.IsRecording() || WasRecording; + TastudioPlayMode(); // suspend rec mode until seek ends, to allow mouse editing + MainForm.UnpauseEmulator(); + + if (diff > TasView.VisibleRows) + { + MessageStatusLabel.Text = "Seeking..."; + ProgressBar.Visible = true; + } + } + + public void StopSeeking(bool skipRecModeCheck = false) + { + if (WasRecording && !skipRecModeCheck) + { + TastudioRecordMode(); + WasRecording = false; + } + + MainForm.PauseOnFrame = null; + if (_unpauseAfterSeeking) + { + MainForm.UnpauseEmulator(); + _unpauseAfterSeeking = false; + } + + if (CurrentTasMovie != null) + { + RefreshDialog(); + UpdateProgressBar(); + } + } + + private Bitmap ts_v_arrow_green_blue => Properties.Resources.ts_v_arrow_green_blue; + private Bitmap ts_h_arrow_green_blue => Properties.Resources.ts_h_arrow_green_blue; + private Bitmap ts_v_arrow_blue => Properties.Resources.ts_v_arrow_blue; + private Bitmap ts_h_arrow_blue => Properties.Resources.ts_h_arrow_blue; + private Bitmap ts_v_arrow_green => Properties.Resources.ts_v_arrow_green; + private Bitmap ts_h_arrow_green => Properties.Resources.ts_h_arrow_green; + + private Bitmap icon_marker => Properties.Resources.icon_marker; + private Bitmap icon_anchor_lag => Properties.Resources.icon_anchor_lag; + private Bitmap icon_anchor => Properties.Resources.icon_anchor; + + private void TasView_QueryItemIcon(int index, RollColumn column, ref Bitmap bitmap, ref int offsetX, ref int offsetY) + { + if (!_engaged || _initializing) + { + return; + } + + var overrideIcon = QueryItemIconCallback?.Invoke(index, column.Name); + + if (overrideIcon != null) + { + bitmap = overrideIcon; + return; + } + + var columnName = column.Name; + + if (columnName == CursorColumnName) + { + if (TasView.HorizontalOrientation) + { + offsetX = -1; + offsetY = 5; + } + + if (index == Emulator.Frame) + { + bitmap = index == MainForm.PauseOnFrame + ? TasView.HorizontalOrientation ? ts_v_arrow_green_blue : ts_h_arrow_green_blue + : TasView.HorizontalOrientation ? ts_v_arrow_blue : ts_h_arrow_blue; + } + else if (index == LastPositionFrame) + { + bitmap = TasView.HorizontalOrientation ? + ts_v_arrow_green : + ts_h_arrow_green; + } + } + else if (columnName == FrameColumnName) + { + offsetX = -3; + offsetY = 1; + + if (Settings.DenoteMarkersWithIcons && CurrentTasMovie.Markers.IsMarker(index)) + { + bitmap = icon_marker; + } + else if (Settings.DenoteStatesWithIcons) + { + var record = CurrentTasMovie[index]; + if (record.HasState) bitmap = record.Lagged is true ? icon_anchor_lag : icon_anchor; + } + } + } + + private void TasView_QueryItemBkColor(int index, RollColumn column, ref Color color) + { + if (!_engaged || _initializing) + { + return; + } + + Color? overrideColor = QueryItemBgColorCallback?.Invoke(index, column.Name); + + if (overrideColor.HasValue) + { + color = overrideColor.Value; + return; + } + + string columnName = column.Name; + + if (columnName == CursorColumnName) + { + color = Color.FromArgb(0xFE, 0xFF, 0xFF); + } + + if (columnName == FrameColumnName) + { + if (Emulator.Frame != index && Settings.DenoteMarkersWithBGColor && CurrentTasMovie.Markers.IsMarker(index)) + { + color = Palette.Marker_FrameCol; + } + else + { + color = Color.FromArgb(0x60, 0xFF, 0xFF, 0xFF); + } + } + else if (AxisEditingMode + && (index == _axisEditRow || _extraAxisRows.Contains(index)) + && columnName == _axisEditColumn) + { + color = Palette.AnalogEdit_Col; + } + + if (_alternateRowColor.GetValueOrPut( + columnName, + columnName1 => { + var playerNumber = ControllerDefinition.PlayerNumber(columnName1); + return playerNumber % 2 is 0 && playerNumber is not 0; + })) + { + color = Color.FromArgb(0x0D, 0x00, 0x00, 0x00); + } + } + + private void TasView_QueryRowBkColor(int index, ref Color color) + { + if (!_engaged || _initializing) + { + return; + } + + var record = CurrentTasMovie[index]; + + if (MainForm.IsSeeking && MainForm.PauseOnFrame == index) + { + color = Palette.CurrentFrame_InputLog; + } + else if (!MainForm.IsSeeking && Emulator.Frame == index) + { + color = Palette.CurrentFrame_InputLog; + } + else if (record.Lagged.HasValue) + { + if (!record.HasState && Settings.DenoteStatesWithBGColor) + { + color = record.Lagged.Value + ? Palette.LagZone_InputLog + : Palette.GreenZone_InputLog; + } + else + { + color = record.Lagged.Value + ? Palette.LagZone_InputLog_Stated + : Palette.GreenZone_InputLog_Stated; + } + } + else if (record.WasLagged.HasValue) + { + color = record.WasLagged.Value + ? Palette.LagZone_InputLog_Invalidated + : Palette.GreenZone_InputLog_Invalidated; + } + else + { + color = Color.FromArgb(0xFF, 0xFE, 0xEE); + } + } + + private readonly string[] _formatCache = Enumerable.Range(1, 10).Select(i => $"D{i}").ToArray(); + + /// with leading zeroes such that every frame in the movie will be printed with the same number of digits + private string FrameToStringPadded(int index) + => index.ToString(_formatCache[(int)Math.Log10(Math.Max(CurrentTasMovie.InputLogLength, 1))]); + + private void TasView_QueryItemText(int index, RollColumn column, out string text, ref int offsetX, ref int offsetY) + { + if (!_engaged || _initializing) + { + text = ""; + return; + } + + var overrideText = QueryItemTextCallback?.Invoke(index, column.Name); + if (overrideText != null) + { + text = overrideText; + return; + } + + try + { + text = ""; + var columnName = column.Name; + + if (columnName == CursorColumnName) + { + int branchIndex = CurrentTasMovie.Branches.IndexOfFrame(index); + if (branchIndex != -1) + { + text = (branchIndex + 1).ToString(); + } + } + else if (columnName == FrameColumnName) + { + offsetX = TasView.HorizontalOrientation ? 2 : 7; + text = FrameToStringPadded(index); + } + else + { + // Display typed float value (string "-" can't be parsed, so CurrentTasMovie.DisplayValue can't return it) + if (index == _axisEditRow && columnName == _axisEditColumn) + { + text = _axisTypedValue; + } + else if (index < CurrentTasMovie.InputLogLength) + { + text = CurrentTasMovie.DisplayValue(index, columnName); + if (column.Type == ColumnType.Axis) + { + // feos: this could be cached, but I don't notice any slowdown this way either + if (text == ((float) ControllerType.Axes[columnName].Neutral).ToString(NumberFormatInfo.InvariantInfo)) + { + text = ""; + } + } + } + } + } + catch (Exception ex) + { + text = ""; + DialogController.ShowMessageBox($"oops\n{ex}"); + } + } + + private bool TasView_QueryFrameLag(int index, bool hideWasLag) + { + var lag = CurrentTasMovie[index]; + return (lag.Lagged.HasValue && lag.Lagged.Value) || (hideWasLag && lag.WasLagged.HasValue && lag.WasLagged.Value); + } + + private void TasView_ColumnClick(object sender, InputRoll.ColumnClickEventArgs e) + { + if (TasView.AnyRowsSelected) + { + var columnName = e.Column!.Name; + + if (columnName == FrameColumnName) + { + CurrentTasMovie.Markers.Add(TasView.SelectionEndIndex!.Value, ""); + } + else if (columnName != CursorColumnName) + { + var frame = TasView.AnyRowsSelected ? TasView.FirstSelectedRowIndex : 0; + var buttonName = TasView.CurrentCell.Column!.Name; + + if (ControllerType.BoolButtons.Contains(buttonName)) + { + if (ModifierKeys != Keys.Alt) + { + // nifty taseditor logic + bool allPressed = true; + foreach (var index in TasView.SelectedRows) + { + if (index == CurrentTasMovie.FrameCount // last movie frame can't have input, but can be selected + || !CurrentTasMovie.BoolIsPressed(index, buttonName)) + { + allPressed = false; + break; + } + } + CurrentTasMovie.SetBoolStates(frame, TasView.SelectedRows.Count(), buttonName, !allPressed); + } + else + { + BoolPatterns[ControllerType.BoolButtons.IndexOf(buttonName)].Reset(); + foreach (var index in TasView.SelectedRows) + { + CurrentTasMovie.SetBoolState(index, buttonName, BoolPatterns[ControllerType.BoolButtons.IndexOf(buttonName)].GetNextValue()); + } + } + } + else + { + // feos: there's no default value other than neutral, and we can't go arbitrary here, so do nothing for now + // autohold is ignored for axes too for the same reasons: lack of demand + ambiguity + } + + _triggerAutoRestore = true; + TastudioPlayMode(true); + JumpToGreenzone(); + } + + RefreshDialog(); + } + } + + private void TasView_ColumnRightClick(object sender, InputRoll.ColumnClickEventArgs e) + { + var col = e.Column!; + if (col.Name is FrameColumnName or CursorColumnName) return; + + col.Emphasis = !col.Emphasis; + UpdateAutoFire(col.Name, col.Emphasis); + TasView.Refresh(); + } + + private void UpdateAutoFire() + { + for (int i = 2; i < TasView.AllColumns.Count; i++) + { + UpdateAutoFire(TasView.AllColumns[i].Name, TasView.AllColumns[i].Emphasis); + } + } + + public void UpdateAutoFire(string button, bool? isOn) + { + // No value means don't change whether it's on or off. + isOn ??= TasView.AllColumns.Find(c => c.Name == button).Emphasis; + + // use custom pattern if set + bool useCustom = customPatternToolStripMenuItem.Checked; + // else, set autohold or fire based on setting + bool autoHold = autoHoldToolStripMenuItem.Checked; // !autoFireToolStripMenuItem.Checked + + if (ControllerType.BoolButtons.Contains(button)) + { + InputManager.StickyHoldController.SetButtonHold(button, false); + InputManager.StickyAutofireController.SetButtonAutofire(button, false); + if (!isOn.Value) return; + + if (useCustom) + { + InputManager.StickyAutofireController.SetButtonAutofire(button, true, BoolPatterns[ControllerType.BoolButtons.IndexOf(button)]); + } + else if (autoHold) + { + InputManager.StickyHoldController.SetButtonHold(button, true); + } + else + { + InputManager.StickyAutofireController.SetButtonAutofire(button, true); + } + } + else + { + InputManager.StickyHoldController.SetAxisHold(button, null); + InputManager.StickyAutofireController.SetAxisAutofire(button, null); + if (!isOn.Value) return; + + int holdValue = ControllerType.Axes[button].Range.EndInclusive; // it's not clear what value to use for auto-hold, just use max i guess + if (useCustom) + { + InputManager.StickyAutofireController.SetAxisAutofire(button, holdValue, AxisPatterns[ControllerType.Axes.IndexOf(button)]); + } + else if (autoHold) + { + InputManager.StickyHoldController.SetAxisHold(button, holdValue); + } + else + { + InputManager.StickyAutofireController.SetAxisAutofire(button, holdValue); + } + } + } + + private void TasView_ColumnReordered(object sender, InputRoll.ColumnReorderedEventArgs e) + { + CurrentTasMovie.FlagChanges(); + } + + private void TasView_MouseEnter(object sender, EventArgs e) + { + if (ContainsFocus) + { + TasView.Select(); + } + } + + private void TasView_MouseDown(object sender, MouseEventArgs e) + { + // Clicking with left while right is held or vice versa does weird stuff + if (MouseButtonHeld) + { + return; + } + + // only on mouse button down, check that the pointed to cell is the correct one (can be wrong due to scroll while playing) + TasView._programmaticallyChangingRow = true; + TasView.PointMouseToNewCell(); + + if (e.Button == MouseButtons.Middle) + { + if (MainForm.EmulatorPaused) + { + var record = CurrentTasMovie[LastPositionFrame]; + if (!record.Lagged.HasValue && LastPositionFrame > Emulator.Frame) + { + StartSeeking(LastPositionFrame, true); + return; + } + } + + MainForm.TogglePause(); + return; + } + + if (TasView.CurrentCell is not { RowIndex: int frame, Column: RollColumn targetCol }) return; + + var buttonName = targetCol.Name; + WasRecording = CurrentTasMovie.IsRecording() || WasRecording; + + if (e.Button == MouseButtons.Left) + { + _leftButtonHeld = true; + _paintingMinFrame = frame; + + // SuuperW: Exit axis editing mode, or re-enter mouse editing + if (AxisEditingMode) + { + if (ModifierKeys == Keys.Control || ModifierKeys == Keys.Shift) + { + _extraAxisRows.Clear(); + _extraAxisRows.AddRange(TasView.SelectedRows); + _startSelectionDrag = true; + _selectionDragState = TasView.IsRowSelected(frame); + return; + } + if (_axisEditColumn != buttonName + || !(_axisEditRow == frame || _extraAxisRows.Contains(frame))) + { + _extraAxisRows.Clear(); + AxisEditRow = -1; + SetTasViewRowCount(); + } + else + { + if (_extraAxisRows.Contains(frame)) + { + _extraAxisRows.Clear(); + AxisEditRow = frame; + SetTasViewRowCount(); + } + + _axisEditYPos = e.Y; + _axisPaintState = CurrentTasMovie.GetAxisState(frame, buttonName); + + _triggerAutoRestore = true; + TastudioPlayMode(true); + return; + } + } + + if (targetCol.Name is CursorColumnName) + { + _startCursorDrag = true; + GoToFrame(frame, fromLua: false, fromRewinding: false, OnLeftMouseDown: true); + } + else if (targetCol.Name is FrameColumnName) + { + if (ModifierKeys == Keys.Alt && CurrentTasMovie.Markers.IsMarker(frame)) + { + // TODO + TasView.DragCurrentCell(); + } + else + { + _startSelectionDrag = true; + _selectionDragState = TasView.IsRowSelected(frame); + } + } + else if (targetCol.Type is not ColumnType.Text) // User changed input + { + _playbackInterrupted = !MainForm.EmulatorPaused; + MainForm.PauseEmulator(); + + // Pausing the emulator is insufficient to actually stop frame advancing as the frame advance hotkey can + // still take effect. This can lead to desyncs by simultaneously changing input and frame advancing. + // So we want to block all frame advance operations while the user is changing input in the piano roll + MainForm.BlockFrameAdvance = true; + + if (ControllerType.BoolButtons.Contains(buttonName)) + { + _patternPaint = false; + _startBoolDrawColumn = buttonName; + + var altOrShift4State = ModifierKeys & (Keys.Alt | Keys.Shift); + if (altOrShift4State is Keys.Alt + || (applyPatternToPaintedInputToolStripMenuItem.Checked + && (!onlyOnAutoFireColumnsToolStripMenuItem.Checked || targetCol.Emphasis))) + { + BoolPatterns[ControllerType.BoolButtons.IndexOf(buttonName)].Reset(); + _patternPaint = true; + _startRow = frame; + _boolPaintState = !CurrentTasMovie.BoolIsPressed(frame, buttonName); + } + else if (altOrShift4State is Keys.Shift) + { + if (!TasView.AnyRowsSelected) return; + + var iFirstSelectedRow = TasView.FirstSelectedRowIndex; + var (firstSel, lastSel) = frame <= iFirstSelectedRow + ? (frame, iFirstSelectedRow) + : (iFirstSelectedRow, frame); + + bool allPressed = true; + for (var i = firstSel; i <= lastSel; i++) + { + if (i == CurrentTasMovie.FrameCount // last movie frame can't have input, but can be selected + || !CurrentTasMovie.BoolIsPressed(i, buttonName)) + { + allPressed = false; + break; + } + } + CurrentTasMovie.SetBoolStates(firstSel, lastSel - firstSel + 1, buttonName, !allPressed); + _boolPaintState = CurrentTasMovie.BoolIsPressed(lastSel, buttonName); + _triggerAutoRestore = true; + TastudioPlayMode(true); + RefreshDialog(); + } +#if false // to match previous behaviour + else if (altOrShift4State is not 0) + { + // TODO: Pattern drawing from selection to current cell + } +#endif + else + { + CurrentTasMovie.ChangeLog.BeginNewBatch($"Paint Bool {buttonName} from frame {frame}"); + + CurrentTasMovie.ToggleBoolState(frame, buttonName); + _boolPaintState = CurrentTasMovie.BoolIsPressed(frame, buttonName); + _triggerAutoRestore = true; + TastudioPlayMode(true); + RefreshDialog(); + } + } + else + { + if (frame >= CurrentTasMovie.InputLogLength) + { + CurrentTasMovie.SetAxisState(frame, buttonName, ControllerType.Axes[buttonName].Neutral); + RefreshDialog(); + } + + _axisPaintState = CurrentTasMovie.GetAxisState(frame, buttonName); + if (applyPatternToPaintedInputToolStripMenuItem.Checked && (!onlyOnAutoFireColumnsToolStripMenuItem.Checked + || targetCol.Emphasis)) + { + AxisPatterns[ControllerType.Axes.IndexOf(buttonName)].Reset(); + CurrentTasMovie.SetAxisState(frame, buttonName, AxisPatterns[ControllerType.Axes.IndexOf(buttonName)].GetNextValue()); + _patternPaint = true; + } + else + { + _patternPaint = false; + } + + + if (e.Clicks != 2 && !Settings.SingleClickAxisEdit) + { + CurrentTasMovie.ChangeLog.BeginNewBatch($"Paint Axis {buttonName} from frame {frame}"); + _startAxisDrawColumn = buttonName; + } + else // Double-click enters axis editing mode + { + if (_axisEditColumn == buttonName && _axisEditRow == frame) + { + AxisEditRow = -1; + } + else + { + CurrentTasMovie.ChangeLog.BeginNewBatch($"Axis Edit: {frame}"); + _axisEditColumn = buttonName; + AxisEditRow = frame; + _axisTypedValue = ""; + _axisEditYPos = e.Y; + _axisBackupState = CurrentTasMovie.GetAxisState(_axisEditRow, _axisEditColumn); + } + + RefreshDialog(); + } + } + } + } + else if (e.Button == MouseButtons.Right) + { + if (targetCol.Name is FrameColumnName && frame < CurrentTasMovie.InputLogLength) + { + _rightClickControl = (ModifierKeys | Keys.Control) == ModifierKeys; + _rightClickShift = (ModifierKeys | Keys.Shift) == ModifierKeys; + _rightClickAlt = (ModifierKeys | Keys.Alt) == ModifierKeys; + if (TasView.IsRowSelected(frame)) + { + _rightClickInput = new string[TasView.SelectedRows.Count()]; + _rightClickFrame = TasView.SelectionStartIndex!.Value; + try + { + CurrentTasMovie.GetLogEntries().CopyTo(_rightClickFrame, _rightClickInput, 0, _rightClickInput.Length); + } + catch { } + if (_rightClickControl && _rightClickShift) + { + _rightClickFrame += _rightClickInput.Length; + } + } + else + { + _rightClickInput = new string[1]; + _rightClickInput[0] = CurrentTasMovie.GetInputLogEntry(frame); + _rightClickFrame = frame; + } + + _rightClickLastFrame = -1; + + if (_rightClickAlt || _rightClickControl || _rightClickShift) + { + JumpToGreenzone(); + + // TODO: Turn off ChangeLog.IsRecording and handle the GeneralUndo here. + string undoStepName = "Right-Click Edit:"; + if (_rightClickShift) + { + undoStepName += " Extend Input"; + if (_rightClickControl) + { + undoStepName += ", Insert"; + } + } + else + { + if (_rightClickControl) + { + undoStepName += " Copy"; + } + else // _rightClickAlt + { + undoStepName += " Move"; + } + } + + CurrentTasMovie.ChangeLog.BeginNewBatch(undoStepName); + } + } + } + } + + private void ClearLeftMouseStates() + { + _startCursorDrag = false; + _startSelectionDrag = false; + _startBoolDrawColumn = ""; + _startAxisDrawColumn = ""; + _drewAxis = false; + _paintingMinFrame = -1; + TasView.ReleaseCurrentCell(); + + // Exit axis editing if value was changed with cursor + if (AxisEditingMode && _axisPaintState != CurrentTasMovie.GetAxisState(_axisEditRow, _axisEditColumn)) + { + AxisEditRow = -1; + _triggerAutoRestore = true; + TastudioPlayMode(true); + JumpToGreenzone(); + DoTriggeredAutoRestoreIfNeeded(); + RefreshDialog(); + } + _axisPaintState = 0; + _axisEditYPos = -1; + _leftButtonHeld = false; + + if (!AxisEditingMode) + { + CurrentTasMovie.ChangeLog?.EndBatch(); + } + + MainForm.BlockFrameAdvance = false; + } + + private void TasView_MouseUp(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Right && !TasView.IsPointingAtColumnHeader + && !_suppressContextMenu && !_leftButtonHeld && TasView.AnyRowsSelected) + { + if (CurrentTasMovie.FrameCount < TasView.SelectionEndIndex) + { + // trying to be smart here + // if a loaded branch log is shorter than selection, keep selection until you attempt to call context menu + // you might need it when you load again the branch where this frame exists + TasView.DeselectAll(); + SetTasViewRowCount(); + } + else + { + var offset = new Point(0); + var topLeft = Cursor.Position; + var bottomRight = new Point( + topLeft.X + RightClickMenu.Width, + topLeft.Y + RightClickMenu.Height); + var screen = Screen.AllScreens.First(s => s.WorkingArea.Contains(topLeft)); + // if we don't fully fit, move to the other side of the pointer + if (bottomRight.X > screen.WorkingArea.Right) + offset.X -= RightClickMenu.Width; + if (bottomRight.Y > screen.WorkingArea.Bottom) + offset.Y -= RightClickMenu.Height; + topLeft.Offset(offset); + // if the screen is insultingly tiny, best we can do is avoid negative pos + RightClickMenu.Show( + Math.Max(0, topLeft.X), + Math.Max(0, topLeft.Y)); + } + } + else if (e.Button == MouseButtons.Left) + { + if (AxisEditingMode && (ModifierKeys == Keys.Control || ModifierKeys == Keys.Shift)) + { + _leftButtonHeld = false; + _startSelectionDrag = false; + } + else + { + if (!string.IsNullOrWhiteSpace(_startBoolDrawColumn) || _drewAxis) + { + // If painting up, we have altered frames without loading states (for smoothness) + // So now we have to ensure that all the edited frames are invalidated + GoToLastEmulatedFrameIfNecessary(_paintingMinFrame); + } + + ClearLeftMouseStates(); + } + + DoTriggeredAutoRestoreIfNeeded(); + } + + if (e.Button == MouseButtons.Right) + { + if (_rightClickFrame != -1) + { + _rightClickInput = null; + _rightClickOverInput = null; + _rightClickFrame = -1; + CurrentTasMovie.ChangeLog.EndBatch(); + } + } + + _suppressContextMenu = false; + } + + private void TasView_MouseWheel(object sender, MouseEventArgs e) + { + if (TasView.RightButtonHeld && TasView?.CurrentCell.RowIndex.HasValue == true) + { + _suppressContextMenu = true; + int notch = e.Delta / 120; + if (notch > 1) + { + notch *= 2; + } + + // warning: tastudio rewind hotkey/button logic is copy pasted from here! + if (MainForm.IsSeeking && !MainForm.EmulatorPaused) + { + MainForm.PauseOnFrame -= notch; + + // that's a weird condition here, but for whatever reason it works best + if (notch > 0 && Emulator.Frame >= MainForm.PauseOnFrame) + { + MainForm.PauseEmulator(); + StopSeeking(); + GoToFrame(Emulator.Frame - notch); + } + + RefreshDialog(); + } + else + { + // needed for AutoAdjustInput() when it removes was-lag frames + MainForm.HoldFrameAdvance = true; + + GoToFrame(Emulator.Frame - notch); + } + } + } + + private void TasView_MouseDoubleClick(object sender, MouseEventArgs e) + { + if (TasView.CurrentCell?.Column is not { Name: var columnName }) return; + + if (e.Button == MouseButtons.Left) + { + if (!AxisEditingMode && TasView.CurrentCell.RowIndex is not null && columnName is FrameColumnName) + { + var existingMarker = CurrentTasMovie.Markers.FirstOrDefault(m => m.Frame == TasView.CurrentCell.RowIndex.Value); + + if (existingMarker != null) + { + MarkerControlMPR.EditMarkerPopUp(existingMarker); + } + else + { + ClearLeftMouseStates(); + MarkerControlMPR.AddMarker(TasView.CurrentCell.RowIndex.Value); + } + } + } + } + + private void TasView_PointedCellChanged(object sender, InputRoll.CellEventArgs e) + { + toolTip1.SetToolTip(TasView, null); + + if (e.NewCell.RowIndex is null) + { + return; + } + + if (!MouseButtonHeld) + { + return; + } + + if (_paintingMinFrame >= 0) + { + _paintingMinFrame = Math.Min(_paintingMinFrame, e.NewCell.RowIndex.Value); + } + + // skip rerecord counting on drawing entirely, mouse down is enough + // avoid introducing another global + bool wasCountingRerecords = CurrentTasMovie.IsCountingRerecords; + WasRecording = CurrentTasMovie.IsRecording() || WasRecording; + + int startVal, endVal; + int frame = e.NewCell.RowIndex.Value; + if (e.OldCell.RowIndex < e.NewCell.RowIndex) + { + startVal = e.OldCell.RowIndex.Value; + endVal = e.NewCell.RowIndex.Value; + if (_patternPaint) + { + endVal--; + } + } + else + { + startVal = e.NewCell.RowIndex.Value; + endVal = e.OldCell.RowIndex ?? e.NewCell.RowIndex.Value; + if(_patternPaint) + { + endVal = _startRow; + } + } + + if (_startCursorDrag && !MainForm.IsSeeking) + { + GoToFrame(e.NewCell.RowIndex.Value); + } + else if (_startSelectionDrag) + { + for (var i = startVal; i <= endVal; i++) + { + if (!TasView.IsRowSelected(i)) + TasView.SelectRow(i, _selectionDragState); + if (AxisEditingMode && (ModifierKeys == Keys.Control || ModifierKeys == Keys.Shift)) + { + if (_selectionDragState) + { + _extraAxisRows.Add(i); + } + else + { + _extraAxisRows.Remove(i); + } + } + } + + SetSplicer(); + } + else if (_rightClickFrame != -1) + { + if (frame > CurrentTasMovie.InputLogLength - _rightClickInput.Length) + { + frame = CurrentTasMovie.InputLogLength - _rightClickInput.Length; + } + + if (_rightClickShift) + { + if (_rightClickControl) // Insert + { + // If going backwards, delete! + bool shouldInsert = true; + if (startVal < _rightClickFrame) + { + // Cloning to a previous frame makes no sense. + startVal = _rightClickFrame - 1; + } + + if (startVal < _rightClickLastFrame) + { + shouldInsert = false; + } + + if (shouldInsert) + { + for (int i = startVal + 1; i <= endVal; i++) + { + CurrentTasMovie.InsertInput(i, _rightClickInput[(i - _rightClickFrame).Mod(_rightClickInput.Length)]); + } + } + else + { + CurrentTasMovie.RemoveFrames(startVal + 1, endVal + 1); + } + + _rightClickLastFrame = frame; + } + else // Overwrite + { + for (int i = startVal; i <= endVal; i++) + { + CurrentTasMovie.SetFrame(i, _rightClickInput[(i - _rightClickFrame).Mod(_rightClickInput.Length)]); + } + } + } + else + { + if (_rightClickControl) + { + for (int i = 0; i < _rightClickInput.Length; i++) // Re-set initial range, just to verify it's still there. + { + CurrentTasMovie.SetFrame(_rightClickFrame + i, _rightClickInput[i]); + } + + if (_rightClickOverInput != null) // Restore overwritten input from previous movement + { + for (int i = 0; i < _rightClickOverInput.Length; i++) + { + CurrentTasMovie.SetFrame(_rightClickLastFrame + i, _rightClickOverInput[i]); + } + } + else + { + _rightClickOverInput = new string[_rightClickInput.Length]; + } + + _rightClickLastFrame = frame; // Set new restore log + CurrentTasMovie.GetLogEntries().CopyTo(frame, _rightClickOverInput, 0, _rightClickOverInput.Length); + + for (int i = 0; i < _rightClickInput.Length; i++) // Place copied input + { + CurrentTasMovie.SetFrame(frame + i, _rightClickInput[i]); + } + } + else if (_rightClickAlt) + { + int shiftBy = _rightClickFrame - frame; + string[] shiftInput = new string[Math.Abs(shiftBy)]; + int shiftFrom = frame; + if (shiftBy < 0) + { + shiftFrom = _rightClickFrame + _rightClickInput.Length; + } + + CurrentTasMovie.GetLogEntries().CopyTo(shiftFrom, shiftInput, 0, shiftInput.Length); + int shiftTo = shiftFrom + (_rightClickInput.Length * Math.Sign(shiftBy)); + for (int i = 0; i < shiftInput.Length; i++) + { + CurrentTasMovie.SetFrame(shiftTo + i, shiftInput[i]); + } + + for (int i = 0; i < _rightClickInput.Length; i++) + { + CurrentTasMovie.SetFrame(frame + i, _rightClickInput[i]); + } + + _rightClickFrame = frame; + } + } + + if (_rightClickAlt || _rightClickControl || _rightClickShift) + { + _triggerAutoRestore = true; + TastudioPlayMode(true); + JumpToGreenzone(); + _suppressContextMenu = true; + } + } + + // Left-click + else if (TasView.IsPaintDown && !string.IsNullOrEmpty(_startBoolDrawColumn)) + { + CurrentTasMovie.IsCountingRerecords = false; + + for (int i = startVal; i <= endVal; i++) // Inclusive on both ends (drawing up or down) + { + bool setVal = _boolPaintState; + + if (_patternPaint && _boolPaintState) + { + if (CurrentTasMovie[frame].Lagged.HasValue && CurrentTasMovie[frame].Lagged.Value) + { + setVal = CurrentTasMovie.BoolIsPressed(i - 1, _startBoolDrawColumn); + } + else + { + setVal = BoolPatterns[ControllerType.BoolButtons.IndexOf(_startBoolDrawColumn)].GetNextValue(); + } + } + + CurrentTasMovie.SetBoolState(i, _startBoolDrawColumn, setVal); // Notice it uses new row, old column, you can only paint across a single column + + if (!_triggerAutoRestore) + { + TastudioPlayMode(true); + JumpToGreenzone(); + } + } + } + + else if (TasView.IsPaintDown && !string.IsNullOrEmpty(_startAxisDrawColumn)) + { + CurrentTasMovie.IsCountingRerecords = false; + + for (int i = startVal; i <= endVal; i++) // Inclusive on both ends (drawing up or down) + { + var setVal = _axisPaintState; + if (_patternPaint) + { + if (CurrentTasMovie[frame].Lagged.HasValue && CurrentTasMovie[frame].Lagged.Value) + { + setVal = CurrentTasMovie.GetAxisState(i - 1, _startAxisDrawColumn); + } + else + { + setVal = AxisPatterns[ControllerType.Axes.IndexOf(_startAxisDrawColumn)].GetNextValue(); + } + } + + CurrentTasMovie.SetAxisState(i, _startAxisDrawColumn, setVal); // Notice it uses new row, old column, you can only paint across a single column + } + + _drewAxis = true; + } + + CurrentTasMovie.IsCountingRerecords = wasCountingRerecords; + + if (MouseButtonHeld) + { + TasView.MakeIndexVisible(TasView.CurrentCell.RowIndex.Value); // todo: limit scrolling speed + } + + SetTasViewRowCount(); + } + + private void TasView_MouseMove(object sender, MouseEventArgs e) + { + // For axis editing + if (AxisEditingMode) + { + int increment = (_axisEditYPos - e.Y) / 4; + if (_axisEditYPos == -1) + { + return; + } + + var value = (_axisPaintState + increment).ConstrainWithin(ControllerType.Axes[_axisEditColumn].Range); + CurrentTasMovie.SetAxisState(_axisEditRow, _axisEditColumn, value); + _axisTypedValue = value.ToString(); + RefreshDialog(); + } + } + + private void TasView_SelectedIndexChanged(object sender, EventArgs e) + { + SetSplicer(); + } + + public void AnalogIncrementByOne() + { + if (AxisEditingMode) + { + EditAnalogProgrammatically(new KeyEventArgs(Keys.Up)); + } + } + + public void AnalogDecrementByOne() + { + if (AxisEditingMode) + { + EditAnalogProgrammatically(new KeyEventArgs(Keys.Down)); + } + } + + public void AnalogIncrementByTen() + { + if (AxisEditingMode) + { + EditAnalogProgrammatically(new KeyEventArgs(Keys.Up | Keys.Shift)); + } + } + + public void AnalogDecrementByTen() + { + if (AxisEditingMode) + { + EditAnalogProgrammatically(new KeyEventArgs(Keys.Down | Keys.Shift)); + } + } + + public void AnalogMax() + { + if (AxisEditingMode) + { + EditAnalogProgrammatically(new KeyEventArgs(Keys.Right)); + } + } + + public void AnalogMin() + { + if (AxisEditingMode) + { + EditAnalogProgrammatically(new KeyEventArgs(Keys.Left)); + } + } + + public void EditAnalogProgrammatically(KeyEventArgs e) + { + if (!AxisEditingMode) + { + return; + } + + int value = CurrentTasMovie.GetAxisState(_axisEditRow, _axisEditColumn); + int prev = value; + string prevTyped = _axisTypedValue; + + var range = ControllerType.Axes[_axisEditColumn]; + + // feos: typing past max digits overwrites existing value, not touching the sign + // but doesn't handle situations where the range is like -50 through 100, where minimum is negative and has less digits + // it just uses 3 as maxDigits there too, leaving room for typing impossible values (that are still ignored by the game and then clamped) + int maxDigits = range.MaxDigits; + int curDigits = _axisTypedValue.Length; + string curMinus; + if (_axisTypedValue.StartsWith('-')) + { + curDigits -= 1; + curMinus = "-"; + } + else + { + curMinus = ""; + } + + if (e.KeyCode == Keys.Right) + { + value = range.Max; + _axisTypedValue = value.ToString(NumberFormatInfo.InvariantInfo); + } + else if (e.KeyCode == Keys.Left) + { + value = range.Min; + _axisTypedValue = value.ToString(NumberFormatInfo.InvariantInfo); + } + else if (e.KeyCode >= Keys.D0 && e.KeyCode <= Keys.D9) + { + if (curDigits >= maxDigits) + { + _axisTypedValue = curMinus; + } + + _axisTypedValue += e.KeyCode - Keys.D0; + } + else if (e.KeyCode >= Keys.NumPad0 && e.KeyCode <= Keys.NumPad9) + { + if (curDigits >= maxDigits) + { + _axisTypedValue = curMinus; + } + + _axisTypedValue += e.KeyCode - Keys.NumPad0; + } + else if (e.KeyCode == Keys.OemMinus || e.KeyCode == Keys.Subtract) + { + _axisTypedValue = _axisTypedValue.StartsWith('-') + ? _axisTypedValue.Substring(startIndex: 1) + : $"-{_axisTypedValue}"; + } + else if (e.KeyCode == Keys.Back) + { + if (_axisTypedValue == "") // Very first key press is backspace? + { + _axisTypedValue = value.ToString(NumberFormatInfo.InvariantInfo); + } + + _axisTypedValue = _axisTypedValue.Substring(startIndex: 0, length: _axisTypedValue.Length - 1); // drop last char + if (!int.TryParse(_axisTypedValue, out value)) value = 0; + } + else if (e.KeyCode == Keys.Enter) + { + _axisEditYPos = -1; + AxisEditRow = -1; + } + else if (e.KeyCode == Keys.Escape) + { + _axisEditYPos = -1; + + if (_axisBackupState != _axisPaintState) + { + CurrentTasMovie.SetAxisState(_axisEditRow, _axisEditColumn, _axisBackupState); + _triggerAutoRestore = Emulator.Frame > _axisEditRow; + TastudioPlayMode(true); + JumpToGreenzone(); + DoTriggeredAutoRestoreIfNeeded(); + } + + AxisEditRow = -1; + } + else + { + int changeBy = 0; + if (e.KeyCode == Keys.Up) + { + changeBy = 1; + } + else if (e.KeyCode == Keys.Down) + { + changeBy = -1; + } + + if (ModifierKeys == Keys.Shift) + { + changeBy *= 10; + } + + value += changeBy; + if (changeBy != 0) + { + _axisTypedValue = value.ToString(NumberFormatInfo.InvariantInfo); + } + } + + if (!AxisEditingMode) + { + CurrentTasMovie.ChangeLog.EndBatch(); + } + else + { + if (_axisTypedValue == "") + { + if (prevTyped != "") + { + value = ControllerType.Axes[_axisEditColumn].Neutral; + CurrentTasMovie.SetAxisState(_axisEditRow, _axisEditColumn, value); + } + } + else + { + if (int.TryParse(_axisTypedValue, NumberStyles.Float, NumberFormatInfo.InvariantInfo, out value)) // String "-" can't be parsed. + { + value = value.ConstrainWithin(range.Range); + + CurrentTasMovie.SetAxisState(_axisEditRow, _axisEditColumn, value); + } + } + + if (_extraAxisRows.Any()) + { + foreach (int row in _extraAxisRows) + { + CurrentTasMovie.SetAxisState(row, _axisEditColumn, value); + } + } + + if (value != prev) // Auto-restore + { + _triggerAutoRestore = Emulator.Frame > _axisEditRow; + TastudioPlayMode(true); + JumpToGreenzone(); + DoTriggeredAutoRestoreIfNeeded(); + } + } + + RefreshDialog(); + } + + private void TasView_KeyDown(object sender, KeyEventArgs e) + { + // taseditor uses Ctrl for selection and Shift for frame cursor + if (e.IsShift(Keys.PageUp)) + { + GoToPreviousMarker(); + } + else if (e.IsShift(Keys.PageDown)) + { + GoToNextMarker(); + } + else if (e.IsShift(Keys.Home)) + { + GoToFrame(0); + } + else if (e.IsShift(Keys.End)) + { + GoToFrame(CurrentTasMovie.InputLogLength-1); + } + + if (AxisEditingMode + && e.KeyCode != Keys.Right + && e.KeyCode != Keys.Left + && e.KeyCode != Keys.Up + && e.KeyCode != Keys.Down) + { + EditAnalogProgrammatically(e); + } + + RefreshDialog(); + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs new file mode 100644 index 00000000000..84aebefd175 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -0,0 +1,1346 @@ +using System.IO; +using System.Linq; +using System.Text; +using System.Windows.Forms; + +using BizHawk.Client.Common; +using BizHawk.Client.EmuHawk.ToolExtensions; +using BizHawk.Common; +using BizHawk.Common.CollectionExtensions; +using BizHawk.Common.StringExtensions; +using BizHawk.Emulation.Common; + +namespace BizHawk.Client.EmuHawk +{ + public partial class TAStudioMPR + { + private static readonly FilesystemFilterSet MoviesFSFilterSet = new( + new FilesystemFilter("All Available Files", MovieService.MovieExtensions.Reverse().ToArray()), + FilesystemFilter.TAStudioProjects, + FilesystemFilter.BizHawkMovies); + + private void FileSubMenu_DropDownOpened(object sender, EventArgs e) + { + SaveBackupMenuItem.Enabled = SaveBk2BackupMenuItem.Enabled = !string.IsNullOrWhiteSpace(CurrentTasMovie.Filename) && CurrentTasMovie.Filename != DefaultTasProjName(); + saveSelectionToMacroToolStripMenuItem.Enabled = + placeMacroAtSelectionToolStripMenuItem.Enabled = + recentMacrosToolStripMenuItem.Enabled = + TasView.AnyRowsSelected; + } + + private void NewFromSubMenu_DropDownOpened(object sender, EventArgs e) + { + NewFromNowMenuItem.Enabled = + CurrentTasMovie.InputLogLength > 0 + && !CurrentTasMovie.StartsFromSaveRam; + + NewFromCurrentSaveRamMenuItem.Enabled = + CurrentTasMovie.InputLogLength > 0 + && SaveRamEmulator != null; + } + + private void StartNewProjectFromNowMenuItem_Click(object sender, EventArgs e) + { + if (AskSaveChanges()) + { + var newProject = CurrentTasMovie.ConvertToSavestateAnchoredMovie( + Emulator.Frame, StatableEmulator.CloneSavestate()); + + MainForm.PauseEmulator(); + LoadMovie(newProject, true); + } + } + + private void StartANewProjectFromSaveRamMenuItem_Click(object sender, EventArgs e) + { + if (AskSaveChanges()) + { + var saveRam = SaveRamEmulator?.CloneSaveRam() ?? throw new Exception("No SaveRam"); + GoToFrame(TasView.AnyRowsSelected ? TasView.FirstSelectedRowIndex : 0); + var newProject = CurrentTasMovie.ConvertToSaveRamAnchoredMovie(saveRam); + MainForm.PauseEmulator(); + LoadMovie(newProject, true); + } + } + + private void RecentSubMenu_DropDownOpened(object sender, EventArgs e) + => RecentSubMenu.ReplaceDropDownItems(Settings.RecentTas.RecentMenu(this, DummyLoadProject, "Project")); + + private void NewTasMenuItem_Click(object sender, EventArgs e) => StartNewTasMovie(); + + private void OpenTasMenuItem_Click(object sender, EventArgs e) + { + if (!AskSaveChanges()) return; + var filename = CurrentTasMovie.Filename; + if (string.IsNullOrWhiteSpace(filename) || filename == DefaultTasProjName()) + { + filename = ""; + } + var result = this.ShowFileOpenDialog( + filter: MoviesFSFilterSet, + initDir: Config!.PathEntries.MovieAbsolutePath(), + initFileName: filename); + if (result is not null) LoadMovieFile(result, askToSave: false); + } + + /// + /// Load the movie with the given filename within TAStudio. + /// + public bool LoadMovieFile(string filename, bool askToSave = true) + { + if (askToSave && !AskSaveChanges()) return false; + if (filename.EndsWithOrdinal(MovieService.TasMovieExtension)) + { + return LoadFileWithFallback(filename); + } + if (filename.EndsWithOrdinal(MovieService.StandardMovieExtension)) + { + if (!DialogController.ShowMessageBox2( + caption: "Convert movie", + icon: EMsgBoxIcon.Question, + text: "This is a regular movie, a new project must be created from it to use in TAStudio\nProceed?", + useOKCancel: true)) + { + return false; + } + + return LoadFileWithFallback(filename); + } + DialogController.ShowMessageBox( + caption: "Movie load error", + icon: EMsgBoxIcon.Error, + text: "This is not a BizHawk movie!"); + return false; + } + + private void SaveTasMenuItem_Click(object sender, EventArgs e) + { + if (string.IsNullOrEmpty(CurrentTasMovie.Filename) || CurrentTasMovie.Filename == DefaultTasProjName()) + { + SaveAsTas(); + } + else + { + SaveTas(); + } + if (Settings.BackupPerFileSave) + { + SaveTas(saveBackup: true); + } + } + + private void SaveAsTasMenuItem_Click(object sender, EventArgs e) + { + SaveAsTas(); + if (Settings.BackupPerFileSave) + { + SaveTas(saveBackup: true); + } + } + + private void SaveBackupMenuItem_Click(object sender, EventArgs e) + { + SaveTas(saveBackup: true); + } + + private void SaveBk2BackupMenuItem_Click(object sender, EventArgs e) + { + SaveTas(saveAsBk2: true, saveBackup: true); + } + + private void SaveSelectionToMacroMenuItem_Click(object sender, EventArgs e) + { + if (!TasView.Focused && TasView.AnyRowsSelected) + { + return; + } + + if (TasView.SelectionEndIndex == CurrentTasMovie.InputLogLength) + { + TasView.SelectRow(CurrentTasMovie.InputLogLength, false); + } + + var file = SaveFileDialog( + null, + MacroInputTool.SuggestedFolder(Config, Game), + MacroInputTool.MacrosFSFilterSet, + this + ); + + if (file != null) + { + var selectionStart = TasView.SelectionStartIndex!.Value; + new MovieZone( + Emulator, + Tools, + MovieSession, + start: selectionStart, + length: TasView.SelectionEndIndex!.Value - selectionStart + 1) + .Save(file.FullName); + + Config.RecentMacros.Add(file.FullName); + } + } + + private void PlaceMacroAtSelectionMenuItem_Click(object sender, EventArgs e) + { + if (!TasView.Focused && TasView.AnyRowsSelected) + { + return; + } + + var file = OpenFileDialog( + null, + MacroInputTool.SuggestedFolder(Config, Game), + MacroInputTool.MacrosFSFilterSet + ); + + if (file != null) + { + DummyLoadMacro(file.FullName); + Config.RecentMacros.Add(file.FullName); + } + } + + private void RecentMacrosMenuItem_DropDownOpened(object sender, EventArgs e) + => recentMacrosToolStripMenuItem.ReplaceDropDownItems(Config!.RecentMacros.RecentMenu(this, DummyLoadMacro, "Macro", noAutoload: true)); + + private void ToBk2MenuItem_Click(object sender, EventArgs e) + { + _autosaveTimer.Stop(); + + if (Emulator.HasCycleTiming() && !CurrentTasMovie.IsAtEnd()) + { + DialogController.ShowMessageBox("This core requires emulation to be on the last frame when writing the movie, otherwise movie length will appear incorrect.", "Warning", EMsgBoxIcon.Warning); + } + + string filename = CurrentTasMovie.Filename; + if (string.IsNullOrWhiteSpace(filename) || filename == DefaultTasProjName()) + { + filename = SuggestedTasProjName(); + } + + var fileInfo = new FileInfo(Path.ChangeExtension(filename, Bk2Movie.Extension)); + if (fileInfo.Exists) + { + fileInfo = SaveFileDialog(currentFile: fileInfo.Name, path: Config!.PathEntries.MovieAbsolutePath(), new FilesystemFilterSet(FilesystemFilter.BizHawkMovies), this); + } + + if (fileInfo is not null) + { + MessageStatusLabel.Text = "Exporting to .bk2..."; + MessageStatusLabel.Owner.Update(); + Cursor = Cursors.WaitCursor; + var bk2 = CurrentTasMovie.ToBk2(); + bk2.Filename = fileInfo.FullName; + bk2.Attach(Emulator); // required to be able to save the cycle count for ICycleTiming emulators + bk2.Save(); + MessageStatusLabel.Text = $"{bk2.Name} exported."; + Cursor = Cursors.Default; + } + else + { + MessageStatusLabel.Text = "bk2 export cancelled."; + } + + if (Settings.AutosaveInterval > 0) + { + _autosaveTimer.Start(); + } + } + + private void EditSubMenu_DropDownOpened(object sender, EventArgs e) + { + DeselectMenuItem.Enabled = + SelectBetweenMarkersMenuItem.Enabled = + CopyMenuItem.Enabled = + CutMenuItem.Enabled = + ClearFramesMenuItem.Enabled = + DeleteFramesMenuItem.Enabled = + CloneFramesMenuItem.Enabled = + CloneFramesXTimesMenuItem.Enabled = + TruncateMenuItem.Enabled = + InsertFrameMenuItem.Enabled = + InsertNumFramesMenuItem.Enabled = + TasView.AnyRowsSelected; + + ReselectClipboardMenuItem.Enabled = + PasteMenuItem.Enabled = + PasteInsertMenuItem.Enabled = TasView.AnyRowsSelected + && (Clipboard.GetDataObject()?.GetDataPresent(DataFormats.StringFormat) ?? false); + + ClearGreenzoneMenuItem.Enabled = + CurrentTasMovie != null && CurrentTasMovie.TasStateManager.Count > 1; + + GreenzoneICheckSeparator.Visible = + StateHistoryIntegrityCheckMenuItem.Visible = + VersionInfo.DeveloperBuild; + + UndoMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Undo"]; + RedoMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Redo"]; + SelectBetweenMarkersMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Sel. bet. Markers"]; + SelectAllMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Select All"]; + ReselectClipboardMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Reselect Clip."]; + ClearFramesMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clear Frames"]; + DeleteFramesMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Delete Frames"]; + InsertFrameMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Insert Frame"]; + InsertNumFramesMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Insert # Frames"]; + CloneFramesMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clone Frames"]; + CloneFramesXTimesMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clone # Times"]; + } + + private void UndoMenuItem_Click(object sender, EventArgs e) + { + if (CurrentTasMovie.ChangeLog.Undo() < Emulator.Frame) + { + GoToFrame(CurrentTasMovie.ChangeLog.PreviousUndoFrame); + } + else + { + RefreshDialog(); + } + + // Currently I don't have a way to easily detect when CanUndo changes, so this button should be enabled always. + // UndoMenuItem.Enabled = CurrentTasMovie.ChangeLog.CanUndo; + RedoMenuItem.Enabled = CurrentTasMovie.ChangeLog.CanRedo; + } + + private void RedoMenuItem_Click(object sender, EventArgs e) + { + if (CurrentTasMovie.ChangeLog.Redo() < Emulator.Frame) + { + GoToFrame(CurrentTasMovie.ChangeLog.PreviousRedoFrame); + } + else + { + RefreshDialog(); + } + + // Currently I don't have a way to easily detect when CanUndo changes, so this button should be enabled always. + // UndoMenuItem.Enabled = CurrentTasMovie.ChangeLog.CanUndo; + RedoMenuItem.Enabled = CurrentTasMovie.ChangeLog.CanRedo; + } + + private void ShowUndoHistoryMenuItem_Click(object sender, EventArgs e) + { + _undoForm = new UndoHistoryFormMPR(this) { Owner = this }; + _undoForm.Show(); + _undoForm.UpdateValues(); + } + + private void DeselectMenuItem_Click(object sender, EventArgs e) + { + TasView.DeselectAll(); + TasView.Refresh(); + } + + /// TODO merge w/ Deselect? + private void SelectAllMenuItem_Click(object sender, EventArgs e) + { + TasView.SelectAll(); + TasView.Refresh(); + } + + private void SelectBetweenMarkersMenuItem_Click(object sender, EventArgs e) + { + if (TasView.Focused && TasView.AnyRowsSelected) + { + var selectionEnd = TasView.SelectionEndIndex ?? 0; + var prevMarker = CurrentTasMovie.Markers.PreviousOrCurrent(selectionEnd); + var nextMarker = CurrentTasMovie.Markers.Next(selectionEnd); + + int prev = prevMarker?.Frame ?? 0; + int next = nextMarker?.Frame ?? CurrentTasMovie.InputLogLength; + + TasView.DeselectAll(); + for (int i = prev; i < next; i++) + { + TasView.SelectRow(i, true); + } + + SetSplicer(); + TasView.Refresh(); + } + } + + private void ReselectClipboardMenuItem_Click(object sender, EventArgs e) + { + TasView.DeselectAll(); + foreach (var item in _tasClipboard) + { + TasView.SelectRow(item.Frame, true); + } + + SetSplicer(); + TasView.Refresh(); + } + + private void CopyMenuItem_Click(object sender, EventArgs e) + { + if (TasView.Focused && TasView.AnyRowsSelected) + { + _tasClipboard.Clear(); + var list = TasView.SelectedRows.ToArray(); + var sb = new StringBuilder(); + + foreach (var index in list) + { + var input = CurrentTasMovie.GetInputState(index); + if (input == null) + { + break; + } + + _tasClipboard.Add(new TasClipboardEntry(index, input)); + var logEntry = Bk2LogEntryGenerator.GenerateLogEntry(input); + sb.AppendLine(Settings.CopyIncludesFrameNo ? $"{FrameToStringPadded(index)} {logEntry}" : logEntry); + } + + Clipboard.SetDataObject(sb.ToString()); + SetSplicer(); + } + } + + private void PasteMenuItem_Click(object sender, EventArgs e) + { + if (TasView.Focused && TasView.AnyRowsSelected) + { + // TODO: if highlighting 2 rows and pasting 3, only paste 2 of them + // FCEUX Taseditor doesn't do this, but I think it is the expected behavior in editor programs + + // TODO: copy paste from PasteInsertMenuItem_Click! + IDataObject data = Clipboard.GetDataObject(); + if (data != null && data.GetDataPresent(DataFormats.StringFormat)) + { + string input = (string)data.GetData(DataFormats.StringFormat); + if (!string.IsNullOrWhiteSpace(input)) + { + string[] lines = input.Split('\n'); + if (lines.Length > 0) + { + _tasClipboard.Clear(); + int linesToPaste = lines.Length; + if (lines[lines.Length - 1].Length is 0) linesToPaste--; + for (int i = 0; i < linesToPaste; i++) + { + var line = ControllerFromMnemonicStr(lines[i]); + if (line == null) + { + return; + } + + _tasClipboard.Add(new TasClipboardEntry(i, line)); + } + + var rollbackFrame = CurrentTasMovie.CopyOverInput(TasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState)); + if (rollbackFrame > 0) + { + GoToLastEmulatedFrameIfNecessary(rollbackFrame); + DoAutoRestore(); + } + + FullRefresh(); + } + } + } + } + } + + private void PasteInsertMenuItem_Click(object sender, EventArgs e) + { + if (TasView.Focused && TasView.AnyRowsSelected) + { + // copy paste from PasteMenuItem_Click! + IDataObject data = Clipboard.GetDataObject(); + if (data != null && data.GetDataPresent(DataFormats.StringFormat)) + { + string input = (string)data.GetData(DataFormats.StringFormat); + if (!string.IsNullOrWhiteSpace(input)) + { + string[] lines = input.Split('\n'); + if (lines.Length > 0) + { + _tasClipboard.Clear(); + int linesToPaste = lines.Length; + if (lines[lines.Length - 1].Length is 0) linesToPaste--; + for (int i = 0; i < linesToPaste; i++) + { + var line = ControllerFromMnemonicStr(lines[i]); + if (line == null) + { + return; + } + + _tasClipboard.Add(new TasClipboardEntry(i, line)); + } + + var selectionStart = TasView.SelectionStartIndex; + var needsToRollback = selectionStart < Emulator.Frame; + CurrentTasMovie.InsertInput(selectionStart ?? 0, _tasClipboard.Select(static x => x.ControllerState)); + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(selectionStart!.Value); + DoAutoRestore(); + } + + FullRefresh(); + } + } + } + } + } + + private void CutMenuItem_Click(object sender, EventArgs e) + { + if (TasView.Focused && TasView.AnyRowsSelected) + { + var selectionStart = TasView.SelectionStartIndex; + var needsToRollback = selectionStart < Emulator.Frame; + var rollBackFrame = selectionStart ?? 0; + + _tasClipboard.Clear(); + var list = TasView.SelectedRows.ToArray(); + var sb = new StringBuilder(); + + foreach (var index in list) // copy of CopyMenuItem_Click() + { + var input = CurrentTasMovie.GetInputState(index); + if (input == null) + { + break; + } + + _tasClipboard.Add(new TasClipboardEntry(index, input)); + sb.AppendLine(Bk2LogEntryGenerator.GenerateLogEntry(input)); + } + + Clipboard.SetDataObject(sb.ToString()); + CurrentTasMovie.RemoveFrames(list); + SetSplicer(); + + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(rollBackFrame); + DoAutoRestore(); + } + + FullRefresh(); + } + } + + private void ClearFramesMenuItem_Click(object sender, EventArgs e) + { + if (TasView.Focused && TasView.AnyRowsSelected) + { + var firstWithInput = FirstNonEmptySelectedFrame; + bool needsToRollback = firstWithInput.HasValue && firstWithInput < Emulator.Frame; + var rollBackFrame = TasView.SelectionStartIndex ?? 0; + + CurrentTasMovie.ChangeLog.BeginNewBatch($"Clear frames {TasView.SelectionStartIndex}-{TasView.SelectionEndIndex}"); + foreach (int frame in TasView.SelectedRows) + { + CurrentTasMovie.ClearFrame(frame); + } + + CurrentTasMovie.ChangeLog.EndBatch(); + + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(rollBackFrame); + DoAutoRestore(); + } + + FullRefresh(); + } + } + + private void DeleteFramesMenuItem_Click(object sender, EventArgs e) + { + if (TasView.Focused && TasView.AnyRowsSelected) + { + var selectionStart = TasView.SelectionStartIndex; + var needsToRollback = selectionStart < Emulator.Frame; + var rollBackFrame = selectionStart ?? 0; + if (rollBackFrame >= CurrentTasMovie.InputLogLength) + { + // Cannot delete non-existent frames + FullRefresh(); + return; + } + + CurrentTasMovie.RemoveFrames(TasView.SelectedRows.ToArray()); + SetTasViewRowCount(); + SetSplicer(); + + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(rollBackFrame); + DoAutoRestore(); + } + + FullRefresh(); + } + } + + private void CloneFramesMenuItem_Click(object sender, EventArgs e) + { + CloneFramesXTimes(1); + } + + private void CloneFramesXTimesMenuItem_Click(object sender, EventArgs e) + { + using var framesPrompt = new FramesPrompt("Clone # Times", "Insert times to clone:"); + if (framesPrompt.ShowDialogOnScreen().IsOk()) + { + CloneFramesXTimes(framesPrompt.Frames); + } + } + + private void CloneFramesXTimes(int timesToClone) + { + for (int i = 0; i < timesToClone; i++) + { + if (TasView.Focused && TasView.AnyRowsSelected) + { + var framesToInsert = TasView.SelectedRows; + var insertionFrame = Math.Min((TasView.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); + var needsToRollback = TasView.SelectionStartIndex < Emulator.Frame; + + var inputLog = framesToInsert + .Select(frame => CurrentTasMovie.GetInputLogEntry(frame)) + .ToList(); + + CurrentTasMovie.InsertInput(insertionFrame, inputLog); + + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(insertionFrame); + DoAutoRestore(); + } + + FullRefresh(); + } + } + } + + private void InsertFrameMenuItem_Click(object sender, EventArgs e) + { + if (TasView.Focused && TasView.AnyRowsSelected) + { + var selectionStart = TasView.SelectionStartIndex; + var insertionFrame = selectionStart ?? 0; + var needsToRollback = selectionStart < Emulator.Frame; + + CurrentTasMovie.InsertEmptyFrame(insertionFrame); + + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(insertionFrame); + DoAutoRestore(); + } + + FullRefresh(); + } + } + + private void InsertNumFramesMenuItem_Click(object sender, EventArgs e) + { + if (TasView.Focused && TasView.AnyRowsSelected) + { + var insertionFrame = TasView.SelectionStartIndex ?? 0; + using var framesPrompt = new FramesPrompt(); + if (framesPrompt.ShowDialogOnScreen().IsOk()) + { + InsertNumFrames(insertionFrame, framesPrompt.Frames); + } + } + } + + private void TruncateMenuItem_Click(object sender, EventArgs e) + { + if (TasView.Focused && TasView.AnyRowsSelected) + { + var rollbackFrame = TasView.SelectionEndIndex ?? 0; + var needsToRollback = TasView.SelectionStartIndex < Emulator.Frame; + + CurrentTasMovie.Truncate(rollbackFrame); + MarkerControlMPR.MarkerInputRoll.TruncateSelection(CurrentTasMovie.Markers.Count - 1); + + if (needsToRollback) + { + GoToFrame(rollbackFrame); + } + + FullRefresh(); + } + } + + private void SetMarkersMenuItem_Click(object sender, EventArgs e) + { + var selectedRows = TasView.SelectedRows.ToList(); + if (selectedRows.Count > 50) + { + var result = DialogController.ShowMessageBox2("Are you sure you want to add more than 50 markers?", "Add markers", EMsgBoxIcon.Question, useOKCancel: true); + if (!result) + { + return; + } + } + + foreach (var index in selectedRows) + { + MarkerControlMPR.AddMarker(index); + } + } + + private void SetMarkerWithTextMenuItem_Click(object sender, EventArgs e) + { + MarkerControlMPR.AddMarker(TasView.AnyRowsSelected ? TasView.FirstSelectedRowIndex : 0, true); + } + + private void RemoveMarkersMenuItem_Click(object sender, EventArgs e) + { + CurrentTasMovie.Markers.RemoveAll(m => TasView.IsRowSelected(m.Frame)); + MarkerControlMPR.UpdateMarkerCount(); + RefreshDialog(); + } + + private void ClearGreenzoneMenuItem_Click(object sender, EventArgs e) + { + CurrentTasMovie.TasStateManager.Clear(); + RefreshDialog(); + } + + private void StateHistoryIntegrityCheckMenuItem_Click(object sender, EventArgs e) + { + if (!Emulator.DeterministicEmulation) + { + if (!DialogController.ShowMessageBox2("The emulator is not deterministic. It might fail even if the difference isn't enough to cause a desync.\nContinue with check?", "Not Deterministic")) + { + return; + } + } + + GoToFrame(0); + int lastState = 0; + int goToFrame = CurrentTasMovie.TasStateManager.Last; + do + { + MainForm.FrameAdvance(); + + byte[] greenZone = CurrentTasMovie.TasStateManager[Emulator.Frame]; + if (greenZone.Length > 0) + { + byte[] state = StatableEmulator.CloneSavestate(); + + if (!state.SequenceEqual(greenZone)) + { + if (DialogController.ShowMessageBox2($"Bad data between frames {lastState} and {Emulator.Frame}. Save the relevant state (raw data)?", "Integrity Failed!")) + { + var result = this.ShowFileSaveDialog(initDir: Config!.PathEntries.ToolsAbsolutePath(), initFileName: "integrity.fresh"); + if (result is not null) + { + File.WriteAllBytes(result, state); + var path = Path.ChangeExtension(result, ".greenzoned"); + File.WriteAllBytes(path, greenZone); + } + } + + return; + } + + lastState = Emulator.Frame; + } + } + while (Emulator.Frame < goToFrame); + + DialogController.ShowMessageBox("Integrity Check passed"); + } + + private void ConfigSubMenu_DropDownOpened(object sender, EventArgs e) + { + AutopauseAtEndOfMovieMenuItem.Checked = Settings.AutoPause; + AutosaveAsBk2MenuItem.Checked = Settings.AutosaveAsBk2; + AutosaveAsBackupFileMenuItem.Checked = Settings.AutosaveAsBackupFile; + BackupPerFileSaveMenuItem.Checked = Settings.BackupPerFileSave; + SingleClickAxisEditMenuItem.Checked = Settings.SingleClickAxisEdit; + OldControlSchemeForBranchesMenuItem.Checked = Settings.OldControlSchemeForBranches; + LoadBranchOnDoubleclickMenuItem.Checked = Settings.LoadBranchOnDoubleClick; + BindMarkersToInputMenuItem.Checked = CurrentTasMovie.BindMarkersToInput; + CopyIncludesFrameNoMenuItem.Checked = Settings.CopyIncludesFrameNo; + AutoadjustInputMenuItem.Checked = Settings.AutoadjustInput; + } + + private void SetMaxUndoLevelsMenuItem_Click(object sender, EventArgs e) + { + using var prompt = new InputPrompt + { + TextInputType = InputPrompt.InputType.Unsigned, + Message = "Number of Undo Levels to keep", + InitialValue = CurrentTasMovie.ChangeLog.MaxSteps.ToString() + }; + + var result = MainForm.DoWithTempMute(() => prompt.ShowDialogOnScreen()); + if (result.IsOk()) + { + int val = 0; + try + { + val = int.Parse(prompt.PromptText); + } + catch + { + DialogController.ShowMessageBox("Invalid Entry.", "Input Error", EMsgBoxIcon.Error); + } + + if (val > 0) + { + Settings.MaxUndoSteps = CurrentTasMovie.ChangeLog.MaxSteps = val; + } + } + } + + private void CopyIncludesFrameNoMenuItem_Click(object sender, EventArgs e) + => Settings.CopyIncludesFrameNo = !Settings.CopyIncludesFrameNo; + + private void AutoadjustInputMenuItem_Click(object sender, EventArgs e) + => Settings.AutoadjustInput = !Settings.AutoadjustInput; + + private void SetAutosaveIntervalMenuItem_Click(object sender, EventArgs e) + { + using var prompt = new InputPrompt + { + TextInputType = InputPrompt.InputType.Unsigned, + Message = "Autosave Interval in seconds\nSet to 0 to disable", + InitialValue = (Settings.AutosaveInterval / 1000).ToString() + }; + + var result = MainForm.DoWithTempMute(() => prompt.ShowDialogOnScreen()); + if (result.IsOk()) + { + uint val = uint.Parse(prompt.PromptText) * 1000; + Settings.AutosaveInterval = val; + if (val > 0) + { + _autosaveTimer.Interval = (int)val; + _autosaveTimer.Start(); + } + } + } + + private void AutosaveAsBk2MenuItem_Click(object sender, EventArgs e) + => Settings.AutosaveAsBk2 = !Settings.AutosaveAsBk2; + + private void AutosaveAsBackupFileMenuItem_Click(object sender, EventArgs e) + => Settings.AutosaveAsBackupFile = !Settings.AutosaveAsBackupFile; + + private void BackupPerFileSaveMenuItem_Click(object sender, EventArgs e) + => Settings.BackupPerFileSave = !Settings.BackupPerFileSave; + + private void ApplyPatternToPaintedInputMenuItem_CheckedChanged(object sender, EventArgs e) + { + onlyOnAutoFireColumnsToolStripMenuItem.Enabled = applyPatternToPaintedInputToolStripMenuItem.Checked; + } + + private void SingleClickAxisEditMenuItem_Click(object sender, EventArgs e) + => Settings.SingleClickAxisEdit = !Settings.SingleClickAxisEdit; + + private void BindMarkersToInputMenuItem_Click(object sender, EventArgs e) + { + Settings.BindMarkersToInput = CurrentTasMovie.BindMarkersToInput = BindMarkersToInputMenuItem.Checked; + } + + private void AutoPauseAtEndMenuItem_Click(object sender, EventArgs e) + => Settings.AutoPause = !Settings.AutoPause; + + private void AutoHoldMenuItem_CheckedChanged(object sender, EventArgs e) + { + if (autoHoldToolStripMenuItem.Checked) + { + autoFireToolStripMenuItem.Checked = false; + customPatternToolStripMenuItem.Checked = false; + + if (!keepSetPatternsToolStripMenuItem.Checked) + { + UpdateAutoFire(); + } + } + } + + private void AutoFireMenuItem_CheckedChanged(object sender, EventArgs e) + { + if (autoFireToolStripMenuItem.Checked) + { + autoHoldToolStripMenuItem.Checked = false; + customPatternToolStripMenuItem.Checked = false; + + if (!keepSetPatternsToolStripMenuItem.Checked) + { + UpdateAutoFire(); + } + } + } + + private void CustomPatternMenuItem_CheckedChanged(object sender, EventArgs e) + { + if (customPatternToolStripMenuItem.Checked) + { + autoHoldToolStripMenuItem.Checked = false; + autoFireToolStripMenuItem.Checked = false; + + if (!keepSetPatternsToolStripMenuItem.Checked) + { + UpdateAutoFire(); + } + } + } + + private void SetCustomsMenuItem_Click(object sender, EventArgs e) + { + // Exceptions in PatternsForm are not caught by the debugger, I have no idea why. + // Exceptions in UndoForm are caught, which makes it weirder. + var pForm = new PatternsFormMPR(this) { Owner = this }; + pForm.Show(); + } + + private void OldControlSchemeForBranchesMenuItem_Click(object sender, EventArgs e) + => Settings.OldControlSchemeForBranches = !Settings.OldControlSchemeForBranches; + + private void LoadBranchOnDoubleClickMenuItem_Click(object sender, EventArgs e) + => Settings.LoadBranchOnDoubleClick = !Settings.LoadBranchOnDoubleClick; + + private void HeaderMenuItem_Click(object sender, EventArgs e) + { + using MovieHeaderEditor form = new(CurrentTasMovie, Config) + { + Owner = Owner, + Location = this.ChildPointToScreen(TasView) + }; + form.ShowDialogOnScreen(); + } + + private void StateHistorySettingsMenuItem_Click(object sender, EventArgs e) + { + using GreenzoneSettings form = new( + DialogController, + new ZwinderStateManagerSettings(CurrentTasMovie.TasStateManager.Settings), + (s, k) => { CurrentTasMovie.TasStateManager.UpdateSettings(s, k); }, + false) + { + Owner = Owner, + Location = this.ChildPointToScreen(TasView) + }; + form.ShowDialogOnScreen(); + } + + private void CommentsMenuItem_Click(object sender, EventArgs e) + { + using EditCommentsForm form = new(CurrentTasMovie, false) + { + Owner = Owner, + StartPosition = FormStartPosition.Manual, + Location = this.ChildPointToScreen(TasView) + }; + form.ShowDialogOnScreen(); + } + + private void SubtitlesMenuItem_Click(object sender, EventArgs e) + { + using EditSubtitlesForm form = new( + DialogController, + CurrentTasMovie, + Config!.PathEntries, + readOnly: false) + { + Owner = Owner, + StartPosition = FormStartPosition.Manual, + Location = this.ChildPointToScreen(TasView) + }; + form.ShowDialogOnScreen(); + } + + private void DefaultStateSettingsMenuItem_Click(object sender, EventArgs e) + { + using GreenzoneSettings form = new( + DialogController, + new ZwinderStateManagerSettings(Config.Movies.DefaultTasStateManagerSettings), + (s, k) => { Config.Movies.DefaultTasStateManagerSettings = s; }, + true) + { + Owner = Owner, + Location = this.ChildPointToScreen(TasView) + }; + form.ShowDialogOnScreen(); + } + + private void SettingsSubMenu_DropDownOpened(object sender, EventArgs e) + { + RotateMenuItem.ShortcutKeyDisplayString = TasView.RotateHotkeyStr; + } + + private void HideLagFramesSubMenu_DropDownOpened(object sender, EventArgs e) + { + HideLagFrames0.Checked = TasView.LagFramesToHide == 0; + HideLagFrames1.Checked = TasView.LagFramesToHide == 1; + HideLagFrames2.Checked = TasView.LagFramesToHide == 2; + HideLagFrames3.Checked = TasView.LagFramesToHide == 3; + hideWasLagFramesToolStripMenuItem.Checked = TasView.HideWasLagFrames; + } + + private void IconsMenuItem_DropDownOpened(object sender, EventArgs e) + { + DenoteStatesWithIconsToolStripMenuItem.Checked = Settings.DenoteStatesWithIcons; + DenoteStatesWithBGColorToolStripMenuItem.Checked = Settings.DenoteStatesWithBGColor; + DenoteMarkersWithIconsToolStripMenuItem.Checked = Settings.DenoteMarkersWithIcons; + DenoteMarkersWithBGColorToolStripMenuItem.Checked = Settings.DenoteMarkersWithBGColor; + } + + private void FollowCursorMenuItem_DropDownOpened(object sender, EventArgs e) + { + alwaysScrollToolStripMenuItem.Checked = Settings.FollowCursorAlwaysScroll; + scrollToViewToolStripMenuItem.Checked = false; + scrollToTopToolStripMenuItem.Checked = false; + scrollToBottomToolStripMenuItem.Checked = false; + scrollToCenterToolStripMenuItem.Checked = false; + if (TasView.ScrollMethod == "near") + { + scrollToViewToolStripMenuItem.Checked = true; + } + else if (TasView.ScrollMethod == "top") + { + scrollToTopToolStripMenuItem.Checked = true; + } + else if (TasView.ScrollMethod == "bottom") + { + scrollToBottomToolStripMenuItem.Checked = true; + } + else + { + scrollToCenterToolStripMenuItem.Checked = true; + } + } + + private void RotateMenuItem_Click(object sender, EventArgs e) + { + TasView.HorizontalOrientation = !TasView.HorizontalOrientation; + CurrentTasMovie.FlagChanges(); + } + + private void HideLagFramesX_Click(object sender, EventArgs e) + { + TasView.LagFramesToHide = (int)((ToolStripMenuItem)sender).Tag; + MaybeFollowCursor(); + RefreshDialog(); + } + + private void HideWasLagFramesMenuItem_Click(object sender, EventArgs e) + => TasView.HideWasLagFrames = !TasView.HideWasLagFrames; + + private void AlwaysScrollMenuItem_Click(object sender, EventArgs e) + { + TasView.AlwaysScroll = Settings.FollowCursorAlwaysScroll = alwaysScrollToolStripMenuItem.Checked; + } + + private void ScrollToViewMenuItem_Click(object sender, EventArgs e) + { + TasView.ScrollMethod = Settings.FollowCursorScrollMethod = "near"; + } + + private void ScrollToTopMenuItem_Click(object sender, EventArgs e) + { + TasView.ScrollMethod = Settings.FollowCursorScrollMethod = "top"; + } + + private void ScrollToBottomMenuItem_Click(object sender, EventArgs e) + { + TasView.ScrollMethod = Settings.FollowCursorScrollMethod = "bottom"; + } + + private void ScrollToCenterMenuItem_Click(object sender, EventArgs e) + { + TasView.ScrollMethod = Settings.FollowCursorScrollMethod = "center"; + } + + private void DenoteStatesWithIconsToolStripMenuItem_Click(object sender, EventArgs e) + { + Settings.DenoteStatesWithIcons = DenoteStatesWithIconsToolStripMenuItem.Checked; + RefreshDialog(); + } + + private void DenoteStatesWithBGColorToolStripMenuItem_Click(object sender, EventArgs e) + { + Settings.DenoteStatesWithBGColor = DenoteStatesWithBGColorToolStripMenuItem.Checked; + RefreshDialog(); + } + + private void DenoteMarkersWithIconsToolStripMenuItem_Click(object sender, EventArgs e) + { + Settings.DenoteMarkersWithIcons = DenoteMarkersWithIconsToolStripMenuItem.Checked; + RefreshDialog(); + } + + private void DenoteMarkersWithBGColorToolStripMenuItem_Click(object sender, EventArgs e) + { + Settings.DenoteMarkersWithBGColor = DenoteMarkersWithBGColorToolStripMenuItem.Checked; + RefreshDialog(); + } + + private void ColorSettingsMenuItem_Click(object sender, EventArgs e) + { + using TAStudioColorSettingsFormMPR form = new(Palette, p => Settings.Palette = p) + { + Owner = Owner, + StartPosition = FormStartPosition.Manual, + Location = this.ChildPointToScreen(TasView) + }; + form.ShowDialogOnScreen(); + } + + private void WheelScrollSpeedMenuItem_Click(object sender, EventArgs e) + { + var inputPrompt = new InputPrompt + { + TextInputType = InputPrompt.InputType.Unsigned, + Message = "Frames per tick:", + InitialValue = TasView.ScrollSpeed.ToString() + }; + if (!this.ShowDialogWithTempMute(inputPrompt).IsOk()) return; + TasView.ScrollSpeed = int.Parse(inputPrompt.PromptText); + Settings.ScrollSpeed = TasView.ScrollSpeed; + } + + private void SetUpToolStripColumns() + { + ColumnsSubMenu.DropDownItems.Clear(); + + var columns = TasView.AllColumns + .Where(static c => !string.IsNullOrWhiteSpace(c.Text) && c.Name is not "FrameColumn") + .ToList(); + + int workingHeight = Screen.FromControl(this).WorkingArea.Height; + int rowHeight = ColumnsSubMenu.Height + 4; + int maxRows = workingHeight / rowHeight; + int keyCount = columns.Count(c => c.Name.StartsWithOrdinal("Key ")); + int keysMenusCount = (int)Math.Ceiling((double)keyCount / maxRows); + + var keysMenus = new ToolStripMenuItem[keysMenusCount]; + + for (int i = 0; i < keysMenus.Length; i++) + { + keysMenus[i] = new ToolStripMenuItem(); + } + + var playerMenus = new ToolStripMenuItem[Emulator.ControllerDefinition.PlayerCount + 1]; + playerMenus[0] = ColumnsSubMenu; + + for (int i = 1; i < playerMenus.Length; i++) + { + playerMenus[i] = new ToolStripMenuItem($"Player {i}"); + } + + foreach (var column in columns) + { + var menuItem = new ToolStripMenuItem + { + Text = $"{column.Text} ({column.Name})", + Checked = column.Visible, + CheckOnClick = true, + Tag = column.Name + }; + + menuItem.CheckedChanged += (o, ev) => + { + ToolStripMenuItem sender = (ToolStripMenuItem)o; + TasView.AllColumns.Find(c => c.Name == (string)sender.Tag).Visible = sender.Checked; + TasView.AllColumns.ColumnsChanged(); + CurrentTasMovie.FlagChanges(); + TasView.Refresh(); + ColumnsSubMenu.ShowDropDown(); + ((ToolStripMenuItem)sender.OwnerItem).ShowDropDown(); + }; + + if (column.Name.StartsWithOrdinal("Key ")) + { + keysMenus + .First(m => m.DropDownItems.Count < maxRows) + .DropDownItems + .Add(menuItem); + } + else + { + int player; + + if (column.Name.Length >= 2 && column.Name.StartsWith('P') && char.IsNumber(column.Name, 1)) + { + player = int.Parse(column.Name[1].ToString()); + } + else + { + player = 0; + } + + playerMenus[player].DropDownItems.Add(menuItem); + } + } + + foreach (var menu in keysMenus) + { + string text = $"Keys ({menu.DropDownItems[0].Tag} - {menu.DropDownItems[menu.DropDownItems.Count - 1].Tag})"; + menu.Text = text.Replace("Key ", ""); + ColumnsSubMenu.DropDownItems.Add(menu); + } + + for (int i = 1; i < playerMenus.Length; i++) + { + if (playerMenus[i].HasDropDownItems) + { + ColumnsSubMenu.DropDownItems.Add(playerMenus[i]); + } + } + + for (int i = 1; i < playerMenus.Length; i++) + { + if (playerMenus[i].HasDropDownItems) + { + ColumnsSubMenu.DropDownItems.Add(new ToolStripSeparator()); + break; + } + } + + if (keysMenus.Length > 0) + { + var item = new ToolStripMenuItem("Show Keys") + { + CheckOnClick = true, + Checked = false + }; + + foreach (var menu in keysMenus) + { + var dummyObject1 = menu; + item.CheckedChanged += (o, ev) => + { + foreach (ToolStripMenuItem menuItem in dummyObject1.DropDownItems) + { + menuItem.Checked = !menuItem.Checked; + } + + CurrentTasMovie.FlagChanges(); + TasView.AllColumns.ColumnsChanged(); + TasView.Refresh(); + }; + + ColumnsSubMenu.DropDownItems.Add(item); + } + } + + for (int i = 1; i < playerMenus.Length; i++) + { + if (playerMenus[i].HasDropDownItems) + { + var item = new ToolStripMenuItem($"Show Player {i}") + { + CheckOnClick = true, + Checked = playerMenus[i].DropDownItems.OfType().Any(mi => mi.Checked) + }; + + ToolStripMenuItem dummyObject = playerMenus[i]; + item.CheckedChanged += (o, ev) => + { + // TODO: preserve underlying button checked state and make this a master visibility control + foreach (ToolStripMenuItem menuItem in dummyObject.DropDownItems) + { + menuItem.Checked = item.Checked; + } + dummyObject.Visible = item.Checked; + + CurrentTasMovie.FlagChanges(); + TasView.AllColumns.ColumnsChanged(); + TasView.Refresh(); + }; + + ColumnsSubMenu.DropDownItems.Add(item); + } + } + } + + // ReSharper disable once UnusedMember.Local + [RestoreDefaults] + private void RestoreDefaults() + { + SetUpColumns(); + SetUpToolStripColumns(); + TasView.Refresh(); + CurrentTasMovie.FlagChanges(); + + MainVertialSplit.SplitterDistance = _defaultMainSplitDistance; + BranchesMarkersSplit.SplitterDistance = _defaultBranchMarkerSplitDistance; + } + + private void RightClickMenu_Opened(object sender, EventArgs e) + { + SetMarkersContextMenuItem.Enabled = + SelectBetweenMarkersContextMenuItem.Enabled = + RemoveMarkersContextMenuItem.Enabled = + DeselectContextMenuItem.Enabled = + ClearContextMenuItem.Enabled = + DeleteFramesContextMenuItem.Enabled = + CloneContextMenuItem.Enabled = + CloneXTimesContextMenuItem.Enabled = + InsertFrameContextMenuItem.Enabled = + InsertNumFramesContextMenuItem.Enabled = + TruncateContextMenuItem.Enabled = + TasView.AnyRowsSelected; + + pasteToolStripMenuItem.Enabled = + pasteInsertToolStripMenuItem.Enabled = + (Clipboard.GetDataObject()?.GetDataPresent(DataFormats.StringFormat) ?? false) + && TasView.AnyRowsSelected; + + var selectionIsSingleRow = TasView.SelectedRows.CountIsExactly(1); + StartNewProjectFromNowMenuItem.Visible = + selectionIsSingleRow + && TasView.IsRowSelected(Emulator.Frame) + && !CurrentTasMovie.StartsFromSaveRam; + + StartANewProjectFromSaveRamMenuItem.Visible = + selectionIsSingleRow + && SaveRamEmulator != null + && !CurrentTasMovie.StartsFromSavestate; + + StartFromNowSeparator.Visible = StartNewProjectFromNowMenuItem.Visible || StartANewProjectFromSaveRamMenuItem.Visible; + RemoveMarkersContextMenuItem.Enabled = CurrentTasMovie.Markers.Any(m => TasView.IsRowSelected(m.Frame)); // Disable the option to remove markers if no markers are selected (FCEUX does this). + CancelSeekContextMenuItem.Enabled = MainForm.PauseOnFrame.HasValue; + BranchContextMenuItem.Visible = TasView.CurrentCell?.RowIndex == Emulator.Frame; + + SelectBetweenMarkersContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Sel. bet. Markers"]; + ClearContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clear Frames"]; + DeleteFramesContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Delete Frames"]; + InsertFrameContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Insert Frame"]; + InsertNumFramesContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Insert # Frames"]; + CloneContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clone Frames"]; + CloneXTimesContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clone # Times"]; + } + + private void CancelSeekContextMenuItem_Click(object sender, EventArgs e) + { + MainForm.PauseOnFrame = null; + TasView.Refresh(); + } + + private void BranchContextMenuItem_Click(object sender, EventArgs e) + { + BookMarkControlMPR.Branch(); + } + + private void TASEditorManualOnlineMenuItem_Click(object sender, EventArgs e) + { + System.Diagnostics.Process.Start("http://www.fceux.com/web/help/taseditor/"); + } + + private void ForumThreadMenuItem_Click(object sender, EventArgs e) + { + System.Diagnostics.Process.Start("https://tasvideos.org/Forum/Topics/13505"); + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Navigation.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Navigation.cs new file mode 100644 index 00000000000..ea7feda4d80 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Navigation.cs @@ -0,0 +1,116 @@ +using BizHawk.Client.Common; + +namespace BizHawk.Client.EmuHawk +{ + public partial class TAStudioMPR + { + /// + /// Only goes to go to the frame if it is an event before current emulation, otherwise it is just a future event that can freely be edited + /// + private void GoToLastEmulatedFrameIfNecessary(int frame, bool OnLeftMouseDown = false) + { + if (frame != Emulator.Frame) // Don't go to a frame if you are already on it! + { + if (frame <= Emulator.Frame) + { + if ((MainForm.EmulatorPaused || !MainForm.IsSeeking) + && !CurrentTasMovie.LastPositionStable && !_playbackInterrupted) + { + LastPositionFrame = Emulator.Frame; + CurrentTasMovie.LastPositionStable = true; // until new frame is emulated + } + + GoToFrame(frame, false, false, OnLeftMouseDown); + } + else + { + _triggerAutoRestore = false; + } + } + } + + public void GoToFrame(int frame, bool fromLua = false, bool fromRewinding = false, bool OnLeftMouseDown = false) + { + // If seeking to a frame before or at the end of the movie, use StartAtNearestFrameAndEmulate + // Otherwise, load the latest state (if not already there) and seek while recording. + WasRecording = CurrentTasMovie.IsRecording() || WasRecording; + + if (frame <= CurrentTasMovie.InputLogLength) + { + // Get as close as we can then emulate there + StartAtNearestFrameAndEmulate(frame, fromLua, fromRewinding); + if (!OnLeftMouseDown) { MaybeFollowCursor(); } + } + else // Emulate to a future frame + { + if (frame == Emulator.Frame + 1) // We are at the end of the movie and advancing one frame, therefore we are recording, simply emulate a frame + { + bool wasPaused = MainForm.EmulatorPaused; + MainForm.FrameAdvance(); + if (!wasPaused) + { + MainForm.UnpauseEmulator(); + } + } + else + { + TastudioPlayMode(); + + var lastState = GetPriorStateForFramebuffer(frame); + if (lastState.Key > Emulator.Frame) + { + LoadState(lastState, true); + } + + StartSeeking(frame); + } + } + } + + public void GoToPreviousFrame() + { + if (Emulator.Frame > 0) + { + GoToFrame(Emulator.Frame - 1); + } + } + + public void GoToPreviousMarker() + { + if (Emulator.Frame > 0) + { + var prevMarker = CurrentTasMovie.Markers.Previous(Emulator.Frame); + var prev = prevMarker?.Frame ?? 0; + GoToFrame(prev); + } + } + + public void GoToNextMarker() + { + var nextMarker = CurrentTasMovie.Markers.Next(Emulator.Frame); + var next = nextMarker?.Frame ?? CurrentTasMovie.InputLogLength - 1; + GoToFrame(next); + } + + /// + /// Makes the given frame visible. If no frame is given, makes the current frame visible. + /// + public void SetVisibleFrame(int? frame = null) + { + if (TasView.AlwaysScroll && _leftButtonHeld) + { + return; + } + + TasView.ScrollToIndex(frame ?? Emulator.Frame); + } + + private void MaybeFollowCursor() + { + if (TasPlaybackBoxMPR.FollowCursor) + { + SetVisibleFrame(); + } + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs new file mode 100644 index 00000000000..e80623209e0 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -0,0 +1,1248 @@ +using System.Collections.Generic; +using System.Drawing; +using System.IO; +using System.Linq; +using System.Windows.Forms; +using System.ComponentModel; +using BizHawk.Client.Common; +using BizHawk.Client.EmuHawk.ToolExtensions; +using BizHawk.Client.EmuHawk.Properties; +using BizHawk.Common.StringExtensions; +using BizHawk.Emulation.Common; + +namespace BizHawk.Client.EmuHawk +{ + public partial class TAStudioMPR : ToolFormBase, IToolFormAutoConfig, IControlMainform + { + public static readonly FilesystemFilterSet TAStudioProjectsFSFilterSet = new(FilesystemFilter.TAStudioProjects); + + public static Icon ToolIcon + => Resources.TAStudioIcon; + + public override bool BlocksInputWhenFocused => IsInMenuLoop; + + public new IMainFormForTools MainForm => base.MainForm; + + public new IMovieSession MovieSession => base.MovieSession; + + // TODO: UI flow that conveniently allows to start from savestate + public ITasMovie CurrentTasMovie => MovieSession.Movie as ITasMovie; + + public bool IsInMenuLoop { get; private set; } + + private readonly List _tasClipboard = new List(); + private const string CursorColumnName = "CursorColumn"; + private const string FrameColumnName = "FrameColumn"; + private MovieEndAction _originalEndAction; // The movie end behavior selected by the user (that is overridden by TAStudio) + private UndoHistoryFormMPR _undoForm; + private Timer _autosaveTimer; + + private readonly int _defaultMainSplitDistance; + private readonly int _defaultBranchMarkerSplitDistance; + + private bool _initialized; + private bool _exiting; + private bool _engaged; + + private bool CanAutoload => Settings.RecentTas.AutoLoad && !string.IsNullOrEmpty(Settings.RecentTas.MostRecent); + + /// + /// Gets a value that separates "restore last position" logic from seeking caused by navigation. + /// TASEditor never kills LastPositionFrame, and it only pauses on it, if it hasn't been greenzoned beforehand and middle mouse button was pressed. + /// + public int LastPositionFrame { get; private set; } + + [ConfigPersist] + public TAStudioSettingsMPR Settings { get; set; } = new TAStudioSettingsMPR(); + + public TAStudioPaletteMPR Palette => Settings.Palette; + + [ConfigPersist] + public Font TasViewFont { get; set; } = new Font("Arial", 8.25F, FontStyle.Bold, GraphicsUnit.Point, 0); + + public class TAStudioSettingsMPR + { + public TAStudioSettingsMPR() + { + RecentTas = new RecentFiles(8); + AutoPause = true; + FollowCursor = true; + ScrollSpeed = 6; + FollowCursorAlwaysScroll = false; + FollowCursorScrollMethod = "near"; + AutosaveInterval = 120000; + AutosaveAsBk2 = false; + AutosaveAsBackupFile = false; + BackupPerFileSave = false; + SingleClickAxisEdit = false; + OldControlSchemeForBranches = false; + LoadBranchOnDoubleClick = true; + CopyIncludesFrameNo = false; + AutoadjustInput = false; + + // default to taseditor fashion + DenoteStatesWithIcons = false; + DenoteStatesWithBGColor = true; + DenoteMarkersWithIcons = false; + DenoteMarkersWithBGColor = true; + + Palette = TAStudioPaletteMPR.Default; + } + + public RecentFiles RecentTas { get; set; } + public bool AutoPause { get; set; } + public bool AutoRestoreLastPosition { get; set; } + public bool FollowCursor { get; set; } + public int ScrollSpeed { get; set; } + public bool FollowCursorAlwaysScroll { get; set; } + public string FollowCursorScrollMethod { get; set; } + public uint AutosaveInterval { get; set; } + public bool AutosaveAsBk2 { get; set; } + public bool AutosaveAsBackupFile { get; set; } + public bool BackupPerFileSave { get; set; } + public bool SingleClickAxisEdit { get; set; } + public bool OldControlSchemeForBranches { get; set; } // branch loading will behave differently depending on the recording mode + public bool LoadBranchOnDoubleClick { get; set; } + public bool DenoteStatesWithIcons { get; set; } + public bool DenoteStatesWithBGColor { get; set; } + public bool DenoteMarkersWithIcons { get; set; } + public bool DenoteMarkersWithBGColor { get; set; } + public int MainVerticalSplitDistance { get; set; } + public int BranchMarkerSplitDistance { get; set; } + public bool BindMarkersToInput { get; set; } + public bool CopyIncludesFrameNo { get; set; } + public bool AutoadjustInput { get; set; } + public TAStudioPaletteMPR Palette { get; set; } + public int MaxUndoSteps { get; set; } = 1000; + } + + public TAStudioMPR() + { + InitializeComponent(); + + RecentSubMenu.Image = Resources.Recent; + recentMacrosToolStripMenuItem.Image = Resources.Recent; + TASEditorManualOnlineMenuItem.Image = Resources.Help; + ForumThreadMenuItem.Image = Resources.TAStudio; + Icon = ToolIcon; + + _defaultMainSplitDistance = MainVertialSplit.SplitterDistance; + _defaultBranchMarkerSplitDistance = BranchesMarkersSplit.SplitterDistance; + + // TODO: show this at all times or hide it when saving is done? + ProgressBar.Visible = false; + + WantsToControlStopMovie = true; + WantsToControlRestartMovie = true; + TasPlaybackBoxMPR.TastudioMPR = this; + MarkerControlMPR.TastudioMPR = this; + BookMarkControlMPR.TastudioMPR = this; + TasView.QueryItemText += TasView_QueryItemText; + TasView.QueryItemBkColor += TasView_QueryItemBkColor; + TasView.QueryRowBkColor += TasView_QueryRowBkColor; + TasView.QueryItemIcon += TasView_QueryItemIcon; + TasView.QueryFrameLag += TasView_QueryFrameLag; + TasView.PointedCellChanged += TasView_PointedCellChanged; + LastPositionFrame = -1; + + BookMarkControlMPR.LoadedCallback = BranchLoaded; + BookMarkControlMPR.SavedCallback = BranchSaved; + BookMarkControlMPR.RemovedCallback = BranchRemoved; + TasView.MouseLeave += TAStudio_MouseLeave; + TasView.CellHovered += (_, e) => + { + if (e.NewCell.RowIndex is null) + { + toolTip1.Show(e.NewCell.Column!.Name, TasView, PointToClient(Cursor.Position)); + } + }; + } + + private void Tastudio_Load(object sender, EventArgs e) + { + if (!Engage()) + { + Close(); + return; + } + + if (TasView.Rotatable) + { + RightClickMenu.Items.AddRange(TasView.GenerateContextMenuItems() + .ToArray()); + + RightClickMenu.Items + .OfType() + .First(t => t.Name == "RotateMenuItem") + .Click += (o, ov) => { CurrentTasMovie.FlagChanges(); }; + } + + TasView.ScrollSpeed = Settings.ScrollSpeed; + TasView.AlwaysScroll = Settings.FollowCursorAlwaysScroll; + TasView.ScrollMethod = Settings.FollowCursorScrollMethod; + + _autosaveTimer = new Timer(components); + _autosaveTimer.Tick += AutosaveTimerEventProcessor; + if (Settings.AutosaveInterval > 0) + { + _autosaveTimer.Interval = (int)Settings.AutosaveInterval; + _autosaveTimer.Start(); + } + + MainVertialSplit.SetDistanceOrDefault( + Settings.MainVerticalSplitDistance, + _defaultMainSplitDistance); + + BranchesMarkersSplit.SetDistanceOrDefault( + Settings.BranchMarkerSplitDistance, + _defaultBranchMarkerSplitDistance); + + TasView.Font = TasViewFont; + RefreshDialog(); + _initialized = true; + } + + private bool LoadMostRecentOrStartNew() + { + return LoadFileWithFallback(Settings.RecentTas.MostRecent); + } + + private bool Engage() + { + _engaged = false; + MainForm.PauseOnFrame = null; + MainForm.PauseEmulator(); + bool success = false; + + // Nag if inaccurate core, but not if auto-loading or movie is already loaded + if (!CanAutoload && MovieSession.Movie.NotActive()) + { + // Nag but allow the user to continue anyway, so ignore the return value + MainForm.EnsureCoreIsAccurate(); + } + + // Start Scenario 1: A regular movie is active + if (MovieSession.Movie.IsActive() && MovieSession.Movie is not ITasMovie) + { + var changesString = "Would you like to save the current movie before closing it?"; + if (MovieSession.Movie.Changes) + { + changesString = "The current movie has unsaved changes. Would you like to save before closing it?"; + } + var result = DialogController.ShowMessageBox3( + "TAStudio will create a new project file from the current movie.\n\n" + changesString, + "Convert movie", + EMsgBoxIcon.Question); + if (result == true) + { + MovieSession.Movie.Save(); + } + else if (result == null) + { + return false; + } + + ConvertCurrentMovieToTasproj(); + success = StartNewMovieWrapper(CurrentTasMovie, isNew: false); + } + + // Start Scenario 2: A tasproj is already active + else if (MovieSession.Movie.IsActive() && MovieSession.Movie is ITasMovie) + { + success = LoadMovie(CurrentTasMovie, gotoFrame: Emulator.Frame); + if (!success) + { + success = StartNewTasMovie(); + } + } + + // Start Scenario 3: No movie, but user wants to autoload their last project + else if (CanAutoload) + { + success = LoadMostRecentOrStartNew(); + } + + // Start Scenario 4: No movie, default behavior of engaging tastudio with a new default project + else + { + success = StartNewTasMovie(); + } + + // Attempts to load failed, abort + if (!success) + { + Disengage(); + return false; + } + + MainForm.AddOnScreenMessage("TAStudio engaged"); + _originalEndAction = Config.Movies.MovieEndAction; + MainForm.DisableRewind(); + Config.Movies.MovieEndAction = MovieEndAction.Record; + MainForm.SetMainformMovieInfo(); + MovieSession.ReadOnly = true; + SetSplicer(); + + _engaged = true; + return true; + } + + private void AutosaveTimerEventProcessor(object sender, EventArgs e) + { + if (CurrentTasMovie == null) + { + return; + } + + if (!CurrentTasMovie.Changes || Settings.AutosaveInterval == 0 + || CurrentTasMovie.Filename == DefaultTasProjName()) + { + return; + } + + if (Settings.AutosaveAsBackupFile) + { + if (Settings.AutosaveAsBk2) + { + SaveTas(saveAsBk2: true, saveBackup: true); + } + else + { + SaveTas(saveBackup: true); + } + } + else + { + if (Settings.AutosaveAsBk2) + { + SaveTas(saveAsBk2: true); + } + else + { + SaveTas(); + } + } + } + + private static readonly string[] N64CButtonSuffixes = { " C Up", " C Down", " C Left", " C Right" }; + + private void SetUpColumns() + { + TasView.AllColumns.Clear(); + TasView.AllColumns.Add(new(name: CursorColumnName, widthUnscaled: 18, type: ColumnType.Boolean, text: string.Empty)); + TasView.AllColumns.Add(new(name: FrameColumnName, widthUnscaled: 60, text: "Frame#") + { + Rotatable = true, + }); + + foreach ((string name, string mnemonic0, int maxLength) in MnemonicMap()) + { + var mnemonic = Emulator.SystemId is VSystemID.Raw.N64 && N64CButtonSuffixes.Any(name.EndsWithOrdinal) + ? $"c{mnemonic0.ToUpperInvariant()}" // prepend 'c' to differentiate from L/R buttons -- this only affects the column headers + : mnemonic0; + + var type = ControllerType.Axes.ContainsKey(name) ? ColumnType.Axis : ColumnType.Boolean; + + TasView.AllColumns.Add(new( + name: name, + widthUnscaled: (maxLength * 6) + 14, // magic numbers reused in EditBranchTextPopUp() --feos // not since eb63fa5a9 (before 2.3.3) --yoshi + type: type, + text: mnemonic)); + } + + var columnsToHide = TasView.AllColumns + .Where(c => + // todo: make a proper user editable list? + c.Name == "Power" + || c.Name == "Reset" + || c.Name == "Light Sensor" + || c.Name == "Disc Select" + || c.Name == "Disk Index" + || c.Name == "Next Drive" + || c.Name == "Next Slot" + || c.Name == "Insert Disk" + || c.Name == "Eject Disk" + || c.Name.StartsWithOrdinal("Tilt") + || c.Name.StartsWithOrdinal("Key ") + || c.Name.StartsWithOrdinal("Open") + || c.Name.StartsWithOrdinal("Close") + || c.Name.EndsWithOrdinal("Tape") + || c.Name.EndsWithOrdinal("Disk") + || c.Name.EndsWithOrdinal("Block") + || c.Name.EndsWithOrdinal("Status")); + + if (Emulator.SystemId is VSystemID.Raw.N64) + { + var fakeAnalogControls = TasView.AllColumns + .Where(c => + c.Name.EndsWithOrdinal("A Up") + || c.Name.EndsWithOrdinal("A Down") + || c.Name.EndsWithOrdinal("A Left") + || c.Name.EndsWithOrdinal("A Right")); + + columnsToHide = columnsToHide.Concat(fakeAnalogControls); + } + + foreach (var column in columnsToHide) + { + column.Visible = false; + } + + foreach (var column in TasView.VisibleColumns) + { + if (InputManager.StickyHoldController.IsSticky(column.Name) || InputManager.StickyAutofireController.IsSticky(column.Name)) + { + column.Emphasis = true; + } + } + + TasView.AllColumns.ColumnsChanged(); + } + + private void SetupCustomPatterns() + { + // custom autofire patterns to allow configuring a unique pattern for each button or axis + BoolPatterns = new AutoPatternBool[ControllerType.BoolButtons.Count]; + AxisPatterns = new AutoPatternAxis[ControllerType.Axes.Count]; + + for (int i = 0; i < BoolPatterns.Length; i++) + { + // standard 1 on 1 off autofire pattern + BoolPatterns[i] = new AutoPatternBool(1, 1); + } + + for (int i = 0; i < AxisPatterns.Length; i++) + { + // autohold pattern with the maximum axis range as hold value (bit arbitrary) + var axisSpec = ControllerType.Axes[ControllerType.Axes[i]]; + AxisPatterns[i] = new AutoPatternAxis([ axisSpec.Range.EndInclusive ]); + } + } + + /// for Lua + public void AddColumn(string name, string text, int widthUnscaled) + => TasView.AllColumns.Add(new(name: name, widthUnscaled: widthUnscaled, type: ColumnType.Text, text: text)); + + public void LoadBranchByIndex(int index) => BookMarkControlMPR.LoadBranchExternal(index); + public void ClearFramesExternal() => ClearFramesMenuItem_Click(null, null); + public void InsertFrameExternal() => InsertFrameMenuItem_Click(null, null); + public void InsertNumFramesExternal() => InsertNumFramesMenuItem_Click(null, null); + public void DeleteFramesExternal() => DeleteFramesMenuItem_Click(null, null); + public void CloneFramesExternal() => CloneFramesMenuItem_Click(null, null); + public void CloneFramesXTimesExternal() => CloneFramesXTimesMenuItem_Click(null, null); + public void UndoExternal() => UndoMenuItem_Click(null, null); + public void RedoExternal() => RedoMenuItem_Click(null, null); + public void SelectBetweenMarkersExternal() => SelectBetweenMarkersMenuItem_Click(null, null); + public void SelectAllExternal() => SelectAllMenuItem_Click(null, null); + public void ReselectClipboardExternal() => ReselectClipboardMenuItem_Click(null, null); + + public IMovieController GetBranchInput(string branchId, int frame) + { + var branch = CurrentTasMovie.Branches.FirstOrDefault(b => b.Uuid.ToString() == branchId); + if (branch == null || frame >= branch.InputLog.Count) + { + return null; + } + + var controller = MovieSession.GenerateMovieController(); + controller.SetFromMnemonic(branch.InputLog[frame]); + return controller; + } + + private int? FirstNonEmptySelectedFrame + { + get + { + var empty = Bk2LogEntryGenerator.EmptyEntry(MovieSession.MovieController); + foreach (var row in TasView.SelectedRows) + { + if (CurrentTasMovie[row].LogEntry != empty) + { + return row; + } + } + + return null; + } + } + + private void ConvertCurrentMovieToTasproj() + { + MovieSession.ConvertToTasProj(); + Settings.RecentTas.Add(MovieSession.Movie.Filename); + MainForm.SetMainformMovieInfo(); + } + + private bool LoadMovie(ITasMovie tasMovie, bool startsFromSavestate = false, int gotoFrame = 0) + { + _engaged = false; + + if (!StartNewMovieWrapper(tasMovie, isNew: false)) + { + return false; + } + + _engaged = true; + Settings.RecentTas.Add(CurrentTasMovie.Filename); // only add if it did load + + if (startsFromSavestate) + { + GoToFrame(0); + } + else if (gotoFrame > 0) + { + GoToFrame(gotoFrame); + } + else + { + GoToFrame(CurrentTasMovie.TasSession.CurrentFrame); + } + + // clear all selections + TasView.DeselectAll(); + BookMarkControlMPR.Restart(); + MarkerControlMPR.Restart(); + + RefreshDialog(); + return true; + } + + private bool StartNewTasMovie() + { + if (!AskSaveChanges()) + { + return false; + } + + if (Game.IsNullInstance()) throw new InvalidOperationException("how is TAStudio open with no game loaded? please report this including as much detail as possible"); + + var filename = DefaultTasProjName(); // TODO don't do this, take over any mainform actions that can crash without a filename + var tasMovie = (ITasMovie)MovieSession.Get(filename); + tasMovie.Author = Config.DefaultAuthor; + + bool success = StartNewMovieWrapper(tasMovie, isNew: true); + + if (success) + { + // clear all selections + TasView.DeselectAll(); + BookMarkControlMPR.Restart(); + MarkerControlMPR.Restart(); + RefreshDialog(); + } + + return success; + } + + private bool StartNewMovieWrapper(ITasMovie movie, bool isNew) + { + _initializing = true; + + movie.InputRollSettingsForSave = () => TasView.UserSettingsSerialized(); + movie.BindMarkersToInput = Settings.BindMarkersToInput; + movie.GreenzoneInvalidated = GreenzoneInvalidated; + movie.ChangeLog.MaxSteps = Settings.MaxUndoSteps; + movie.PropertyChanged += TasMovie_OnPropertyChanged; + + SuspendLayout(); + WantsToControlStopMovie = false; + bool result = MainForm.StartNewMovie(movie, isNew); + WantsToControlStopMovie = true; + ResumeLayout(); + if (result) + { + BookMarkControlMPR.UpdateTextColumnWidth(); + MarkerControlMPR.UpdateTextColumnWidth(); + TastudioPlayMode(); + UpdateWindowTitle(); + if (CurrentTasMovie.InputRollSettings != null) + { + TasView.LoadSettingsSerialized(CurrentTasMovie.InputRollSettings); + } + else + { + SetUpColumns(); + } + SetUpToolStripColumns(); + SetupCustomPatterns(); + UpdateAutoFire(); + } + + _initializing = false; + + return result; + } + + private void DummyLoadProject(string path) + { + if (AskSaveChanges()) + { + LoadFileWithFallback(path); + } + } + + private bool LoadFileWithFallback(string path) + { + bool movieLoadSucceeded = false; + + if (!File.Exists(path)) + { + Settings.RecentTas.HandleLoadError(MainForm, path); + } + else + { + var movie = MovieSession.Get(path, loadMovie: true); + var tasMovie = movie as ITasMovie ?? movie.ToTasMovie(); + movieLoadSucceeded = LoadMovie(tasMovie); + } + + if (!movieLoadSucceeded) + { + movieLoadSucceeded = StartNewTasMovie(); + _engaged = true; + } + + return movieLoadSucceeded; + } + + private void DummyLoadMacro(string path) + { + if (!TasView.AnyRowsSelected) + { + return; + } + + var loadZone = new MovieZone(path, MainForm, Emulator, MovieSession, Tools) + { + Start = TasView.SelectionStartIndex!.Value, + }; + loadZone.PlaceZone(CurrentTasMovie, Config); + } + + private void TastudioToggleReadOnly() + { + TasPlaybackBoxMPR.RecordingMode = !TasPlaybackBoxMPR.RecordingMode; + WasRecording = TasPlaybackBoxMPR.RecordingMode; // hard reset at manual click and hotkey + } + + private void TastudioPlayMode(bool resetWasRecording = false) + { + TasPlaybackBoxMPR.RecordingMode = false; + + // once user started editing, rec mode is unsafe + if (resetWasRecording) + { + WasRecording = TasPlaybackBoxMPR.RecordingMode; + } + } + + private void TastudioRecordMode(bool resetWasRecording = false) + { + TasPlaybackBoxMPR.RecordingMode = true; + + if (resetWasRecording) + { + WasRecording = TasPlaybackBoxMPR.RecordingMode; + } + } + + private void TastudioStopMovie() + { + MovieSession.StopMovie(false); + MainForm.SetMainformMovieInfo(); + } + + private void Disengage() + { + _engaged = false; + MainForm.PauseOnFrame = null; + MainForm.AddOnScreenMessage("TAStudio disengaged"); + Config.Movies.MovieEndAction = _originalEndAction; + WantsToControlRewind = false; + MainForm.EnableRewind(true); + MainForm.SetMainformMovieInfo(); + } + + private const string DefaultTasProjectName = "default"; + + // Used when starting a new project + private string DefaultTasProjName() + { + return Path.Combine( + Config.PathEntries.MovieAbsolutePath(), + $"{DefaultTasProjectName}.{MovieService.TasMovieExtension}"); + } + + // Used for things like SaveFile dialogs to suggest a name to the user + private string SuggestedTasProjName() + { + return Path.Combine( + Config.PathEntries.MovieAbsolutePath(), + $"{Game.FilesystemSafeName()}.{MovieService.TasMovieExtension}"); + } + + private void SaveTas(bool saveAsBk2 = false, bool saveBackup = false) + { + if (string.IsNullOrEmpty(CurrentTasMovie.Filename) || CurrentTasMovie.Filename == DefaultTasProjName()) return; + + _autosaveTimer.Stop(); + MessageStatusLabel.Text = saveBackup + ? "Saving backup..." + : "Saving..."; + MessageStatusLabel.Owner.Update(); + Cursor = Cursors.WaitCursor; + + IMovie movieToSave = CurrentTasMovie; + if (saveAsBk2) + { + movieToSave = CurrentTasMovie.ToBk2(); + movieToSave.Attach(Emulator); + } + + if (saveBackup) + movieToSave.SaveBackup(); + else + movieToSave.Save(); + + MessageStatusLabel.Text = saveBackup + ? $"Backup .{(saveAsBk2 ? MovieService.StandardMovieExtension : MovieService.TasMovieExtension)} saved to \"Movie backups\" path." + : "File saved."; + Cursor = Cursors.Default; + if (Settings.AutosaveInterval > 0) + { + _autosaveTimer.Start(); + } + } + + private void SaveAsTas() + { + _autosaveTimer.Stop(); + + var filename = CurrentTasMovie.Filename; + if (string.IsNullOrWhiteSpace(filename) || filename == DefaultTasProjName()) + { + filename = SuggestedTasProjName(); + } + + var fileInfo = SaveFileDialog( + currentFile: filename, + path: Config!.PathEntries.MovieAbsolutePath(), + TAStudioProjectsFSFilterSet, + this); + + if (fileInfo != null) + { + MessageStatusLabel.Text = "Saving..."; + MessageStatusLabel.Owner.Update(); + Cursor = Cursors.WaitCursor; + CurrentTasMovie.Filename = fileInfo.FullName; + CurrentTasMovie.Save(); + Settings.RecentTas.Add(CurrentTasMovie.Filename); + MessageStatusLabel.Text = "File saved."; + Cursor = Cursors.Default; + } + + if (Settings.AutosaveInterval > 0) + { + _autosaveTimer.Start(); + } + + UpdateWindowTitle(); // changing the movie's filename does not flag changes, so we need to ensure the window title is always updated + MainForm.UpdateWindowTitle(); + } + + protected override string WindowTitle + => CurrentTasMovie == null + ? "TAStudio" + : CurrentTasMovie.Changes + ? $"TAStudio - {CurrentTasMovie.Name}*" + : $"TAStudio - {CurrentTasMovie.Name}"; + + protected override string WindowTitleStatic => "TAStudio"; + + public IEnumerable GetSelection() => TasView.SelectedRows; + + // Slow but guarantees the entire dialog refreshes + private void FullRefresh() + { + SetTasViewRowCount(); + TasView.Refresh(); // An extra refresh potentially but we need to guarantee + MarkerControlMPR.UpdateValues(); + BookMarkControlMPR.UpdateValues(); + + if (_undoForm != null && !_undoForm.IsDisposed) + { + _undoForm.UpdateValues(); + } + } + + public void RefreshDialog(bool refreshTasView = true, bool refreshBranches = true) + { + if (_exiting) + { + return; + } + + if (refreshTasView) + { + SetTasViewRowCount(); + } + + MarkerControlMPR?.UpdateValues(); + + if (refreshBranches) + { + BookMarkControlMPR?.UpdateValues(); + } + + if (_undoForm != null && !_undoForm.IsDisposed) + { + _undoForm.UpdateValues(); + } + } + + public void RefreshForInputChange(int firstChangedFrame) + { + if (TasView.IsPartiallyVisible(firstChangedFrame) || firstChangedFrame < TasView.FirstVisibleRow) + { + RefreshDialog(); + } + } + + private void SetTasViewRowCount() + { + TasView.RowCount = CurrentTasMovie.InputLogLength + 1; + _lastRefresh = Emulator.Frame; + } + + public void DoAutoRestore() + { + if (Settings.AutoRestoreLastPosition && LastPositionFrame != -1) + { + if (LastPositionFrame > Emulator.Frame) // Don't unpause if we are already on the desired frame, else runaway seek + { + StartSeeking(LastPositionFrame); + } + } + else + { + if (_autoRestorePaused.HasValue && !_autoRestorePaused.Value) + { + // this happens when we're holding the left button while unpaused - view scrolls down, new input gets drawn, seek pauses + MainForm.UnpauseEmulator(); + } + + _autoRestorePaused = null; + } + } + + /// + /// Get a savestate prior to the previous frame so code following the call can frame advance and have a framebuffer. + /// If frame is 0, return the initial state. + /// + private KeyValuePair GetPriorStateForFramebuffer(int frame) + { + return CurrentTasMovie.TasStateManager.GetStateClosestToFrame(frame > 0 ? frame - 1 : 0); + } + + private void StartAtNearestFrameAndEmulate(int frame, bool fromLua, bool fromRewinding) + { + if (frame == Emulator.Frame) + { + return; + } + + _unpauseAfterSeeking = (fromRewinding || WasRecording) && !MainForm.EmulatorPaused; + TastudioPlayMode(); + var closestState = GetPriorStateForFramebuffer(frame); + if (closestState.Value.Length > 0 && (frame < Emulator.Frame || closestState.Key > Emulator.Frame)) + { + LoadState(closestState, true); + } + closestState.Value.Dispose(); + + if (fromLua) + { + bool wasPaused = MainForm.EmulatorPaused; + + // why not use this? because I'm not letting the form freely run. it all has to be under this loop. + // i could use this and then poll StepRunLoop_Core() repeatedly, but.. that's basically what I'm doing + // PauseOnFrame = frame; + + while (Emulator.Frame != frame) + { + MainForm.SeekFrameAdvance(); + } + + if (!wasPaused) + { + MainForm.UnpauseEmulator(); + } + + // lua botting users will want to re-activate record mode automatically -- it should be like nothing ever happened + if (WasRecording) + { + TastudioRecordMode(); + } + + // now the next section won't happen since we're at the right spot + } + + // frame == Emulator.Frame when frame == 0 + if (frame > Emulator.Frame) + { + // make seek frame keep up with emulation on fast scrolls + if (MainForm.EmulatorPaused || MainForm.IsSeeking || fromRewinding || WasRecording) + { + StartSeeking(frame); + } + else + { + // GUI users may want to be protected from clobbering their video when skipping around... + // well, users who are rewinding aren't. (that gets done through the seeking system in the call above) + // users who are clicking around.. I don't know. + } + } + } + + public void LoadState(KeyValuePair state, bool discardApiHawkSurfaces = false) + { + StatableEmulator.LoadStateBinary(new BinaryReader(state.Value)); + + if (state.Key == 0 && CurrentTasMovie.StartsFromSavestate) + { + Emulator.ResetCounters(); + } + + UpdateTools(); + if (discardApiHawkSurfaces) + { + DisplayManager.DiscardApiHawkSurfaces(); + } + } + + public void AddBranchExternal() => BookMarkControlMPR.AddBranchExternal(); + public void RemoveBranchExternal() => BookMarkControlMPR.RemoveBranchExternal(); + + private void UpdateTools() + { + Tools.UpdateToolsBefore(); + Tools.UpdateToolsAfter(); + } + + public void TogglePause() + { + MainForm.TogglePause(); + } + + private void SetSplicer() + { + // TODO: columns selected? + var selectedRowCount = TasView.SelectedRows.Count(); + var temp = $"Selected: {selectedRowCount} {(selectedRowCount == 1 ? "frame" : "frames")}, States: {CurrentTasMovie.TasStateManager.Count}"; + if (_tasClipboard.Any()) temp += $", Clipboard: {_tasClipboard.Count} {(_tasClipboard.Count == 1 ? "frame" : "frames")}"; + SplicerStatusLabel.Text = temp; + } + + private void DoTriggeredAutoRestoreIfNeeded() + { + // Disable the seek that could have been initiated when painting. + // This must done before DoAutoRestore, otherwise it would disable the auto-restore seek. + if (_playbackInterrupted) + { + MainForm.PauseOnFrame = null; + } + + if (_triggerAutoRestore) + { + TastudioPlayMode(true); // once user started editing, rec mode is unsafe + DoAutoRestore(); + + _triggerAutoRestore = false; + _autoRestorePaused = null; + } + + if (_playbackInterrupted) + { + MainForm.UnpauseEmulator(); + _playbackInterrupted = false; + } + } + + public void InsertNumFrames(int insertionFrame, int numberOfFrames) + { + if (insertionFrame <= CurrentTasMovie.InputLogLength) + { + var needsToRollback = TasView.SelectionStartIndex < Emulator.Frame; + + CurrentTasMovie.InsertEmptyFrame(insertionFrame, numberOfFrames); + + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(insertionFrame); + DoAutoRestore(); + } + else + { + RefreshForInputChange(insertionFrame); + } + } + } + + public void DeleteFrames(int beginningFrame, int numberOfFrames) + { + if (beginningFrame < CurrentTasMovie.InputLogLength) + { + int[] framesToRemove = Enumerable.Range(beginningFrame, numberOfFrames).ToArray(); + CurrentTasMovie.RemoveFrames(framesToRemove); + SetSplicer(); + + var needsToRollback = beginningFrame < Emulator.Frame; + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(beginningFrame); + DoAutoRestore(); + } + else + { + RefreshForInputChange(beginningFrame); + } + } + } + + public void ClearFrames(int beginningFrame, int numberOfFrames) + { + if (beginningFrame < CurrentTasMovie.InputLogLength) + { + var needsToRollback = TasView.SelectionStartIndex < Emulator.Frame; + int last = Math.Min(beginningFrame + numberOfFrames, CurrentTasMovie.InputLogLength); + for (int i = beginningFrame; i < last; i++) + { + CurrentTasMovie.ClearFrame(i); + } + + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(beginningFrame); + DoAutoRestore(); + } + else + { + RefreshForInputChange(beginningFrame); + } + } + } + + private void Tastudio_Closing(object sender, FormClosingEventArgs e) + { + if (!_initialized) + { + return; + } + + _exiting = true; + + if (AskSaveChanges()) + { + WantsToControlStopMovie = false; + TastudioStopMovie(); + Disengage(); + } + else + { + e.Cancel = true; + _exiting = false; + } + + _undoForm?.Close(); + } + + /// + /// This method is called every time the Changes property is toggled on a instance. + /// + private void TasMovie_OnPropertyChanged(object sender, PropertyChangedEventArgs e) + { + UpdateWindowTitle(); + } + + private void TAStudio_DragDrop(object sender, DragEventArgs e) + { + // TODO: Maybe this should call Mainform's DragDrop method, + // since that can file types that are not movies, + // and it can process multiple files sequentially + var filePaths = (string[])e.Data.GetData(DataFormats.FileDrop); + LoadMovieFile(filePaths[0]); + } + + private void TAStudio_MouseLeave(object sender, EventArgs e) + { + toolTip1.SetToolTip(TasView, null); + DoTriggeredAutoRestoreIfNeeded(); + } + + protected override bool ProcessCmdKey(ref Message msg, Keys keyData) + { + if (keyData == Keys.Tab + || keyData == (Keys.Shift | Keys.Tab) + || keyData == Keys.Space) + { + return true; + } + + return base.ProcessCmdKey(ref msg, keyData); + } + + private bool AutoAdjustInput() + { + var lagLog = CurrentTasMovie[Emulator.Frame - 1]; // Minus one because get frame is +1; + bool isLag = Emulator.AsInputPollable().IsLagFrame; + + if (lagLog.WasLagged.HasValue) + { + if (lagLog.WasLagged.Value && !isLag) + { + // remove all consecutive was-lag frames in batch like taseditor + // current frame has no lag so they will all have to go anyway + var framesToRemove = new List{ Emulator.Frame - 1 }; + for (int frame = Emulator.Frame; CurrentTasMovie[frame].WasLagged.HasValue; frame++) + { + if (CurrentTasMovie[frame].WasLagged.Value) + { + framesToRemove.Add(frame); + } + else + { + break; + } + } + + // Deleting this frame requires rewinding a frame. + CurrentTasMovie.ChangeLog.AddInputBind(Emulator.Frame - 1, true, $"Bind Input; Delete {Emulator.Frame - 1}"); + bool wasRecording = CurrentTasMovie.ChangeLog.IsRecording; + CurrentTasMovie.ChangeLog.IsRecording = false; + CurrentTasMovie.RemoveFrames(framesToRemove); + foreach (int f in framesToRemove) + { + CurrentTasMovie.LagLog.RemoveHistoryAt(f + 1); // Removes from WasLag + } + CurrentTasMovie.ChangeLog.IsRecording = wasRecording; + + CurrentTasMovie.LastPositionStable = true; + GoToLastEmulatedFrameIfNecessary(Emulator.Frame - 1); + if (!MainForm.HoldFrameAdvance) + { + MainForm.PauseOnFrame = LastPositionFrame; + } + return true; + } + + if (!lagLog.WasLagged.Value && isLag) + { + // (it shouldn't need to rewind, since the inserted input wasn't polled) + CurrentTasMovie.ChangeLog.AddInputBind(Emulator.Frame - 1, false, $"Bind Input; Insert {Emulator.Frame - 1}"); + bool wasRecording = CurrentTasMovie.ChangeLog.IsRecording; + CurrentTasMovie.ChangeLog.IsRecording = false; + + CurrentTasMovie.InsertInput(Emulator.Frame - 1, CurrentTasMovie.GetInputLogEntry(Emulator.Frame - 2)); + CurrentTasMovie.LagLog.InsertHistoryAt(Emulator.Frame, true); + + CurrentTasMovie.ChangeLog.IsRecording = wasRecording; + return true; + } + } + + return false; + } + + private void MainVerticalSplit_SplitterMoved(object sender, SplitterEventArgs e) + { + Settings.MainVerticalSplitDistance = MainVertialSplit.SplitterDistance; + } + + private void BranchesMarkersSplit_SplitterMoved(object sender, SplitterEventArgs e) + { + Settings.BranchMarkerSplitDistance = BranchesMarkersSplit.SplitterDistance; + } + + private void TasView_CellDropped(object sender, InputRoll.CellEventArgs e) + { + if (e.NewCell?.RowIndex != null && !CurrentTasMovie.Markers.IsMarker(e.NewCell.RowIndex.Value)) + { + var currentMarker = CurrentTasMovie.Markers.Single(m => m.Frame == e.OldCell.RowIndex.Value); + int newFrame = e.NewCell.RowIndex.Value; + var newMarker = new TasMovieMarker(newFrame, currentMarker.Message); + CurrentTasMovie.Markers.Remove(currentMarker); + CurrentTasMovie.Markers.Add(newMarker); + RefreshDialog(); + } + } + + private void TASMenu_MenuActivate(object sender, EventArgs e) + { + IsInMenuLoop = true; + } + + private void TASMenu_MenuDeactivate(object sender, EventArgs e) + { + IsInMenuLoop = false; + } + + // Stupid designer + protected void DragEnterWrapper(object sender, DragEventArgs e) + { + GenericDragEnter(sender, e); + } + + private void SetFontMenuItem_Click(object sender, EventArgs e) + { + using var fontDialog = new FontDialog + { + ShowColor = false, + Font = TasView.Font + }; + if (fontDialog.ShowDialog() != DialogResult.Cancel) + { + TasView.Font = TasViewFont = fontDialog.Font; + TasView.Refresh(); + } + } + + private IMovieController ControllerFromMnemonicStr(string inputLogEntry) + { + try + { + var controller = MovieSession.GenerateMovieController(); + controller.SetFromMnemonic(inputLogEntry); + + return controller; + } + catch (Exception) + { + DialogController.ShowMessageBox($"Invalid mnemonic string: {inputLogEntry}", "Paste Input failed!"); + return null; + } + } + + private IEnumerable<(string Name, string Mnemonic, int MaxLength)> MnemonicMap() + { + if (MovieSession.MovieController.Definition.MnemonicsCache is null) + throw new InvalidOperationException("Can't build mnemonic map with empty mnemonics cache"); + + foreach (var playerControls in MovieSession.MovieController.Definition.ControlsOrdered) + { + foreach ((string name, AxisSpec? axisSpec) in playerControls) + { + if (axisSpec.HasValue) + { + string mnemonic = Bk2MnemonicLookup.LookupAxis(name, MovieSession.Movie.SystemID); + yield return (name, mnemonic, Math.Max(mnemonic.Length, axisSpec.Value.MaxDigits)); + } + else + { + yield return (name, MovieSession.MovieController.Definition.MnemonicsCache[name].ToString(), 1); + } + } + } + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.resx b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.resx new file mode 100644 index 00000000000..2de40e63762 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.resx @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + 121, 17 + + + 249, 17 + + + 388, 17 + + \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioPaletteMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioPaletteMPR.cs new file mode 100644 index 00000000000..5442ecc87b2 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioPaletteMPR.cs @@ -0,0 +1,86 @@ +using System.Drawing; + +namespace BizHawk.Client.EmuHawk +{ + /// + /// TODO these colours are obviously related in some way, calculate the lighter/darker shades from a base colour + /// (I've already used CurrentFrame_InputLog in the definition of SeekFrame_InputLog, they differed only in alpha) + /// --yoshi + /// + public readonly struct TAStudioPaletteMPR + { + public static readonly TAStudioPaletteMPR Default = new( +// currentFrame_FrameCol: Color.FromArgb(0xCF, 0xED, 0xFC), + currentFrame_InputLog: Color.FromArgb(0xB5, 0xE7, 0xF7), + greenZone_FrameCol: Color.FromArgb(0xDD, 0xFF, 0xDD), + greenZone_InputLog: Color.FromArgb(0xD2, 0xF9, 0xD3), + greenZone_InputLog_Stated: Color.FromArgb(0xC4, 0xF7, 0xC8), + greenZone_InputLog_Invalidated: Color.FromArgb(0xE0, 0xFB, 0xE0), + lagZone_FrameCol: Color.FromArgb(0xFF, 0xDC, 0xDD), + lagZone_InputLog: Color.FromArgb(0xF4, 0xDA, 0xDA), + lagZone_InputLog_Stated: Color.FromArgb(0xF0, 0xD0, 0xD2), + lagZone_InputLog_Invalidated: Color.FromArgb(0xF7, 0xE5, 0xE5), + marker_FrameCol: Color.FromArgb(0xF7, 0xFF, 0xC9), + analogEdit_Col: Color.FromArgb(0x90, 0x90, 0x70)); // SuuperW: When editing an analog value, it will be a gray color. + +// public readonly Color CurrentFrame_FrameCol; + + public readonly Color CurrentFrame_InputLog; + +// public readonly Color SeekFrame_InputLog; + + public readonly Color GreenZone_FrameCol; + + public readonly Color GreenZone_InputLog; + + public readonly Color GreenZone_InputLog_Stated; + + public readonly Color GreenZone_InputLog_Invalidated; + + public readonly Color LagZone_FrameCol; + + public readonly Color LagZone_InputLog; + + public readonly Color LagZone_InputLog_Stated; + + public readonly Color LagZone_InputLog_Invalidated; + + public readonly Color Marker_FrameCol; + + public readonly Color AnalogEdit_Col; + + public TAStudioPaletteMPR( +// Color currentFrame_FrameCol, + Color currentFrame_InputLog, + Color greenZone_FrameCol, + Color greenZone_InputLog, + Color greenZone_InputLog_Stated, + Color greenZone_InputLog_Invalidated, + Color lagZone_FrameCol, + Color lagZone_InputLog, + Color lagZone_InputLog_Stated, + Color lagZone_InputLog_Invalidated, + Color marker_FrameCol, + Color analogEdit_Col) + { +// CurrentFrame_FrameCol = currentFrame_FrameCol; + CurrentFrame_InputLog = currentFrame_InputLog; +// SeekFrame_InputLog = Color.FromArgb(0x70, currentFrame_InputLog); + GreenZone_FrameCol = greenZone_FrameCol; + GreenZone_InputLog = greenZone_InputLog; + GreenZone_InputLog_Stated = greenZone_InputLog_Stated; + GreenZone_InputLog_Invalidated = greenZone_InputLog_Invalidated; + LagZone_FrameCol = lagZone_FrameCol; + LagZone_InputLog = lagZone_InputLog; + LagZone_InputLog_Stated = lagZone_InputLog_Stated; + LagZone_InputLog_Invalidated = lagZone_InputLog_Invalidated; + Marker_FrameCol = marker_FrameCol; + AnalogEdit_Col = analogEdit_Col; + } + + public static implicit operator TAStudioPaletteMPR(TAStudioPalette v) + { + throw new NotImplementedException(); + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/UndoHistoryFormMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/UndoHistoryFormMPR.Designer.cs new file mode 100644 index 00000000000..efe30ebad8c --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/UndoHistoryFormMPR.Designer.cs @@ -0,0 +1,212 @@ +namespace BizHawk.Client.EmuHawk +{ + partial class UndoHistoryFormMPR + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.ClearButton = new System.Windows.Forms.Button(); + this.UndoButton = new System.Windows.Forms.Button(); + this.RedoButton = new System.Windows.Forms.Button(); + this.RightClickMenu = new System.Windows.Forms.ContextMenuStrip(this.components); + this.undoHereToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.redoHereToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.sepToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.clearHistoryToHereToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AutoScrollCheck = new System.Windows.Forms.CheckBox(); + this.MaxStepsNum = new System.Windows.Forms.NumericUpDown(); + this.label1 = new BizHawk.WinForms.Controls.LocLabelEx(); + this.HistoryView = new BizHawk.Client.EmuHawk.InputRoll(); + this.RightClickMenu.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.MaxStepsNum)).BeginInit(); + this.SuspendLayout(); + // + // ClearButton + // + this.ClearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.ClearButton.Location = new System.Drawing.Point(326, 228); + this.ClearButton.Name = "ClearButton"; + this.ClearButton.Size = new System.Drawing.Size(55, 22); + this.ClearButton.TabIndex = 4; + this.ClearButton.Text = "Clear"; + this.ClearButton.UseVisualStyleBackColor = true; + this.ClearButton.Click += new System.EventHandler(this.ClearButton_Click); + // + // UndoButton + // + this.UndoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.UndoButton.Location = new System.Drawing.Point(10, 228); + this.UndoButton.Name = "UndoButton"; + this.UndoButton.Size = new System.Drawing.Size(55, 22); + this.UndoButton.TabIndex = 3; + this.UndoButton.Text = "Undo"; + this.UndoButton.UseVisualStyleBackColor = true; + this.UndoButton.Click += new System.EventHandler(this.UndoButton_Click); + // + // RedoButton + // + this.RedoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.RedoButton.Location = new System.Drawing.Point(71, 228); + this.RedoButton.Name = "RedoButton"; + this.RedoButton.Size = new System.Drawing.Size(55, 22); + this.RedoButton.TabIndex = 3; + this.RedoButton.Text = "Redo"; + this.RedoButton.UseVisualStyleBackColor = true; + this.RedoButton.Click += new System.EventHandler(this.RedoButton_Click); + // + // RightClickMenu + // + this.RightClickMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.undoHereToolStripMenuItem, + this.redoHereToolStripMenuItem, + this.sepToolStripMenuItem, + this.clearHistoryToHereToolStripMenuItem}); + this.RightClickMenu.Name = "RightClickMenu"; + this.RightClickMenu.Size = new System.Drawing.Size(209, 76); + // + // undoHereToolStripMenuItem + // + this.undoHereToolStripMenuItem.Text = "Undo To Selection"; + this.undoHereToolStripMenuItem.Click += new System.EventHandler(this.UndoHereMenuItem_Click); + // + // redoHereToolStripMenuItem + // + this.redoHereToolStripMenuItem.Text = "Redo To Selection"; + this.redoHereToolStripMenuItem.Click += new System.EventHandler(this.RedoHereMenuItem_Click); + // + // clearHistoryToHereToolStripMenuItem + // + this.clearHistoryToHereToolStripMenuItem.Text = "Clear History To Selection"; + this.clearHistoryToHereToolStripMenuItem.Click += new System.EventHandler(this.ClearHistoryToHereMenuItem_Click); + // + // AutoScrollCheck + // + this.AutoScrollCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.AutoScrollCheck.AutoSize = true; + this.AutoScrollCheck.Checked = true; + this.AutoScrollCheck.CheckState = System.Windows.Forms.CheckState.Checked; + this.AutoScrollCheck.Location = new System.Drawing.Point(132, 233); + this.AutoScrollCheck.Name = "AutoScrollCheck"; + this.AutoScrollCheck.Size = new System.Drawing.Size(77, 17); + this.AutoScrollCheck.TabIndex = 5; + this.AutoScrollCheck.Text = "Auto Scroll"; + this.AutoScrollCheck.UseVisualStyleBackColor = true; + // + // MaxStepsNum + // + this.MaxStepsNum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.MaxStepsNum.Location = new System.Drawing.Point(268, 230); + this.MaxStepsNum.Maximum = new decimal(new int[] { + -1486618625, + 232830643, + 0, + 0}); + this.MaxStepsNum.Minimum = new decimal(new int[] { + 1, + 0, + 0, + 0}); + this.MaxStepsNum.Name = "MaxStepsNum"; + this.MaxStepsNum.Size = new System.Drawing.Size(52, 20); + this.MaxStepsNum.TabIndex = 6; + this.MaxStepsNum.Value = new decimal(new int[] { + 100, + 0, + 0, + 0}); + this.MaxStepsNum.ValueChanged += new System.EventHandler(this.MaxStepsNum_ValueChanged); + // + // label1 + // + this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.label1.Location = new System.Drawing.Point(236, 234); + this.label1.Name = "label1"; + this.label1.Text = "Max:"; + // + // HistoryView + // + this.HistoryView.AllowColumnReorder = false; + this.HistoryView.AllowColumnResize = false; + this.HistoryView.AlwaysScroll = false; + this.HistoryView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.HistoryView.CellHeightPadding = 0; + this.HistoryView.CellWidthPadding = 0; + this.HistoryView.FullRowSelect = true; + this.HistoryView.HorizontalOrientation = false; + this.HistoryView.LetKeysModifySelection = false; + this.HistoryView.Location = new System.Drawing.Point(10, 10); + this.HistoryView.MultiSelect = false; + this.HistoryView.Name = "HistoryView"; + this.HistoryView.RowCount = 0; + this.HistoryView.ScrollSpeed = 0; + this.HistoryView.Size = new System.Drawing.Size(369, 213); + this.HistoryView.TabIndex = 2; + this.HistoryView.DoubleClick += new System.EventHandler(this.HistoryView_DoubleClick); + this.HistoryView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.HistoryView_MouseDown); + this.HistoryView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.HistoryView_MouseUp); + // + // UndoHistoryForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(391, 258); + this.Controls.Add(this.label1); + this.Controls.Add(this.MaxStepsNum); + this.Controls.Add(this.AutoScrollCheck); + this.Controls.Add(this.ClearButton); + this.Controls.Add(this.RedoButton); + this.Controls.Add(this.UndoButton); + this.Controls.Add(this.HistoryView); + this.Name = "UndoHistoryForm"; + this.ShowIcon = false; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "Undo History"; + this.RightClickMenu.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.MaxStepsNum)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button ClearButton; + private System.Windows.Forms.Button UndoButton; + private InputRoll HistoryView; + private System.Windows.Forms.Button RedoButton; + private System.Windows.Forms.ContextMenuStrip RightClickMenu; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx undoHereToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx redoHereToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripSeparatorEx sepToolStripMenuItem; + private BizHawk.WinForms.Controls.ToolStripMenuItemEx clearHistoryToHereToolStripMenuItem; + private System.Windows.Forms.CheckBox AutoScrollCheck; + private System.Windows.Forms.NumericUpDown MaxStepsNum; + private BizHawk.WinForms.Controls.LocLabelEx label1; + } +} \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/UndoHistoryFormMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/UndoHistoryFormMPR.cs new file mode 100644 index 00000000000..c9fc3f8aa36 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/UndoHistoryFormMPR.cs @@ -0,0 +1,170 @@ +using System.Drawing; +using System.Windows.Forms; +using BizHawk.Client.Common; + +namespace BizHawk.Client.EmuHawk +{ + public partial class UndoHistoryFormMPR : Form + { + private const string IdColumnName = "ID"; + private const string UndoColumnName = "Undo Step"; + + private readonly TAStudioMPR _tastudioMPR; + private string _lastUndoAction; + private IMovieChangeLog Log => _tastudioMPR.CurrentTasMovie.ChangeLog; + + public UndoHistoryFormMPR(TAStudioMPR owner) + { + InitializeComponent(); + _tastudioMPR = owner; + + HistoryView.QueryItemText += HistoryView_QueryItemText; + HistoryView.QueryItemBkColor += HistoryView_QueryItemBkColor; + + HistoryView.AllColumns.Clear(); + HistoryView.AllColumns.Add(new(name: IdColumnName, widthUnscaled: 40, text: IdColumnName)); + HistoryView.AllColumns.Add(new(name: UndoColumnName, widthUnscaled: 280, text: UndoColumnName)); + + MaxStepsNum.Value = Log.MaxSteps; + } + + private void HistoryView_QueryItemText(int index, RollColumn column, out string text, ref int offsetX, ref int offsetY) + { + text = column.Name == UndoColumnName + ? Log.Names[index] + : index.ToString(); + } + + private void HistoryView_QueryItemBkColor(int index, RollColumn column, ref Color color) + { + if (index == Log.UndoIndex) + { + color = _tastudioMPR.Palette.GreenZone_InputLog; + } + else if (index > Log.UndoIndex) + { + color = _tastudioMPR.Palette.LagZone_InputLog; + } + } + + public void UpdateValues() + { + HistoryView.RowCount = Log.Names.Count; + if (AutoScrollCheck.Checked && _lastUndoAction != Log.NextUndoStepName) + { + HistoryView.ScrollToIndex(Log.UndoIndex); + HistoryView.DeselectAll(); + HistoryView.SelectRow(Log.UndoIndex - 1, true); + } + + _lastUndoAction = Log.NextUndoStepName; + + HistoryView.Refresh(); + } + + private void ClearButton_Click(object sender, EventArgs e) + { + Log.Clear(); + UpdateValues(); + } + + private void UndoButton_Click(object sender, EventArgs e) + { + _tastudioMPR.UndoExternal(); + _tastudioMPR.RefreshDialog(); + } + + private void RedoButton_Click(object sender, EventArgs e) + { + _tastudioMPR.RedoExternal(); + _tastudioMPR.RefreshDialog(); + } + + private int SelectedItem + => HistoryView.AnyRowsSelected ? HistoryView.FirstSelectedRowIndex : -1; + + private void UndoToHere(int index) + { + int earliestFrame = int.MaxValue; + while (Log.UndoIndex > index) + { + int frame = Log.Undo(); + if (frame < earliestFrame) + earliestFrame = frame; + } + + UpdateValues(); + + // potentially rewind, then update display for TAStudio + if (_tastudioMPR.Emulator.Frame > earliestFrame) + _tastudioMPR.GoToFrame(earliestFrame); + _tastudioMPR.RefreshDialog(); + } + + private void HistoryView_DoubleClick(object sender, EventArgs e) + { + UndoToHere(SelectedItem); + } + + private void HistoryView_MouseUp(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Right) + { + RightClickMenu.Show(HistoryView, e.X, e.Y); + } + else if (e.Button == MouseButtons.Left) + { + if (SelectedItem == -1) + { + HistoryView.SelectRow(_hackSelect, true); + } + } + } + + // Hacky way to select a row by clicking the names row + private int _hackSelect = -1; + + private void HistoryView_MouseDown(object sender, MouseEventArgs e) + { + _hackSelect = SelectedItem; + } + + private void UndoHereMenuItem_Click(object sender, EventArgs e) + { + UndoToHere(SelectedItem); + } + + private void RedoHereMenuItem_Click(object sender, EventArgs e) + { + int earliestFrame = int.MaxValue; + while (Log.UndoIndex < SelectedItem) + { + int frame = Log.Redo(); + if (earliestFrame < frame) + earliestFrame = frame; + } + + UpdateValues(); + + // potentially rewind, then update display for TAStudio + if (_tastudioMPR.Emulator.Frame > earliestFrame) + _tastudioMPR.GoToFrame(earliestFrame); + _tastudioMPR.RefreshDialog(); + } + + private void ClearHistoryToHereMenuItem_Click(object sender, EventArgs e) + { + if (SelectedItem != -1) + { + Log.Clear(SelectedItem); + } + + UpdateValues(); + } + + private void MaxStepsNum_ValueChanged(object sender, EventArgs e) + { + _tastudioMPR.Settings.MaxUndoSteps = Log.MaxSteps = (int)MaxStepsNum.Value; + } + } +} diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/UndoHistoryFormMPR.resx b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/UndoHistoryFormMPR.resx new file mode 100644 index 00000000000..e9962a344f4 --- /dev/null +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/UndoHistoryFormMPR.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + \ No newline at end of file From cae2dd65406725a37550342c02707fd3a6e43034 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sun, 26 Jan 2025 00:41:10 -0500 Subject: [PATCH 02/65] adding tasviews to a list before adding to list --- .../tools/TAStudioMPR/TAStudioMPR.Designer.cs | 2010 ++++++++--------- .../tools/TAStudioMPR/TAStudioMPR.cs | 33 + 2 files changed, 1038 insertions(+), 1005 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs index af0ccfbdaf8..15a003b216f 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs @@ -30,183 +30,183 @@ protected override void Dispose(bool disposing) /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - this.TASMenu = new BizHawk.WinForms.Controls.MenuStripEx(); - this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NewTASMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NewFromSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NewFromNowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NewFromCurrentSaveRamMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.OpenTASMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveTASMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveAsTASMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveBackupMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveBk2BackupMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RecentSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.saveSelectionToMacroToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.placeMacroAtSelectionToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.recentMacrosToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator22 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.toolStripSeparator20 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.ToBk2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.EditSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.UndoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RedoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.showUndoHistoryToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectionUndoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectionRedoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.DeselectMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectBetweenMarkersMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectAllMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ReselectClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator7 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.CopyMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PasteMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PasteInsertMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CutMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator8 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.ClearFramesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.InsertFrameMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DeleteFramesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CloneFramesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CloneFramesXTimesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.InsertNumFramesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator6 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.TruncateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ClearGreenzoneMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GreenzoneICheckSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.StateHistoryIntegrityCheckMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ConfigSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SetMaxUndoLevelsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CopyIncludesFrameNoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator26 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.autosaveToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SetAutosaveIntervalMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AutosaveAsBk2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AutosaveAsBackupFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.BackupPerFileSaveMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator9 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.AutoadjustInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.applyPatternToPaintedInputToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.onlyOnAutoFireColumnsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SingleClickAxisEditMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.UseInputKeysItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.BindMarkersToInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.OldControlSchemeForBranchesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadBranchOnDoubleclickMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.OsdInBranchScreenshotsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator14 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.AutopauseAtEndOfMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.sepToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.autoHoldFireToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.keepSetPatternsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.sepToolStripMenuItem1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.autoHoldToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.autoFireToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.customPatternToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.setpToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.setCustomsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SetFontMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MetaSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HeaderMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StateHistorySettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CommentsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SubtitlesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator21 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.DefaultStateSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SettingsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RotateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HideLagFramesSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HideLagFrames0 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HideLagFrames1 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HideLagFrames2 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HideLagFrames3 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator12 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.hideWasLagFramesToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.iconsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DenoteStatesWithIconsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DenoteStatesWithBGColorToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DenoteMarkersWithIconsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DenoteMarkersWithBGColorToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ColorSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator23 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.followCursorToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.alwaysScrollToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator24 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.scrollToViewToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.scrollToTopToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.scrollToBottomToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.scrollToCenterToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator25 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.wheelScrollSpeedToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ColumnsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator19 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.HelpSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.TASEditorManualOnlineMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ForumThreadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.aboutToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator10 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.EnableTooltipsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.TasView = new BizHawk.Client.EmuHawk.InputRoll(); - this.TasStatusStrip = new BizHawk.WinForms.Controls.StatusStripEx(); - this.MessageStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); - this.ProgressBar = new System.Windows.Forms.ToolStripProgressBar(); - this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel(); - this.SplicerStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); - this.TasPlaybackBoxMPR = new BizHawk.Client.EmuHawk.PlaybackBoxMPR(); - this.MarkerControlMPR = new BizHawk.Client.EmuHawk.MarkerControlMPR(); - this.RightClickMenu = new System.Windows.Forms.ContextMenuStrip(this.components); - this.SetMarkersContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SetMarkerWithTextContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RemoveMarkersContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator15 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.DeselectContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectBetweenMarkersContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator16 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.UngreenzoneContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CancelSeekContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator17 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.copyToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.pasteToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.pasteInsertToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.cutToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.separateToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.ClearContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.InsertFrameContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DeleteFramesContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CloneContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CloneXTimesContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.InsertNumFramesContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator18 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.TruncateContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.BranchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StartFromNowSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.StartNewProjectFromNowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StartANewProjectFromSaveRamMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.BookMarkControlMPR = new BizHawk.Client.EmuHawk.BookmarksBranchesBoxMPR(); - this.BranchesMarkersSplit = new System.Windows.Forms.SplitContainer(); - this.MainVertialSplit = new System.Windows.Forms.SplitContainer(); - this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); - this.TASMenu.SuspendLayout(); - this.TasStatusStrip.SuspendLayout(); - this.RightClickMenu.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.BranchesMarkersSplit)).BeginInit(); - this.BranchesMarkersSplit.Panel1.SuspendLayout(); - this.BranchesMarkersSplit.Panel2.SuspendLayout(); - this.BranchesMarkersSplit.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.MainVertialSplit)).BeginInit(); - this.MainVertialSplit.Panel1.SuspendLayout(); - this.MainVertialSplit.Panel2.SuspendLayout(); - this.MainVertialSplit.SuspendLayout(); - this.SuspendLayout(); - // - // TASMenu - // - this.TASMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.components = new System.ComponentModel.Container(); + this.TASMenu = new BizHawk.WinForms.Controls.MenuStripEx(); + this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NewTASMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NewFromSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NewFromNowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NewFromCurrentSaveRamMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.OpenTASMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveTASMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveAsTASMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveBackupMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveBk2BackupMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RecentSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.saveSelectionToMacroToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.placeMacroAtSelectionToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.recentMacrosToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator22 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.toolStripSeparator20 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ToBk2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.EditSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.UndoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RedoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.showUndoHistoryToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectionUndoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectionRedoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DeselectMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectBetweenMarkersMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectAllMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ReselectClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator7 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.CopyMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PasteMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PasteInsertMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CutMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator8 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ClearFramesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DeleteFramesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.InsertFrameMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.InsertNumFramesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CloneFramesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CloneFramesXTimesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator6 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.TruncateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ClearGreenzoneMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GreenzoneICheckSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.StateHistoryIntegrityCheckMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ConfigSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SetMaxUndoLevelsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CopyIncludesFrameNoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator26 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.autosaveToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SetAutosaveIntervalMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AutosaveAsBk2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AutosaveAsBackupFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BackupPerFileSaveMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator9 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.AutoadjustInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.applyPatternToPaintedInputToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.onlyOnAutoFireColumnsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SingleClickAxisEditMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.UseInputKeysItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.BindMarkersToInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.OldControlSchemeForBranchesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadBranchOnDoubleclickMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.OsdInBranchScreenshotsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator14 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.AutopauseAtEndOfMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.sepToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.autoHoldFireToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.keepSetPatternsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.sepToolStripMenuItem1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.autoHoldToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.autoFireToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.customPatternToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.setpToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.setCustomsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SetFontMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MetaSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HeaderMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StateHistorySettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CommentsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SubtitlesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator21 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DefaultStateSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SettingsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RotateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HideLagFramesSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HideLagFrames0 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HideLagFrames1 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HideLagFrames2 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HideLagFrames3 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator12 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.hideWasLagFramesToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.iconsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DenoteStatesWithIconsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DenoteStatesWithBGColorToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DenoteMarkersWithIconsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DenoteMarkersWithBGColorToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ColorSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator23 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.followCursorToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.alwaysScrollToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator24 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.scrollToViewToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.scrollToTopToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.scrollToBottomToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.scrollToCenterToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator25 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.wheelScrollSpeedToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ColumnsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator19 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.HelpSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.TASEditorManualOnlineMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ForumThreadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.aboutToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator10 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.EnableTooltipsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.TasView = new BizHawk.Client.EmuHawk.InputRoll(); + this.TasStatusStrip = new BizHawk.WinForms.Controls.StatusStripEx(); + this.MessageStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); + this.ProgressBar = new System.Windows.Forms.ToolStripProgressBar(); + this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel(); + this.SplicerStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); + this.TasPlaybackBoxMPR = new BizHawk.Client.EmuHawk.PlaybackBoxMPR(); + this.MarkerControlMPR = new BizHawk.Client.EmuHawk.MarkerControlMPR(); + this.RightClickMenu = new System.Windows.Forms.ContextMenuStrip(this.components); + this.SetMarkersContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SetMarkerWithTextContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RemoveMarkersContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator15 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DeselectContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectBetweenMarkersContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator16 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.UngreenzoneContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CancelSeekContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator17 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.copyToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.pasteToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.pasteInsertToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.cutToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.separateToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ClearContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DeleteFramesContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.InsertFrameContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.InsertNumFramesContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CloneContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CloneXTimesContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator18 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.TruncateContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BranchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StartFromNowSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.StartNewProjectFromNowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StartANewProjectFromSaveRamMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BookMarkControlMPR = new BizHawk.Client.EmuHawk.BookmarksBranchesBoxMPR(); + this.BranchesMarkersSplit = new System.Windows.Forms.SplitContainer(); + this.MainVertialSplit = new System.Windows.Forms.SplitContainer(); + this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); + this.TASMenu.SuspendLayout(); + this.TasStatusStrip.SuspendLayout(); + this.RightClickMenu.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.BranchesMarkersSplit)).BeginInit(); + this.BranchesMarkersSplit.Panel1.SuspendLayout(); + this.BranchesMarkersSplit.Panel2.SuspendLayout(); + this.BranchesMarkersSplit.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.MainVertialSplit)).BeginInit(); + this.MainVertialSplit.Panel1.SuspendLayout(); + this.MainVertialSplit.Panel2.SuspendLayout(); + this.MainVertialSplit.SuspendLayout(); + this.SuspendLayout(); + // + // TASMenu + // + this.TASMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileSubMenu, this.EditSubMenu, this.ConfigSubMenu, @@ -214,13 +214,13 @@ private void InitializeComponent() this.SettingsSubMenu, this.ColumnsSubMenu, this.HelpSubMenu}); - this.TASMenu.TabIndex = 0; - this.TASMenu.MenuActivate += new System.EventHandler(this.TASMenu_MenuActivate); - this.TASMenu.MenuDeactivate += new System.EventHandler(this.TASMenu_MenuDeactivate); - // - // FileSubMenu - // - this.FileSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.TASMenu.TabIndex = 0; + this.TASMenu.MenuActivate += new System.EventHandler(this.TASMenu_MenuActivate); + this.TASMenu.MenuDeactivate += new System.EventHandler(this.TASMenu_MenuDeactivate); + // + // FileSubMenu + // + this.FileSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.NewTASMenuItem, this.NewFromSubMenu, this.OpenTASMenuItem, @@ -235,94 +235,94 @@ private void InitializeComponent() this.recentMacrosToolStripMenuItem, this.toolStripSeparator20, this.ToBk2MenuItem}); - this.FileSubMenu.Text = "&File"; - this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened); - // - // NewTASMenuItem - // - this.NewTASMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); - this.NewTASMenuItem.Text = "&New"; - this.NewTASMenuItem.Click += new System.EventHandler(this.NewTasMenuItem_Click); - // - // NewFromSubMenu - // - this.NewFromSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.FileSubMenu.Text = "&File"; + this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened); + // + // NewTASMenuItem + // + this.NewTASMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); + this.NewTASMenuItem.Text = "&New"; + this.NewTASMenuItem.Click += new System.EventHandler(this.NewTasMenuItem_Click); + // + // NewFromSubMenu + // + this.NewFromSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.NewFromNowMenuItem, this.NewFromCurrentSaveRamMenuItem}); - this.NewFromSubMenu.Text = "New From"; - this.NewFromSubMenu.DropDownOpened += new System.EventHandler(this.NewFromSubMenu_DropDownOpened); - // - // NewFromNowMenuItem - // - this.NewFromNowMenuItem.Text = "&Now"; - this.NewFromNowMenuItem.Click += new System.EventHandler(this.StartNewProjectFromNowMenuItem_Click); - // - // NewFromCurrentSaveRamMenuItem - // - this.NewFromCurrentSaveRamMenuItem.Text = "&Current SaveRam"; - this.NewFromCurrentSaveRamMenuItem.Click += new System.EventHandler(this.StartANewProjectFromSaveRamMenuItem_Click); - // - // OpenTASMenuItem - // - this.OpenTASMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); - this.OpenTASMenuItem.Text = "&Open"; - this.OpenTASMenuItem.Click += new System.EventHandler(this.OpenTasMenuItem_Click); - // - // SaveTASMenuItem - // - this.SaveTASMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); - this.SaveTASMenuItem.Text = "&Save"; - this.SaveTASMenuItem.Click += new System.EventHandler(this.SaveTasMenuItem_Click); - // - // SaveAsTASMenuItem - // - this.SaveAsTASMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) + this.NewFromSubMenu.Text = "New From"; + this.NewFromSubMenu.DropDownOpened += new System.EventHandler(this.NewFromSubMenu_DropDownOpened); + // + // NewFromNowMenuItem + // + this.NewFromNowMenuItem.Text = "&Now"; + this.NewFromNowMenuItem.Click += new System.EventHandler(this.StartNewProjectFromNowMenuItem_Click); + // + // NewFromCurrentSaveRamMenuItem + // + this.NewFromCurrentSaveRamMenuItem.Text = "&Current SaveRam"; + this.NewFromCurrentSaveRamMenuItem.Click += new System.EventHandler(this.StartANewProjectFromSaveRamMenuItem_Click); + // + // OpenTASMenuItem + // + this.OpenTASMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); + this.OpenTASMenuItem.Text = "&Open"; + this.OpenTASMenuItem.Click += new System.EventHandler(this.OpenTasMenuItem_Click); + // + // SaveTASMenuItem + // + this.SaveTASMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); + this.SaveTASMenuItem.Text = "&Save"; + this.SaveTASMenuItem.Click += new System.EventHandler(this.SaveTasMenuItem_Click); + // + // SaveAsTASMenuItem + // + this.SaveAsTASMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) | System.Windows.Forms.Keys.S))); - this.SaveAsTASMenuItem.Text = "Save As"; - this.SaveAsTASMenuItem.Click += new System.EventHandler(this.SaveAsTasMenuItem_Click); - // - // SaveBackupMenuItem - // - this.SaveBackupMenuItem.Text = "Save Backup"; - this.SaveBackupMenuItem.Click += new System.EventHandler(this.SaveBackupMenuItem_Click); - // - // SaveBk2BackupMenuItem - // - this.SaveBk2BackupMenuItem.Text = "Save Bk2 Backup"; - this.SaveBk2BackupMenuItem.Click += new System.EventHandler(this.SaveBk2BackupMenuItem_Click); - // - // RecentSubMenu - // - this.RecentSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SaveAsTASMenuItem.Text = "Save As"; + this.SaveAsTASMenuItem.Click += new System.EventHandler(this.SaveAsTasMenuItem_Click); + // + // SaveBackupMenuItem + // + this.SaveBackupMenuItem.Text = "Save Backup"; + this.SaveBackupMenuItem.Click += new System.EventHandler(this.SaveBackupMenuItem_Click); + // + // SaveBk2BackupMenuItem + // + this.SaveBk2BackupMenuItem.Text = "Save Bk2 Backup"; + this.SaveBk2BackupMenuItem.Click += new System.EventHandler(this.SaveBk2BackupMenuItem_Click); + // + // RecentSubMenu + // + this.RecentSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator3}); - this.RecentSubMenu.Text = "Recent"; - this.RecentSubMenu.DropDownOpened += new System.EventHandler(this.RecentSubMenu_DropDownOpened); - // - // saveSelectionToMacroToolStripMenuItem - // - this.saveSelectionToMacroToolStripMenuItem.Text = "Save Selection to Macro"; - this.saveSelectionToMacroToolStripMenuItem.Click += new System.EventHandler(this.SaveSelectionToMacroMenuItem_Click); - // - // placeMacroAtSelectionToolStripMenuItem - // - this.placeMacroAtSelectionToolStripMenuItem.Text = "Place Macro at Selection"; - this.placeMacroAtSelectionToolStripMenuItem.Click += new System.EventHandler(this.PlaceMacroAtSelectionMenuItem_Click); - // - // recentMacrosToolStripMenuItem - // - this.recentMacrosToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.RecentSubMenu.Text = "Recent"; + this.RecentSubMenu.DropDownOpened += new System.EventHandler(this.RecentSubMenu_DropDownOpened); + // + // saveSelectionToMacroToolStripMenuItem + // + this.saveSelectionToMacroToolStripMenuItem.Text = "Save Selection to Macro"; + this.saveSelectionToMacroToolStripMenuItem.Click += new System.EventHandler(this.SaveSelectionToMacroMenuItem_Click); + // + // placeMacroAtSelectionToolStripMenuItem + // + this.placeMacroAtSelectionToolStripMenuItem.Text = "Place Macro at Selection"; + this.placeMacroAtSelectionToolStripMenuItem.Click += new System.EventHandler(this.PlaceMacroAtSelectionMenuItem_Click); + // + // recentMacrosToolStripMenuItem + // + this.recentMacrosToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator22}); - this.recentMacrosToolStripMenuItem.Text = "Recent Macros"; - this.recentMacrosToolStripMenuItem.DropDownOpened += new System.EventHandler(this.RecentMacrosMenuItem_DropDownOpened); - // - // ToBk2MenuItem - // - this.ToBk2MenuItem.Text = "&Export to Bk2"; - this.ToBk2MenuItem.Click += new System.EventHandler(this.ToBk2MenuItem_Click); - // - // EditSubMenu - // - this.EditSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.recentMacrosToolStripMenuItem.Text = "Recent Macros"; + this.recentMacrosToolStripMenuItem.DropDownOpened += new System.EventHandler(this.RecentMacrosMenuItem_DropDownOpened); + // + // ToBk2MenuItem + // + this.ToBk2MenuItem.Text = "&Export to Bk2"; + this.ToBk2MenuItem.Click += new System.EventHandler(this.ToBk2MenuItem_Click); + // + // EditSubMenu + // + this.EditSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.UndoMenuItem, this.RedoMenuItem, this.showUndoHistoryToolStripMenuItem, @@ -350,133 +350,133 @@ private void InitializeComponent() this.ClearGreenzoneMenuItem, this.GreenzoneICheckSeparator, this.StateHistoryIntegrityCheckMenuItem}); - this.EditSubMenu.Text = "&Edit"; - this.EditSubMenu.DropDownOpened += new System.EventHandler(this.EditSubMenu_DropDownOpened); - // - // UndoMenuItem - // - this.UndoMenuItem.Text = "&Undo"; - this.UndoMenuItem.Click += new System.EventHandler(this.UndoMenuItem_Click); - // - // RedoMenuItem - // - this.RedoMenuItem.Enabled = false; - this.RedoMenuItem.Text = "&Redo"; - this.RedoMenuItem.Click += new System.EventHandler(this.RedoMenuItem_Click); - // - // showUndoHistoryToolStripMenuItem - // - this.showUndoHistoryToolStripMenuItem.Text = "Show Undo History"; - this.showUndoHistoryToolStripMenuItem.Click += new System.EventHandler(this.ShowUndoHistoryMenuItem_Click); - // - // SelectionUndoMenuItem - // - this.SelectionUndoMenuItem.Enabled = false; - this.SelectionUndoMenuItem.Text = "Selection Undo"; - // - // SelectionRedoMenuItem - // - this.SelectionRedoMenuItem.Enabled = false; - this.SelectionRedoMenuItem.Text = "Selection Redo"; - // - // DeselectMenuItem - // - this.DeselectMenuItem.Text = "Deselect"; - this.DeselectMenuItem.Click += new System.EventHandler(this.DeselectMenuItem_Click); - // - // SelectBetweenMarkersMenuItem - // - this.SelectBetweenMarkersMenuItem.Text = "Select between Markers"; - this.SelectBetweenMarkersMenuItem.Click += new System.EventHandler(this.SelectBetweenMarkersMenuItem_Click); - // - // SelectAllMenuItem - // - this.SelectAllMenuItem.ShortcutKeyDisplayString = ""; - this.SelectAllMenuItem.Text = "Select &All"; - this.SelectAllMenuItem.Click += new System.EventHandler(this.SelectAllMenuItem_Click); - // - // ReselectClipboardMenuItem - // - this.ReselectClipboardMenuItem.Text = "Reselect Clipboard"; - this.ReselectClipboardMenuItem.Click += new System.EventHandler(this.ReselectClipboardMenuItem_Click); - // - // CopyMenuItem - // - this.CopyMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); - this.CopyMenuItem.Text = "Copy"; - this.CopyMenuItem.Click += new System.EventHandler(this.CopyMenuItem_Click); - // - // PasteMenuItem - // - this.PasteMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); - this.PasteMenuItem.Text = "&Paste"; - this.PasteMenuItem.Click += new System.EventHandler(this.PasteMenuItem_Click); - // - // PasteInsertMenuItem - // - this.PasteInsertMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) + this.EditSubMenu.Text = "&Edit"; + this.EditSubMenu.DropDownOpened += new System.EventHandler(this.EditSubMenu_DropDownOpened); + // + // UndoMenuItem + // + this.UndoMenuItem.Text = "&Undo"; + this.UndoMenuItem.Click += new System.EventHandler(this.UndoMenuItem_Click); + // + // RedoMenuItem + // + this.RedoMenuItem.Enabled = false; + this.RedoMenuItem.Text = "&Redo"; + this.RedoMenuItem.Click += new System.EventHandler(this.RedoMenuItem_Click); + // + // showUndoHistoryToolStripMenuItem + // + this.showUndoHistoryToolStripMenuItem.Text = "Show Undo History"; + this.showUndoHistoryToolStripMenuItem.Click += new System.EventHandler(this.ShowUndoHistoryMenuItem_Click); + // + // SelectionUndoMenuItem + // + this.SelectionUndoMenuItem.Enabled = false; + this.SelectionUndoMenuItem.Text = "Selection Undo"; + // + // SelectionRedoMenuItem + // + this.SelectionRedoMenuItem.Enabled = false; + this.SelectionRedoMenuItem.Text = "Selection Redo"; + // + // DeselectMenuItem + // + this.DeselectMenuItem.Text = "Deselect"; + this.DeselectMenuItem.Click += new System.EventHandler(this.DeselectMenuItem_Click); + // + // SelectBetweenMarkersMenuItem + // + this.SelectBetweenMarkersMenuItem.Text = "Select between Markers"; + this.SelectBetweenMarkersMenuItem.Click += new System.EventHandler(this.SelectBetweenMarkersMenuItem_Click); + // + // SelectAllMenuItem + // + this.SelectAllMenuItem.ShortcutKeyDisplayString = ""; + this.SelectAllMenuItem.Text = "Select &All"; + this.SelectAllMenuItem.Click += new System.EventHandler(this.SelectAllMenuItem_Click); + // + // ReselectClipboardMenuItem + // + this.ReselectClipboardMenuItem.Text = "Reselect Clipboard"; + this.ReselectClipboardMenuItem.Click += new System.EventHandler(this.ReselectClipboardMenuItem_Click); + // + // CopyMenuItem + // + this.CopyMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); + this.CopyMenuItem.Text = "Copy"; + this.CopyMenuItem.Click += new System.EventHandler(this.CopyMenuItem_Click); + // + // PasteMenuItem + // + this.PasteMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); + this.PasteMenuItem.Text = "&Paste"; + this.PasteMenuItem.Click += new System.EventHandler(this.PasteMenuItem_Click); + // + // PasteInsertMenuItem + // + this.PasteInsertMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) | System.Windows.Forms.Keys.V))); - this.PasteInsertMenuItem.Text = "&Paste Insert"; - this.PasteInsertMenuItem.Click += new System.EventHandler(this.PasteInsertMenuItem_Click); - // - // CutMenuItem - // - this.CutMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X))); - this.CutMenuItem.Text = "&Cut"; - this.CutMenuItem.Click += new System.EventHandler(this.CutMenuItem_Click); - // - // ClearFramesMenuItem - // - this.ClearFramesMenuItem.ShortcutKeyDisplayString = ""; - this.ClearFramesMenuItem.Text = "Clear"; - this.ClearFramesMenuItem.Click += new System.EventHandler(this.ClearFramesMenuItem_Click); - // - // InsertFrameMenuItem - // - this.InsertFrameMenuItem.Text = "&Insert"; - this.InsertFrameMenuItem.Click += new System.EventHandler(this.InsertFrameMenuItem_Click); - // - // DeleteFramesMenuItem - // - this.DeleteFramesMenuItem.Text = "&Delete"; - this.DeleteFramesMenuItem.Click += new System.EventHandler(this.DeleteFramesMenuItem_Click); - // - // CloneFramesMenuItem - // - this.CloneFramesMenuItem.Text = "&Clone"; - this.CloneFramesMenuItem.Click += new System.EventHandler(this.CloneFramesMenuItem_Click); - // - // CloneFramesXTimesMenuItem - // - this.CloneFramesXTimesMenuItem.Text = "Clone # Times"; - this.CloneFramesXTimesMenuItem.Click += new System.EventHandler(this.CloneFramesXTimesMenuItem_Click); - // - // InsertNumFramesMenuItem - // - this.InsertNumFramesMenuItem.ShortcutKeyDisplayString = ""; - this.InsertNumFramesMenuItem.Text = "Insert # of Frames"; - this.InsertNumFramesMenuItem.Click += new System.EventHandler(this.InsertNumFramesMenuItem_Click); - // - // TruncateMenuItem - // - this.TruncateMenuItem.Text = "&Truncate Movie"; - this.TruncateMenuItem.Click += new System.EventHandler(this.TruncateMenuItem_Click); - // - // ClearGreenzoneMenuItem - // - this.ClearGreenzoneMenuItem.Text = "&Clear Savestate History"; - this.ClearGreenzoneMenuItem.Click += new System.EventHandler(this.ClearGreenzoneMenuItem_Click); - // - // StateHistoryIntegrityCheckMenuItem - // - this.StateHistoryIntegrityCheckMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) + this.PasteInsertMenuItem.Text = "&Paste Insert"; + this.PasteInsertMenuItem.Click += new System.EventHandler(this.PasteInsertMenuItem_Click); + // + // CutMenuItem + // + this.CutMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X))); + this.CutMenuItem.Text = "&Cut"; + this.CutMenuItem.Click += new System.EventHandler(this.CutMenuItem_Click); + // + // ClearFramesMenuItem + // + this.ClearFramesMenuItem.ShortcutKeyDisplayString = ""; + this.ClearFramesMenuItem.Text = "Clear"; + this.ClearFramesMenuItem.Click += new System.EventHandler(this.ClearFramesMenuItem_Click); + // + // DeleteFramesMenuItem + // + this.DeleteFramesMenuItem.Text = "&Delete"; + this.DeleteFramesMenuItem.Click += new System.EventHandler(this.DeleteFramesMenuItem_Click); + // + // InsertFrameMenuItem + // + this.InsertFrameMenuItem.Text = "&Insert"; + this.InsertFrameMenuItem.Click += new System.EventHandler(this.InsertFrameMenuItem_Click); + // + // InsertNumFramesMenuItem + // + this.InsertNumFramesMenuItem.ShortcutKeyDisplayString = ""; + this.InsertNumFramesMenuItem.Text = "Insert # of Frames"; + this.InsertNumFramesMenuItem.Click += new System.EventHandler(this.InsertNumFramesMenuItem_Click); + // + // CloneFramesMenuItem + // + this.CloneFramesMenuItem.Text = "&Clone"; + this.CloneFramesMenuItem.Click += new System.EventHandler(this.CloneFramesMenuItem_Click); + // + // CloneFramesXTimesMenuItem + // + this.CloneFramesXTimesMenuItem.Text = "Clone # Times"; + this.CloneFramesXTimesMenuItem.Click += new System.EventHandler(this.CloneFramesXTimesMenuItem_Click); + // + // TruncateMenuItem + // + this.TruncateMenuItem.Text = "&Truncate Movie"; + this.TruncateMenuItem.Click += new System.EventHandler(this.TruncateMenuItem_Click); + // + // ClearGreenzoneMenuItem + // + this.ClearGreenzoneMenuItem.Text = "&Clear Savestate History"; + this.ClearGreenzoneMenuItem.Click += new System.EventHandler(this.ClearGreenzoneMenuItem_Click); + // + // StateHistoryIntegrityCheckMenuItem + // + this.StateHistoryIntegrityCheckMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) | System.Windows.Forms.Keys.I))); - this.StateHistoryIntegrityCheckMenuItem.Text = "State History Integrity Check"; - this.StateHistoryIntegrityCheckMenuItem.Click += new System.EventHandler(this.StateHistoryIntegrityCheckMenuItem_Click); - // - // ConfigSubMenu - // - this.ConfigSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.StateHistoryIntegrityCheckMenuItem.Text = "State History Integrity Check"; + this.StateHistoryIntegrityCheckMenuItem.Click += new System.EventHandler(this.StateHistoryIntegrityCheckMenuItem_Click); + // + // ConfigSubMenu + // + this.ConfigSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SetMaxUndoLevelsMenuItem, this.CopyIncludesFrameNoMenuItem, this.toolStripSeparator26, @@ -498,112 +498,112 @@ private void InitializeComponent() this.sepToolStripMenuItem, this.autoHoldFireToolStripMenuItem, this.SetFontMenuItem}); - this.ConfigSubMenu.Text = "&Config"; - this.ConfigSubMenu.DropDownOpened += new System.EventHandler(this.ConfigSubMenu_DropDownOpened); - // - // SetMaxUndoLevelsMenuItem - // - this.SetMaxUndoLevelsMenuItem.Text = "Set max Undo Levels"; - this.SetMaxUndoLevelsMenuItem.Click += new System.EventHandler(this.SetMaxUndoLevelsMenuItem_Click); - // - // CopyIncludesFrameNoMenuItem - // - this.CopyIncludesFrameNoMenuItem.Text = "Include Frame # When Copying Input"; - this.CopyIncludesFrameNoMenuItem.Click += new System.EventHandler(this.CopyIncludesFrameNoMenuItem_Click); - // - // autosaveToolStripMenuItem - // - this.autosaveToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ConfigSubMenu.Text = "&Config"; + this.ConfigSubMenu.DropDownOpened += new System.EventHandler(this.ConfigSubMenu_DropDownOpened); + // + // SetMaxUndoLevelsMenuItem + // + this.SetMaxUndoLevelsMenuItem.Text = "Set max Undo Levels"; + this.SetMaxUndoLevelsMenuItem.Click += new System.EventHandler(this.SetMaxUndoLevelsMenuItem_Click); + // + // CopyIncludesFrameNoMenuItem + // + this.CopyIncludesFrameNoMenuItem.Text = "Include Frame # When Copying Input"; + this.CopyIncludesFrameNoMenuItem.Click += new System.EventHandler(this.CopyIncludesFrameNoMenuItem_Click); + // + // autosaveToolStripMenuItem + // + this.autosaveToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SetAutosaveIntervalMenuItem, this.AutosaveAsBk2MenuItem, this.AutosaveAsBackupFileMenuItem}); - this.autosaveToolStripMenuItem.Text = "Autosave"; - // - // SetAutosaveIntervalMenuItem - // - this.SetAutosaveIntervalMenuItem.Text = "Set Autosave Interval"; - this.SetAutosaveIntervalMenuItem.Click += new System.EventHandler(this.SetAutosaveIntervalMenuItem_Click); - // - // AutosaveAsBk2MenuItem - // - this.AutosaveAsBk2MenuItem.Text = "Autosave As Bk2"; - this.AutosaveAsBk2MenuItem.Click += new System.EventHandler(this.AutosaveAsBk2MenuItem_Click); - // - // AutosaveAsBackupFileMenuItem - // - this.AutosaveAsBackupFileMenuItem.Text = "Autosave As Backup File"; - this.AutosaveAsBackupFileMenuItem.Click += new System.EventHandler(this.AutosaveAsBackupFileMenuItem_Click); - // - // BackupPerFileSaveMenuItem - // - this.BackupPerFileSaveMenuItem.Text = "Backup Per File Save"; - this.BackupPerFileSaveMenuItem.Click += new System.EventHandler(this.BackupPerFileSaveMenuItem_Click); - // - // AutoadjustInputMenuItem - // - this.AutoadjustInputMenuItem.CheckOnClick = true; - this.AutoadjustInputMenuItem.Text = "Auto-adjust Input according to Lag"; - this.AutoadjustInputMenuItem.Click += new System.EventHandler(this.AutoadjustInputMenuItem_Click); - // - // applyPatternToPaintedInputToolStripMenuItem - // - this.applyPatternToPaintedInputToolStripMenuItem.CheckOnClick = true; - this.applyPatternToPaintedInputToolStripMenuItem.Text = "Apply Pattern to painted input"; - this.applyPatternToPaintedInputToolStripMenuItem.CheckedChanged += new System.EventHandler(this.ApplyPatternToPaintedInputMenuItem_CheckedChanged); - // - // onlyOnAutoFireColumnsToolStripMenuItem - // - this.onlyOnAutoFireColumnsToolStripMenuItem.Checked = true; - this.onlyOnAutoFireColumnsToolStripMenuItem.CheckOnClick = true; - this.onlyOnAutoFireColumnsToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; - this.onlyOnAutoFireColumnsToolStripMenuItem.Enabled = false; - this.onlyOnAutoFireColumnsToolStripMenuItem.Text = "Only on Auto-Fire columns"; - // - // SingleClickAxisEditMenuItem - // - this.SingleClickAxisEditMenuItem.Enabled = false; - this.SingleClickAxisEditMenuItem.Text = "Enter Axis Edit mode by single click"; - this.SingleClickAxisEditMenuItem.Visible = false; - this.SingleClickAxisEditMenuItem.Click += new System.EventHandler(this.SingleClickAxisEditMenuItem_Click); - // - // UseInputKeysItem - // - this.UseInputKeysItem.Enabled = false; - this.UseInputKeysItem.Text = "Use Input keys for Column Set"; - this.UseInputKeysItem.Visible = false; - // - // BindMarkersToInputMenuItem - // - this.BindMarkersToInputMenuItem.Checked = true; - this.BindMarkersToInputMenuItem.CheckOnClick = true; - this.BindMarkersToInputMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; - this.BindMarkersToInputMenuItem.Text = "Bind Markers to Input"; - this.BindMarkersToInputMenuItem.Click += new System.EventHandler(this.BindMarkersToInputMenuItem_Click); - // - // OldControlSchemeForBranchesMenuItem - // - this.OldControlSchemeForBranchesMenuItem.Text = "Old control scheme for Branches"; - this.OldControlSchemeForBranchesMenuItem.Click += new System.EventHandler(this.OldControlSchemeForBranchesMenuItem_Click); - // - // LoadBranchOnDoubleclickMenuItem - // - this.LoadBranchOnDoubleclickMenuItem.Text = "Load Branch on double-click"; - this.LoadBranchOnDoubleclickMenuItem.Click += new System.EventHandler(this.LoadBranchOnDoubleClickMenuItem_Click); - // - // OsdInBranchScreenshotsMenuItem - // - this.OsdInBranchScreenshotsMenuItem.Enabled = false; - this.OsdInBranchScreenshotsMenuItem.Text = "OSD in Branch screenshots"; - this.OsdInBranchScreenshotsMenuItem.Visible = false; - // - // AutopauseAtEndOfMovieMenuItem - // - this.AutopauseAtEndOfMovieMenuItem.Text = "Autopause at end of Movie"; - this.AutopauseAtEndOfMovieMenuItem.Click += new System.EventHandler(this.AutoPauseAtEndMenuItem_Click); - // - // autoHoldFireToolStripMenuItem - // - this.autoHoldFireToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.autosaveToolStripMenuItem.Text = "Autosave"; + // + // SetAutosaveIntervalMenuItem + // + this.SetAutosaveIntervalMenuItem.Text = "Set Autosave Interval"; + this.SetAutosaveIntervalMenuItem.Click += new System.EventHandler(this.SetAutosaveIntervalMenuItem_Click); + // + // AutosaveAsBk2MenuItem + // + this.AutosaveAsBk2MenuItem.Text = "Autosave As Bk2"; + this.AutosaveAsBk2MenuItem.Click += new System.EventHandler(this.AutosaveAsBk2MenuItem_Click); + // + // AutosaveAsBackupFileMenuItem + // + this.AutosaveAsBackupFileMenuItem.Text = "Autosave As Backup File"; + this.AutosaveAsBackupFileMenuItem.Click += new System.EventHandler(this.AutosaveAsBackupFileMenuItem_Click); + // + // BackupPerFileSaveMenuItem + // + this.BackupPerFileSaveMenuItem.Text = "Backup Per File Save"; + this.BackupPerFileSaveMenuItem.Click += new System.EventHandler(this.BackupPerFileSaveMenuItem_Click); + // + // AutoadjustInputMenuItem + // + this.AutoadjustInputMenuItem.CheckOnClick = true; + this.AutoadjustInputMenuItem.Text = "Auto-adjust Input according to Lag"; + this.AutoadjustInputMenuItem.Click += new System.EventHandler(this.AutoadjustInputMenuItem_Click); + // + // applyPatternToPaintedInputToolStripMenuItem + // + this.applyPatternToPaintedInputToolStripMenuItem.CheckOnClick = true; + this.applyPatternToPaintedInputToolStripMenuItem.Text = "Apply Pattern to painted input"; + this.applyPatternToPaintedInputToolStripMenuItem.CheckedChanged += new System.EventHandler(this.ApplyPatternToPaintedInputMenuItem_CheckedChanged); + // + // onlyOnAutoFireColumnsToolStripMenuItem + // + this.onlyOnAutoFireColumnsToolStripMenuItem.Checked = true; + this.onlyOnAutoFireColumnsToolStripMenuItem.CheckOnClick = true; + this.onlyOnAutoFireColumnsToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.onlyOnAutoFireColumnsToolStripMenuItem.Enabled = false; + this.onlyOnAutoFireColumnsToolStripMenuItem.Text = "Only on Auto-Fire columns"; + // + // SingleClickAxisEditMenuItem + // + this.SingleClickAxisEditMenuItem.Enabled = false; + this.SingleClickAxisEditMenuItem.Text = "Enter Axis Edit mode by single click"; + this.SingleClickAxisEditMenuItem.Visible = false; + this.SingleClickAxisEditMenuItem.Click += new System.EventHandler(this.SingleClickAxisEditMenuItem_Click); + // + // UseInputKeysItem + // + this.UseInputKeysItem.Enabled = false; + this.UseInputKeysItem.Text = "Use Input keys for Column Set"; + this.UseInputKeysItem.Visible = false; + // + // BindMarkersToInputMenuItem + // + this.BindMarkersToInputMenuItem.Checked = true; + this.BindMarkersToInputMenuItem.CheckOnClick = true; + this.BindMarkersToInputMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.BindMarkersToInputMenuItem.Text = "Bind Markers to Input"; + this.BindMarkersToInputMenuItem.Click += new System.EventHandler(this.BindMarkersToInputMenuItem_Click); + // + // OldControlSchemeForBranchesMenuItem + // + this.OldControlSchemeForBranchesMenuItem.Text = "Old control scheme for Branches"; + this.OldControlSchemeForBranchesMenuItem.Click += new System.EventHandler(this.OldControlSchemeForBranchesMenuItem_Click); + // + // LoadBranchOnDoubleclickMenuItem + // + this.LoadBranchOnDoubleclickMenuItem.Text = "Load Branch on double-click"; + this.LoadBranchOnDoubleclickMenuItem.Click += new System.EventHandler(this.LoadBranchOnDoubleClickMenuItem_Click); + // + // OsdInBranchScreenshotsMenuItem + // + this.OsdInBranchScreenshotsMenuItem.Enabled = false; + this.OsdInBranchScreenshotsMenuItem.Text = "OSD in Branch screenshots"; + this.OsdInBranchScreenshotsMenuItem.Visible = false; + // + // AutopauseAtEndOfMovieMenuItem + // + this.AutopauseAtEndOfMovieMenuItem.Text = "Autopause at end of Movie"; + this.AutopauseAtEndOfMovieMenuItem.Click += new System.EventHandler(this.AutoPauseAtEndMenuItem_Click); + // + // autoHoldFireToolStripMenuItem + // + this.autoHoldFireToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.keepSetPatternsToolStripMenuItem, this.sepToolStripMenuItem1, this.autoHoldToolStripMenuItem, @@ -611,82 +611,82 @@ private void InitializeComponent() this.customPatternToolStripMenuItem, this.setpToolStripMenuItem, this.setCustomsToolStripMenuItem}); - this.autoHoldFireToolStripMenuItem.Text = "Auto Hold/Fire"; - // - // keepSetPatternsToolStripMenuItem - // - this.keepSetPatternsToolStripMenuItem.CheckOnClick = true; - this.keepSetPatternsToolStripMenuItem.Text = "Keep set patterns"; - // - // autoHoldToolStripMenuItem - // - this.autoHoldToolStripMenuItem.Checked = true; - this.autoHoldToolStripMenuItem.CheckOnClick = true; - this.autoHoldToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; - this.autoHoldToolStripMenuItem.Text = "Auto-Hold"; - this.autoHoldToolStripMenuItem.CheckedChanged += new System.EventHandler(this.AutoHoldMenuItem_CheckedChanged); - // - // autoFireToolStripMenuItem - // - this.autoFireToolStripMenuItem.CheckOnClick = true; - this.autoFireToolStripMenuItem.Text = "Auto-Fire"; - this.autoFireToolStripMenuItem.CheckedChanged += new System.EventHandler(this.AutoFireMenuItem_CheckedChanged); - // - // customPatternToolStripMenuItem - // - this.customPatternToolStripMenuItem.CheckOnClick = true; - this.customPatternToolStripMenuItem.Text = "Custom Pattern"; - this.customPatternToolStripMenuItem.CheckedChanged += new System.EventHandler(this.CustomPatternMenuItem_CheckedChanged); - // - // setCustomsToolStripMenuItem - // - this.setCustomsToolStripMenuItem.Text = "Set Customs..."; - this.setCustomsToolStripMenuItem.Click += new System.EventHandler(this.SetCustomsMenuItem_Click); - // - // SetFontMenuItem - // - this.SetFontMenuItem.Text = "Set Font"; - this.SetFontMenuItem.Click += new System.EventHandler(this.SetFontMenuItem_Click); - // - // MetaSubMenu - // - this.MetaSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.autoHoldFireToolStripMenuItem.Text = "Auto Hold/Fire"; + // + // keepSetPatternsToolStripMenuItem + // + this.keepSetPatternsToolStripMenuItem.CheckOnClick = true; + this.keepSetPatternsToolStripMenuItem.Text = "Keep set patterns"; + // + // autoHoldToolStripMenuItem + // + this.autoHoldToolStripMenuItem.Checked = true; + this.autoHoldToolStripMenuItem.CheckOnClick = true; + this.autoHoldToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.autoHoldToolStripMenuItem.Text = "Auto-Hold"; + this.autoHoldToolStripMenuItem.CheckedChanged += new System.EventHandler(this.AutoHoldMenuItem_CheckedChanged); + // + // autoFireToolStripMenuItem + // + this.autoFireToolStripMenuItem.CheckOnClick = true; + this.autoFireToolStripMenuItem.Text = "Auto-Fire"; + this.autoFireToolStripMenuItem.CheckedChanged += new System.EventHandler(this.AutoFireMenuItem_CheckedChanged); + // + // customPatternToolStripMenuItem + // + this.customPatternToolStripMenuItem.CheckOnClick = true; + this.customPatternToolStripMenuItem.Text = "Custom Pattern"; + this.customPatternToolStripMenuItem.CheckedChanged += new System.EventHandler(this.CustomPatternMenuItem_CheckedChanged); + // + // setCustomsToolStripMenuItem + // + this.setCustomsToolStripMenuItem.Text = "Set Customs..."; + this.setCustomsToolStripMenuItem.Click += new System.EventHandler(this.SetCustomsMenuItem_Click); + // + // SetFontMenuItem + // + this.SetFontMenuItem.Text = "Set Font"; + this.SetFontMenuItem.Click += new System.EventHandler(this.SetFontMenuItem_Click); + // + // MetaSubMenu + // + this.MetaSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.HeaderMenuItem, this.StateHistorySettingsMenuItem, this.CommentsMenuItem, this.SubtitlesMenuItem, this.toolStripSeparator21, this.DefaultStateSettingsMenuItem}); - this.MetaSubMenu.Text = "&Metadata"; - // - // HeaderMenuItem - // - this.HeaderMenuItem.Text = "&Header..."; - this.HeaderMenuItem.Click += new System.EventHandler(this.HeaderMenuItem_Click); - // - // StateHistorySettingsMenuItem - // - this.StateHistorySettingsMenuItem.Text = "&Savestate History Settings..."; - this.StateHistorySettingsMenuItem.Click += new System.EventHandler(this.StateHistorySettingsMenuItem_Click); - // - // CommentsMenuItem - // - this.CommentsMenuItem.Text = "&Comments..."; - this.CommentsMenuItem.Click += new System.EventHandler(this.CommentsMenuItem_Click); - // - // SubtitlesMenuItem - // - this.SubtitlesMenuItem.Text = "&Subtitles..."; - this.SubtitlesMenuItem.Click += new System.EventHandler(this.SubtitlesMenuItem_Click); - // - // DefaultStateSettingsMenuItem - // - this.DefaultStateSettingsMenuItem.Text = "&Default State History Settings..."; - this.DefaultStateSettingsMenuItem.Click += new System.EventHandler(this.DefaultStateSettingsMenuItem_Click); - // - // SettingsSubMenu - // - this.SettingsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MetaSubMenu.Text = "&Metadata"; + // + // HeaderMenuItem + // + this.HeaderMenuItem.Text = "&Header..."; + this.HeaderMenuItem.Click += new System.EventHandler(this.HeaderMenuItem_Click); + // + // StateHistorySettingsMenuItem + // + this.StateHistorySettingsMenuItem.Text = "&Savestate History Settings..."; + this.StateHistorySettingsMenuItem.Click += new System.EventHandler(this.StateHistorySettingsMenuItem_Click); + // + // CommentsMenuItem + // + this.CommentsMenuItem.Text = "&Comments..."; + this.CommentsMenuItem.Click += new System.EventHandler(this.CommentsMenuItem_Click); + // + // SubtitlesMenuItem + // + this.SubtitlesMenuItem.Text = "&Subtitles..."; + this.SubtitlesMenuItem.Click += new System.EventHandler(this.SubtitlesMenuItem_Click); + // + // DefaultStateSettingsMenuItem + // + this.DefaultStateSettingsMenuItem.Text = "&Default State History Settings..."; + this.DefaultStateSettingsMenuItem.Click += new System.EventHandler(this.DefaultStateSettingsMenuItem_Click); + // + // SettingsSubMenu + // + this.SettingsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.RotateMenuItem, this.HideLagFramesSubMenu, this.iconsToolStripMenuItem, @@ -695,278 +695,278 @@ private void InitializeComponent() this.followCursorToolStripMenuItem, this.toolStripSeparator25, this.wheelScrollSpeedToolStripMenuItem}); - this.SettingsSubMenu.Text = "&Settings"; - this.SettingsSubMenu.DropDownOpened += new System.EventHandler(this.SettingsSubMenu_DropDownOpened); - // - // RotateMenuItem - // - this.RotateMenuItem.Text = "Rotate"; - this.RotateMenuItem.Click += new System.EventHandler(this.RotateMenuItem_Click); - // - // HideLagFramesSubMenu - // - this.HideLagFramesSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SettingsSubMenu.Text = "&Settings"; + this.SettingsSubMenu.DropDownOpened += new System.EventHandler(this.SettingsSubMenu_DropDownOpened); + // + // RotateMenuItem + // + this.RotateMenuItem.Text = "Rotate"; + this.RotateMenuItem.Click += new System.EventHandler(this.RotateMenuItem_Click); + // + // HideLagFramesSubMenu + // + this.HideLagFramesSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.HideLagFrames0, this.HideLagFrames1, this.HideLagFrames2, this.HideLagFrames3, this.toolStripSeparator12, this.hideWasLagFramesToolStripMenuItem}); - this.HideLagFramesSubMenu.Text = "Hide Lag Frames"; - this.HideLagFramesSubMenu.DropDownOpened += new System.EventHandler(this.HideLagFramesSubMenu_DropDownOpened); - // - // HideLagFrames0 - // - this.HideLagFrames0.Checked = true; - this.HideLagFrames0.CheckOnClick = true; - this.HideLagFrames0.CheckState = System.Windows.Forms.CheckState.Checked; - this.HideLagFrames0.Tag = 0; - this.HideLagFrames0.Text = "Don\'t Hide"; - this.HideLagFrames0.Click += new System.EventHandler(this.HideLagFramesX_Click); - // - // HideLagFrames1 - // - this.HideLagFrames1.CheckOnClick = true; - this.HideLagFrames1.Tag = 1; - this.HideLagFrames1.Text = "1 (30 fps)"; - this.HideLagFrames1.Click += new System.EventHandler(this.HideLagFramesX_Click); - // - // HideLagFrames2 - // - this.HideLagFrames2.Tag = 2; - this.HideLagFrames2.Text = "2 (20 fps)"; - this.HideLagFrames2.Click += new System.EventHandler(this.HideLagFramesX_Click); - // - // HideLagFrames3 - // - this.HideLagFrames3.CheckOnClick = true; - this.HideLagFrames3.Tag = 3; - this.HideLagFrames3.Text = "3 (15fps)"; - this.HideLagFrames3.Click += new System.EventHandler(this.HideLagFramesX_Click); - // - // hideWasLagFramesToolStripMenuItem - // - this.hideWasLagFramesToolStripMenuItem.CheckOnClick = true; - this.hideWasLagFramesToolStripMenuItem.Text = "Hide WasLag Frames"; - this.hideWasLagFramesToolStripMenuItem.Click += new System.EventHandler(this.HideWasLagFramesMenuItem_Click); - // - // iconsToolStripMenuItem - // - this.iconsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.HideLagFramesSubMenu.Text = "Hide Lag Frames"; + this.HideLagFramesSubMenu.DropDownOpened += new System.EventHandler(this.HideLagFramesSubMenu_DropDownOpened); + // + // HideLagFrames0 + // + this.HideLagFrames0.Checked = true; + this.HideLagFrames0.CheckOnClick = true; + this.HideLagFrames0.CheckState = System.Windows.Forms.CheckState.Checked; + this.HideLagFrames0.Tag = 0; + this.HideLagFrames0.Text = "Don\'t Hide"; + this.HideLagFrames0.Click += new System.EventHandler(this.HideLagFramesX_Click); + // + // HideLagFrames1 + // + this.HideLagFrames1.CheckOnClick = true; + this.HideLagFrames1.Tag = 1; + this.HideLagFrames1.Text = "1 (30 fps)"; + this.HideLagFrames1.Click += new System.EventHandler(this.HideLagFramesX_Click); + // + // HideLagFrames2 + // + this.HideLagFrames2.Tag = 2; + this.HideLagFrames2.Text = "2 (20 fps)"; + this.HideLagFrames2.Click += new System.EventHandler(this.HideLagFramesX_Click); + // + // HideLagFrames3 + // + this.HideLagFrames3.CheckOnClick = true; + this.HideLagFrames3.Tag = 3; + this.HideLagFrames3.Text = "3 (15fps)"; + this.HideLagFrames3.Click += new System.EventHandler(this.HideLagFramesX_Click); + // + // hideWasLagFramesToolStripMenuItem + // + this.hideWasLagFramesToolStripMenuItem.CheckOnClick = true; + this.hideWasLagFramesToolStripMenuItem.Text = "Hide WasLag Frames"; + this.hideWasLagFramesToolStripMenuItem.Click += new System.EventHandler(this.HideWasLagFramesMenuItem_Click); + // + // iconsToolStripMenuItem + // + this.iconsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.DenoteStatesWithIconsToolStripMenuItem, this.DenoteStatesWithBGColorToolStripMenuItem, this.DenoteMarkersWithIconsToolStripMenuItem, this.DenoteMarkersWithBGColorToolStripMenuItem}); - this.iconsToolStripMenuItem.Text = "Icons"; - this.iconsToolStripMenuItem.DropDownOpened += new System.EventHandler(this.IconsMenuItem_DropDownOpened); - // - // DenoteStatesWithIconsToolStripMenuItem - // - this.DenoteStatesWithIconsToolStripMenuItem.CheckOnClick = true; - this.DenoteStatesWithIconsToolStripMenuItem.Text = "Denote States With Icons"; - this.DenoteStatesWithIconsToolStripMenuItem.Click += new System.EventHandler(this.DenoteStatesWithIconsToolStripMenuItem_Click); - // - // DenoteStatesWithBGColorToolStripMenuItem - // - this.DenoteStatesWithBGColorToolStripMenuItem.CheckOnClick = true; - this.DenoteStatesWithBGColorToolStripMenuItem.Text = "Denote States With BG Color"; - this.DenoteStatesWithBGColorToolStripMenuItem.Click += new System.EventHandler(this.DenoteStatesWithBGColorToolStripMenuItem_Click); - // - // DenoteMarkersWithIconsToolStripMenuItem - // - this.DenoteMarkersWithIconsToolStripMenuItem.CheckOnClick = true; - this.DenoteMarkersWithIconsToolStripMenuItem.Text = "Denote Markers With Icons"; - this.DenoteMarkersWithIconsToolStripMenuItem.Click += new System.EventHandler(this.DenoteMarkersWithIconsToolStripMenuItem_Click); - // - // DenoteMarkersWithBGColorToolStripMenuItem - // - this.DenoteMarkersWithBGColorToolStripMenuItem.CheckOnClick = true; - this.DenoteMarkersWithBGColorToolStripMenuItem.Text = "Denote Markers With BG Color"; - this.DenoteMarkersWithBGColorToolStripMenuItem.Click += new System.EventHandler(this.DenoteMarkersWithBGColorToolStripMenuItem_Click); - // - // ColorSettingsMenuItem - // - this.ColorSettingsMenuItem.Text = "Edit TAStudio Colors..."; - this.ColorSettingsMenuItem.Click += new System.EventHandler(this.ColorSettingsMenuItem_Click); - // - // followCursorToolStripMenuItem - // - this.followCursorToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.iconsToolStripMenuItem.Text = "Icons"; + this.iconsToolStripMenuItem.DropDownOpened += new System.EventHandler(this.IconsMenuItem_DropDownOpened); + // + // DenoteStatesWithIconsToolStripMenuItem + // + this.DenoteStatesWithIconsToolStripMenuItem.CheckOnClick = true; + this.DenoteStatesWithIconsToolStripMenuItem.Text = "Denote States With Icons"; + this.DenoteStatesWithIconsToolStripMenuItem.Click += new System.EventHandler(this.DenoteStatesWithIconsToolStripMenuItem_Click); + // + // DenoteStatesWithBGColorToolStripMenuItem + // + this.DenoteStatesWithBGColorToolStripMenuItem.CheckOnClick = true; + this.DenoteStatesWithBGColorToolStripMenuItem.Text = "Denote States With BG Color"; + this.DenoteStatesWithBGColorToolStripMenuItem.Click += new System.EventHandler(this.DenoteStatesWithBGColorToolStripMenuItem_Click); + // + // DenoteMarkersWithIconsToolStripMenuItem + // + this.DenoteMarkersWithIconsToolStripMenuItem.CheckOnClick = true; + this.DenoteMarkersWithIconsToolStripMenuItem.Text = "Denote Markers With Icons"; + this.DenoteMarkersWithIconsToolStripMenuItem.Click += new System.EventHandler(this.DenoteMarkersWithIconsToolStripMenuItem_Click); + // + // DenoteMarkersWithBGColorToolStripMenuItem + // + this.DenoteMarkersWithBGColorToolStripMenuItem.CheckOnClick = true; + this.DenoteMarkersWithBGColorToolStripMenuItem.Text = "Denote Markers With BG Color"; + this.DenoteMarkersWithBGColorToolStripMenuItem.Click += new System.EventHandler(this.DenoteMarkersWithBGColorToolStripMenuItem_Click); + // + // ColorSettingsMenuItem + // + this.ColorSettingsMenuItem.Text = "Edit TAStudio Colors..."; + this.ColorSettingsMenuItem.Click += new System.EventHandler(this.ColorSettingsMenuItem_Click); + // + // followCursorToolStripMenuItem + // + this.followCursorToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.alwaysScrollToolStripMenuItem, this.toolStripSeparator24, this.scrollToViewToolStripMenuItem, this.scrollToTopToolStripMenuItem, this.scrollToBottomToolStripMenuItem, this.scrollToCenterToolStripMenuItem}); - this.followCursorToolStripMenuItem.Text = "Follow Cursor"; - this.followCursorToolStripMenuItem.DropDownOpened += new System.EventHandler(this.FollowCursorMenuItem_DropDownOpened); - // - // alwaysScrollToolStripMenuItem - // - this.alwaysScrollToolStripMenuItem.CheckOnClick = true; - this.alwaysScrollToolStripMenuItem.Text = "Always Scroll"; - this.alwaysScrollToolStripMenuItem.Click += new System.EventHandler(this.AlwaysScrollMenuItem_Click); - // - // scrollToViewToolStripMenuItem - // - this.scrollToViewToolStripMenuItem.Checked = true; - this.scrollToViewToolStripMenuItem.CheckOnClick = true; - this.scrollToViewToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; - this.scrollToViewToolStripMenuItem.Text = "Scroll to View"; - this.scrollToViewToolStripMenuItem.Click += new System.EventHandler(this.ScrollToViewMenuItem_Click); - // - // scrollToTopToolStripMenuItem - // - this.scrollToTopToolStripMenuItem.CheckOnClick = true; - this.scrollToTopToolStripMenuItem.Text = "Scroll to Top"; - this.scrollToTopToolStripMenuItem.Click += new System.EventHandler(this.ScrollToTopMenuItem_Click); - // - // scrollToBottomToolStripMenuItem - // - this.scrollToBottomToolStripMenuItem.CheckOnClick = true; - this.scrollToBottomToolStripMenuItem.Text = "Scroll to Bottom"; - this.scrollToBottomToolStripMenuItem.Click += new System.EventHandler(this.ScrollToBottomMenuItem_Click); - // - // scrollToCenterToolStripMenuItem - // - this.scrollToCenterToolStripMenuItem.CheckOnClick = true; - this.scrollToCenterToolStripMenuItem.Text = "Scroll to Center"; - this.scrollToCenterToolStripMenuItem.Click += new System.EventHandler(this.ScrollToCenterMenuItem_Click); - // - // wheelScrollSpeedToolStripMenuItem - // - this.wheelScrollSpeedToolStripMenuItem.Text = "Wheel Scroll Speed..."; - this.wheelScrollSpeedToolStripMenuItem.Click += new System.EventHandler(this.WheelScrollSpeedMenuItem_Click); - // - // ColumnsSubMenu - // - this.ColumnsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.followCursorToolStripMenuItem.Text = "Follow Cursor"; + this.followCursorToolStripMenuItem.DropDownOpened += new System.EventHandler(this.FollowCursorMenuItem_DropDownOpened); + // + // alwaysScrollToolStripMenuItem + // + this.alwaysScrollToolStripMenuItem.CheckOnClick = true; + this.alwaysScrollToolStripMenuItem.Text = "Always Scroll"; + this.alwaysScrollToolStripMenuItem.Click += new System.EventHandler(this.AlwaysScrollMenuItem_Click); + // + // scrollToViewToolStripMenuItem + // + this.scrollToViewToolStripMenuItem.Checked = true; + this.scrollToViewToolStripMenuItem.CheckOnClick = true; + this.scrollToViewToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.scrollToViewToolStripMenuItem.Text = "Scroll to View"; + this.scrollToViewToolStripMenuItem.Click += new System.EventHandler(this.ScrollToViewMenuItem_Click); + // + // scrollToTopToolStripMenuItem + // + this.scrollToTopToolStripMenuItem.CheckOnClick = true; + this.scrollToTopToolStripMenuItem.Text = "Scroll to Top"; + this.scrollToTopToolStripMenuItem.Click += new System.EventHandler(this.ScrollToTopMenuItem_Click); + // + // scrollToBottomToolStripMenuItem + // + this.scrollToBottomToolStripMenuItem.CheckOnClick = true; + this.scrollToBottomToolStripMenuItem.Text = "Scroll to Bottom"; + this.scrollToBottomToolStripMenuItem.Click += new System.EventHandler(this.ScrollToBottomMenuItem_Click); + // + // scrollToCenterToolStripMenuItem + // + this.scrollToCenterToolStripMenuItem.CheckOnClick = true; + this.scrollToCenterToolStripMenuItem.Text = "Scroll to Center"; + this.scrollToCenterToolStripMenuItem.Click += new System.EventHandler(this.ScrollToCenterMenuItem_Click); + // + // wheelScrollSpeedToolStripMenuItem + // + this.wheelScrollSpeedToolStripMenuItem.Text = "Wheel Scroll Speed..."; + this.wheelScrollSpeedToolStripMenuItem.Click += new System.EventHandler(this.WheelScrollSpeedMenuItem_Click); + // + // ColumnsSubMenu + // + this.ColumnsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator19}); - this.ColumnsSubMenu.Text = "&Columns"; - // - // HelpSubMenu - // - this.HelpSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ColumnsSubMenu.Text = "&Columns"; + // + // HelpSubMenu + // + this.HelpSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.TASEditorManualOnlineMenuItem, this.ForumThreadMenuItem, this.aboutToolStripMenuItem, this.toolStripSeparator10, this.EnableTooltipsMenuItem}); - this.HelpSubMenu.Text = "&Help"; - // - // TASEditorManualOnlineMenuItem - // - this.TASEditorManualOnlineMenuItem.Text = "TAS Editor Manual Online..."; - this.TASEditorManualOnlineMenuItem.Click += new System.EventHandler(this.TASEditorManualOnlineMenuItem_Click); - // - // ForumThreadMenuItem - // - this.ForumThreadMenuItem.Text = "Forum Thread..."; - this.ForumThreadMenuItem.Click += new System.EventHandler(this.ForumThreadMenuItem_Click); - // - // aboutToolStripMenuItem - // - this.aboutToolStripMenuItem.Enabled = false; - this.aboutToolStripMenuItem.Text = "&About"; - // - // EnableTooltipsMenuItem - // - this.EnableTooltipsMenuItem.Enabled = false; - this.EnableTooltipsMenuItem.Text = "&Enable Tooltips"; - // - // TasView - // - this.TasView.AllowColumnReorder = false; - this.TasView.AllowColumnResize = false; - this.TasView.AllowMassNavigationShortcuts = false; - this.TasView.AllowRightClickSelection = false; - this.TasView.AlwaysScroll = false; - this.TasView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + this.HelpSubMenu.Text = "&Help"; + // + // TASEditorManualOnlineMenuItem + // + this.TASEditorManualOnlineMenuItem.Text = "TAS Editor Manual Online..."; + this.TASEditorManualOnlineMenuItem.Click += new System.EventHandler(this.TASEditorManualOnlineMenuItem_Click); + // + // ForumThreadMenuItem + // + this.ForumThreadMenuItem.Text = "Forum Thread..."; + this.ForumThreadMenuItem.Click += new System.EventHandler(this.ForumThreadMenuItem_Click); + // + // aboutToolStripMenuItem + // + this.aboutToolStripMenuItem.Enabled = false; + this.aboutToolStripMenuItem.Text = "&About"; + // + // EnableTooltipsMenuItem + // + this.EnableTooltipsMenuItem.Enabled = false; + this.EnableTooltipsMenuItem.Text = "&Enable Tooltips"; + // + // TasView + // + this.TasView.AllowColumnReorder = false; + this.TasView.AllowColumnResize = false; + this.TasView.AllowMassNavigationShortcuts = false; + this.TasView.AllowRightClickSelection = false; + this.TasView.AlwaysScroll = false; + this.TasView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.TasView.CellHeightPadding = 0; - this.TasView.ChangeSelectionWhenPaging = false; - this.TasView.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.TasView.FullRowSelect = true; - this.TasView.HorizontalOrientation = false; - this.TasView.InputPaintingMode = true; - this.TasView.LetKeysModifySelection = true; - this.TasView.Location = new System.Drawing.Point(3, 0); - this.TasView.Name = "TasView"; - this.TasView.Rotatable = true; - this.TasView.RowCount = 0; - this.TasView.ScrollSpeed = 1; - this.TasView.Size = new System.Drawing.Size(289, 528); - this.TasView.TabIndex = 1; - this.TasView.ColumnClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnClick); - this.TasView.ColumnRightClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnRightClick); - this.TasView.SelectedIndexChanged += new System.EventHandler(this.TasView_SelectedIndexChanged); - this.TasView.RightMouseScrolled += new BizHawk.Client.EmuHawk.InputRoll.RightMouseScrollEventHandler(this.TasView_MouseWheel); - this.TasView.ColumnReordered += new BizHawk.Client.EmuHawk.InputRoll.ColumnReorderedEventHandler(this.TasView_ColumnReordered); - this.TasView.CellDropped += new BizHawk.Client.EmuHawk.InputRoll.CellDroppedEvent(this.TasView_CellDropped); - this.TasView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TasView_KeyDown); - this.TasView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseDoubleClick); - this.TasView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseDown); - this.TasView.MouseEnter += new System.EventHandler(this.TasView_MouseEnter); - this.TasView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseMove); - this.TasView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseUp); - // - // TasStatusStrip - // - this.TasStatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.TasView.CellHeightPadding = 0; + this.TasView.ChangeSelectionWhenPaging = false; + this.TasView.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.TasView.FullRowSelect = true; + this.TasView.HorizontalOrientation = false; + this.TasView.InputPaintingMode = true; + this.TasView.LetKeysModifySelection = true; + this.TasView.Location = new System.Drawing.Point(3, 20); + this.TasView.Name = "TasView"; + this.TasView.Rotatable = true; + this.TasView.RowCount = 0; + this.TasView.ScrollSpeed = 1; + this.TasView.Size = new System.Drawing.Size(300, 550); + this.TasView.TabIndex = 1; + this.TasView.ColumnClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnClick); + this.TasView.ColumnRightClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnRightClick); + this.TasView.SelectedIndexChanged += new System.EventHandler(this.TasView_SelectedIndexChanged); + this.TasView.RightMouseScrolled += new BizHawk.Client.EmuHawk.InputRoll.RightMouseScrollEventHandler(this.TasView_MouseWheel); + this.TasView.ColumnReordered += new BizHawk.Client.EmuHawk.InputRoll.ColumnReorderedEventHandler(this.TasView_ColumnReordered); + this.TasView.CellDropped += new BizHawk.Client.EmuHawk.InputRoll.CellDroppedEvent(this.TasView_CellDropped); + this.TasView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TasView_KeyDown); + this.TasView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseDoubleClick); + this.TasView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseDown); + this.TasView.MouseEnter += new System.EventHandler(this.TasView_MouseEnter); + this.TasView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseMove); + this.TasView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseUp); + // + // TasStatusStrip + // + this.TasStatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MessageStatusLabel, this.ProgressBar, this.toolStripStatusLabel2, this.SplicerStatusLabel}); - this.TasStatusStrip.Location = new System.Drawing.Point(0, 554); - this.TasStatusStrip.Name = "TasStatusStrip"; - this.TasStatusStrip.TabIndex = 4; - // - // MessageStatusLabel - // - this.MessageStatusLabel.Name = "MessageStatusLabel"; - this.MessageStatusLabel.Size = new System.Drawing.Size(103, 17); - this.MessageStatusLabel.Text = "TAStudio engaged"; - // - // ProgressBar - // - this.ProgressBar.Name = "ProgressBar"; - this.ProgressBar.Size = new System.Drawing.Size(100, 16); - // - // toolStripStatusLabel2 - // - this.toolStripStatusLabel2.Name = "toolStripStatusLabel2"; - this.toolStripStatusLabel2.Size = new System.Drawing.Size(269, 17); - this.toolStripStatusLabel2.Spring = true; - // - // SplicerStatusLabel - // - this.SplicerStatusLabel.Name = "SplicerStatusLabel"; - this.SplicerStatusLabel.Padding = new System.Windows.Forms.Padding(20, 0, 0, 0); - this.SplicerStatusLabel.Size = new System.Drawing.Size(20, 17); - // - // TasPlaybackBox - // - this.TasPlaybackBoxMPR.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + this.TasStatusStrip.Location = new System.Drawing.Point(0, 616); + this.TasStatusStrip.Name = "TasStatusStrip"; + this.TasStatusStrip.TabIndex = 4; + // + // MessageStatusLabel + // + this.MessageStatusLabel.Name = "MessageStatusLabel"; + this.MessageStatusLabel.Size = new System.Drawing.Size(103, 17); + this.MessageStatusLabel.Text = "TAStudio engaged"; + // + // ProgressBar + // + this.ProgressBar.Name = "ProgressBar"; + this.ProgressBar.Size = new System.Drawing.Size(100, 16); + // + // toolStripStatusLabel2 + // + this.toolStripStatusLabel2.Name = "toolStripStatusLabel2"; + this.toolStripStatusLabel2.Size = new System.Drawing.Size(545, 17); + this.toolStripStatusLabel2.Spring = true; + // + // SplicerStatusLabel + // + this.SplicerStatusLabel.Name = "SplicerStatusLabel"; + this.SplicerStatusLabel.Padding = new System.Windows.Forms.Padding(20, 0, 0, 0); + this.SplicerStatusLabel.Size = new System.Drawing.Size(20, 17); + // + // TasPlaybackBoxMPR + // + this.TasPlaybackBoxMPR.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.TasPlaybackBoxMPR.Location = new System.Drawing.Point(4, 4); - this.TasPlaybackBoxMPR.Name = "TasPlaybackBox"; - this.TasPlaybackBoxMPR.Size = new System.Drawing.Size(200, 108); - this.TasPlaybackBoxMPR.TabIndex = 5; - this.TasPlaybackBoxMPR.TastudioMPR = null; - // - // MarkerControl - // - this.MarkerControlMPR.Dock = System.Windows.Forms.DockStyle.Fill; - this.MarkerControlMPR.Location = new System.Drawing.Point(0, 0); - this.MarkerControlMPR.Name = "MarkerControl"; - this.MarkerControlMPR.Size = new System.Drawing.Size(200, 225); - this.MarkerControlMPR.TabIndex = 6; - this.MarkerControlMPR.TastudioMPR = null; - // - // RightClickMenu - // - this.RightClickMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.TasPlaybackBoxMPR.Location = new System.Drawing.Point(4, 4); + this.TasPlaybackBoxMPR.Name = "TasPlaybackBoxMPR"; + this.TasPlaybackBoxMPR.Size = new System.Drawing.Size(200, 108); + this.TasPlaybackBoxMPR.TabIndex = 5; + this.TasPlaybackBoxMPR.TastudioMPR = null; + // + // MarkerControlMPR + // + this.MarkerControlMPR.Dock = System.Windows.Forms.DockStyle.Fill; + this.MarkerControlMPR.Location = new System.Drawing.Point(0, 0); + this.MarkerControlMPR.Name = "MarkerControlMPR"; + this.MarkerControlMPR.Size = new System.Drawing.Size(200, 260); + this.MarkerControlMPR.TabIndex = 6; + this.MarkerControlMPR.TastudioMPR = null; + // + // RightClickMenu + // + this.RightClickMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SetMarkersContextMenuItem, this.SetMarkerWithTextContextMenuItem, this.RemoveMarkersContextMenuItem, @@ -994,207 +994,207 @@ private void InitializeComponent() this.StartFromNowSeparator, this.StartNewProjectFromNowMenuItem, this.StartANewProjectFromSaveRamMenuItem}); - this.RightClickMenu.Name = "RightClickMenu"; - this.RightClickMenu.Size = new System.Drawing.Size(253, 524); - this.RightClickMenu.Opened += new System.EventHandler(this.RightClickMenu_Opened); - // - // SetMarkersContextMenuItem - // - this.SetMarkersContextMenuItem.Text = "Set Markers"; - this.SetMarkersContextMenuItem.Click += new System.EventHandler(this.SetMarkersMenuItem_Click); - // - // SetMarkerWithTextContextMenuItem - // - this.SetMarkerWithTextContextMenuItem.Text = "Set Marker with Text"; - this.SetMarkerWithTextContextMenuItem.Click += new System.EventHandler(this.SetMarkerWithTextMenuItem_Click); - // - // RemoveMarkersContextMenuItem - // - this.RemoveMarkersContextMenuItem.Text = "Remove Markers"; - this.RemoveMarkersContextMenuItem.Click += new System.EventHandler(this.RemoveMarkersMenuItem_Click); - // - // DeselectContextMenuItem - // - this.DeselectContextMenuItem.Text = "Deselect"; - this.DeselectContextMenuItem.Click += new System.EventHandler(this.DeselectMenuItem_Click); - // - // SelectBetweenMarkersContextMenuItem - // - this.SelectBetweenMarkersContextMenuItem.Text = "Select between Markers"; - this.SelectBetweenMarkersContextMenuItem.Click += new System.EventHandler(this.SelectBetweenMarkersMenuItem_Click); - // - // UngreenzoneContextMenuItem - // - this.UngreenzoneContextMenuItem.Text = "Clear Greenzone"; - this.UngreenzoneContextMenuItem.Click += new System.EventHandler(this.ClearGreenzoneMenuItem_Click); - // - // CancelSeekContextMenuItem - // - this.CancelSeekContextMenuItem.Text = "Cancel Seek"; - this.CancelSeekContextMenuItem.Click += new System.EventHandler(this.CancelSeekContextMenuItem_Click); - // - // copyToolStripMenuItem - // - this.copyToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+C"; - this.copyToolStripMenuItem.Text = "Copy"; - this.copyToolStripMenuItem.Click += new System.EventHandler(this.CopyMenuItem_Click); - // - // pasteToolStripMenuItem - // - this.pasteToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+V"; - this.pasteToolStripMenuItem.Text = "Paste"; - this.pasteToolStripMenuItem.Click += new System.EventHandler(this.PasteMenuItem_Click); - // - // pasteInsertToolStripMenuItem - // - this.pasteInsertToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+Shift+V"; - this.pasteInsertToolStripMenuItem.Text = "Paste Insert"; - this.pasteInsertToolStripMenuItem.Click += new System.EventHandler(this.PasteInsertMenuItem_Click); - // - // cutToolStripMenuItem - // - this.cutToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+X"; - this.cutToolStripMenuItem.Text = "Cut"; - this.cutToolStripMenuItem.Click += new System.EventHandler(this.CutMenuItem_Click); - // - // ClearContextMenuItem - // - this.ClearContextMenuItem.Text = "Clear"; - this.ClearContextMenuItem.Click += new System.EventHandler(this.ClearFramesMenuItem_Click); - // - // InsertFrameContextMenuItem - // - this.InsertFrameContextMenuItem.Text = "Insert"; - this.InsertFrameContextMenuItem.Click += new System.EventHandler(this.InsertFrameMenuItem_Click); - // - // DeleteFramesContextMenuItem - // - this.DeleteFramesContextMenuItem.Text = "Delete"; - this.DeleteFramesContextMenuItem.Click += new System.EventHandler(this.DeleteFramesMenuItem_Click); - // - // CloneContextMenuItem - // - this.CloneContextMenuItem.Text = "Clone"; - this.CloneContextMenuItem.Click += new System.EventHandler(this.CloneFramesMenuItem_Click); - // - // CloneXTimesContextMenuItem - // - this.CloneXTimesContextMenuItem.Text = "Clone # Times"; - this.CloneXTimesContextMenuItem.Click += new System.EventHandler(this.CloneFramesXTimesMenuItem_Click); - // - // InsertNumFramesContextMenuItem - // - this.InsertNumFramesContextMenuItem.Text = "Insert # of Frames"; - this.InsertNumFramesContextMenuItem.Click += new System.EventHandler(this.InsertNumFramesMenuItem_Click); - // - // TruncateContextMenuItem - // - this.TruncateContextMenuItem.Text = "Truncate Movie"; - this.TruncateContextMenuItem.Click += new System.EventHandler(this.TruncateMenuItem_Click); - // - // BranchContextMenuItem - // - this.BranchContextMenuItem.Text = "&Branch"; - this.BranchContextMenuItem.Click += new System.EventHandler(this.BranchContextMenuItem_Click); - // - // StartNewProjectFromNowMenuItem - // - this.StartNewProjectFromNowMenuItem.Text = "Start a new project from Now"; - this.StartNewProjectFromNowMenuItem.Click += new System.EventHandler(this.StartNewProjectFromNowMenuItem_Click); - // - // StartANewProjectFromSaveRamMenuItem - // - this.StartANewProjectFromSaveRamMenuItem.Text = "Start a new project from SaveRam"; - this.StartANewProjectFromSaveRamMenuItem.Click += new System.EventHandler(this.StartANewProjectFromSaveRamMenuItem_Click); - // - // BookMarkControl - // - this.BookMarkControlMPR.Dock = System.Windows.Forms.DockStyle.Fill; - this.BookMarkControlMPR.LoadedCallback = null; - this.BookMarkControlMPR.Location = new System.Drawing.Point(0, 0); - this.BookMarkControlMPR.Name = "BookMarkControl"; - this.BookMarkControlMPR.RemovedCallback = null; - this.BookMarkControlMPR.SavedCallback = null; - this.BookMarkControlMPR.Size = new System.Drawing.Size(200, 183); - this.BookMarkControlMPR.TabIndex = 8; - this.BookMarkControlMPR.TastudioMPR = null; - // - // BranchesMarkersSplit - // - this.BranchesMarkersSplit.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + this.RightClickMenu.Name = "RightClickMenu"; + this.RightClickMenu.Size = new System.Drawing.Size(253, 502); + this.RightClickMenu.Opened += new System.EventHandler(this.RightClickMenu_Opened); + // + // SetMarkersContextMenuItem + // + this.SetMarkersContextMenuItem.Text = "Set Markers"; + this.SetMarkersContextMenuItem.Click += new System.EventHandler(this.SetMarkersMenuItem_Click); + // + // SetMarkerWithTextContextMenuItem + // + this.SetMarkerWithTextContextMenuItem.Text = "Set Marker with Text"; + this.SetMarkerWithTextContextMenuItem.Click += new System.EventHandler(this.SetMarkerWithTextMenuItem_Click); + // + // RemoveMarkersContextMenuItem + // + this.RemoveMarkersContextMenuItem.Text = "Remove Markers"; + this.RemoveMarkersContextMenuItem.Click += new System.EventHandler(this.RemoveMarkersMenuItem_Click); + // + // DeselectContextMenuItem + // + this.DeselectContextMenuItem.Text = "Deselect"; + this.DeselectContextMenuItem.Click += new System.EventHandler(this.DeselectMenuItem_Click); + // + // SelectBetweenMarkersContextMenuItem + // + this.SelectBetweenMarkersContextMenuItem.Text = "Select between Markers"; + this.SelectBetweenMarkersContextMenuItem.Click += new System.EventHandler(this.SelectBetweenMarkersMenuItem_Click); + // + // UngreenzoneContextMenuItem + // + this.UngreenzoneContextMenuItem.Text = "Clear Greenzone"; + this.UngreenzoneContextMenuItem.Click += new System.EventHandler(this.ClearGreenzoneMenuItem_Click); + // + // CancelSeekContextMenuItem + // + this.CancelSeekContextMenuItem.Text = "Cancel Seek"; + this.CancelSeekContextMenuItem.Click += new System.EventHandler(this.CancelSeekContextMenuItem_Click); + // + // copyToolStripMenuItem + // + this.copyToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+C"; + this.copyToolStripMenuItem.Text = "Copy"; + this.copyToolStripMenuItem.Click += new System.EventHandler(this.CopyMenuItem_Click); + // + // pasteToolStripMenuItem + // + this.pasteToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+V"; + this.pasteToolStripMenuItem.Text = "Paste"; + this.pasteToolStripMenuItem.Click += new System.EventHandler(this.PasteMenuItem_Click); + // + // pasteInsertToolStripMenuItem + // + this.pasteInsertToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+Shift+V"; + this.pasteInsertToolStripMenuItem.Text = "Paste Insert"; + this.pasteInsertToolStripMenuItem.Click += new System.EventHandler(this.PasteInsertMenuItem_Click); + // + // cutToolStripMenuItem + // + this.cutToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+X"; + this.cutToolStripMenuItem.Text = "Cut"; + this.cutToolStripMenuItem.Click += new System.EventHandler(this.CutMenuItem_Click); + // + // ClearContextMenuItem + // + this.ClearContextMenuItem.Text = "Clear"; + this.ClearContextMenuItem.Click += new System.EventHandler(this.ClearFramesMenuItem_Click); + // + // DeleteFramesContextMenuItem + // + this.DeleteFramesContextMenuItem.Text = "Delete"; + this.DeleteFramesContextMenuItem.Click += new System.EventHandler(this.DeleteFramesMenuItem_Click); + // + // InsertFrameContextMenuItem + // + this.InsertFrameContextMenuItem.Text = "Insert"; + this.InsertFrameContextMenuItem.Click += new System.EventHandler(this.InsertFrameMenuItem_Click); + // + // InsertNumFramesContextMenuItem + // + this.InsertNumFramesContextMenuItem.Text = "Insert # of Frames"; + this.InsertNumFramesContextMenuItem.Click += new System.EventHandler(this.InsertNumFramesMenuItem_Click); + // + // CloneContextMenuItem + // + this.CloneContextMenuItem.Text = "Clone"; + this.CloneContextMenuItem.Click += new System.EventHandler(this.CloneFramesMenuItem_Click); + // + // CloneXTimesContextMenuItem + // + this.CloneXTimesContextMenuItem.Text = "Clone # Times"; + this.CloneXTimesContextMenuItem.Click += new System.EventHandler(this.CloneFramesXTimesMenuItem_Click); + // + // TruncateContextMenuItem + // + this.TruncateContextMenuItem.Text = "Truncate Movie"; + this.TruncateContextMenuItem.Click += new System.EventHandler(this.TruncateMenuItem_Click); + // + // BranchContextMenuItem + // + this.BranchContextMenuItem.Text = "&Branch"; + this.BranchContextMenuItem.Click += new System.EventHandler(this.BranchContextMenuItem_Click); + // + // StartNewProjectFromNowMenuItem + // + this.StartNewProjectFromNowMenuItem.Text = "Start a new project from Now"; + this.StartNewProjectFromNowMenuItem.Click += new System.EventHandler(this.StartNewProjectFromNowMenuItem_Click); + // + // StartANewProjectFromSaveRamMenuItem + // + this.StartANewProjectFromSaveRamMenuItem.Text = "Start a new project from SaveRam"; + this.StartANewProjectFromSaveRamMenuItem.Click += new System.EventHandler(this.StartANewProjectFromSaveRamMenuItem_Click); + // + // BookMarkControlMPR + // + this.BookMarkControlMPR.Dock = System.Windows.Forms.DockStyle.Fill; + this.BookMarkControlMPR.LoadedCallback = null; + this.BookMarkControlMPR.Location = new System.Drawing.Point(0, 0); + this.BookMarkControlMPR.Name = "BookMarkControlMPR"; + this.BookMarkControlMPR.RemovedCallback = null; + this.BookMarkControlMPR.SavedCallback = null; + this.BookMarkControlMPR.Size = new System.Drawing.Size(200, 210); + this.BookMarkControlMPR.TabIndex = 8; + this.BookMarkControlMPR.TastudioMPR = null; + // + // BranchesMarkersSplit + // + this.BranchesMarkersSplit.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.BranchesMarkersSplit.Location = new System.Drawing.Point(4, 116); - this.BranchesMarkersSplit.Name = "BranchesMarkersSplit"; - this.BranchesMarkersSplit.Orientation = System.Windows.Forms.Orientation.Horizontal; - // - // BranchesMarkersSplit.Panel1 - // - this.BranchesMarkersSplit.Panel1.Controls.Add(this.BookMarkControlMPR); - // - // BranchesMarkersSplit.Panel2 - // - this.BranchesMarkersSplit.Panel2.Controls.Add(this.MarkerControlMPR); - this.BranchesMarkersSplit.Size = new System.Drawing.Size(200, 412); - this.BranchesMarkersSplit.SplitterDistance = 183; - this.BranchesMarkersSplit.TabIndex = 9; - this.BranchesMarkersSplit.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.BranchesMarkersSplit_SplitterMoved); - // - // MainVertialSplit - // - this.MainVertialSplit.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + this.BranchesMarkersSplit.Location = new System.Drawing.Point(4, 116); + this.BranchesMarkersSplit.Name = "BranchesMarkersSplit"; + this.BranchesMarkersSplit.Orientation = System.Windows.Forms.Orientation.Horizontal; + // + // BranchesMarkersSplit.Panel1 + // + this.BranchesMarkersSplit.Panel1.Controls.Add(this.BookMarkControlMPR); + // + // BranchesMarkersSplit.Panel2 + // + this.BranchesMarkersSplit.Panel2.Controls.Add(this.MarkerControlMPR); + this.BranchesMarkersSplit.Size = new System.Drawing.Size(200, 474); + this.BranchesMarkersSplit.SplitterDistance = 210; + this.BranchesMarkersSplit.TabIndex = 9; + this.BranchesMarkersSplit.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.BranchesMarkersSplit_SplitterMoved); + // + // MainVertialSplit + // + this.MainVertialSplit.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.MainVertialSplit.FixedPanel = System.Windows.Forms.FixedPanel.Panel2; - this.MainVertialSplit.Location = new System.Drawing.Point(2, 23); - this.MainVertialSplit.Name = "MainVertialSplit"; - // - // MainVertialSplit.Panel1 - // - this.MainVertialSplit.Panel1.Controls.Add(this.TasView); - // - // MainVertialSplit.Panel2 - // - this.MainVertialSplit.Panel2.Controls.Add(this.TasPlaybackBoxMPR); - this.MainVertialSplit.Panel2.Controls.Add(this.BranchesMarkersSplit); - this.MainVertialSplit.Size = new System.Drawing.Size(507, 528); - this.MainVertialSplit.SplitterDistance = 295; - this.MainVertialSplit.TabIndex = 10; - this.MainVertialSplit.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.MainVerticalSplit_SplitterMoved); - // - // TAStudio - // - this.AllowDrop = true; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(509, 576); - this.Controls.Add(this.MainVertialSplit); - this.Controls.Add(this.TasStatusStrip); - this.Controls.Add(this.TASMenu); - this.KeyPreview = true; - this.MainMenuStrip = this.TASMenu; - this.MinimumSize = new System.Drawing.Size(200, 148); - this.Name = "TAStudio"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Tastudio_Closing); - this.Load += new System.EventHandler(this.Tastudio_Load); - this.DragDrop += new System.Windows.Forms.DragEventHandler(this.TAStudio_DragDrop); - this.DragEnter += new System.Windows.Forms.DragEventHandler(this.DragEnterWrapper); - this.TASMenu.ResumeLayout(false); - this.TASMenu.PerformLayout(); - this.TasStatusStrip.ResumeLayout(false); - this.TasStatusStrip.PerformLayout(); - this.RightClickMenu.ResumeLayout(false); - this.BranchesMarkersSplit.Panel1.ResumeLayout(false); - this.BranchesMarkersSplit.Panel2.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.BranchesMarkersSplit)).EndInit(); - this.BranchesMarkersSplit.ResumeLayout(false); - this.MainVertialSplit.Panel1.ResumeLayout(false); - this.MainVertialSplit.Panel2.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.MainVertialSplit)).EndInit(); - this.MainVertialSplit.ResumeLayout(false); - this.ResumeLayout(false); - this.PerformLayout(); + this.MainVertialSplit.FixedPanel = System.Windows.Forms.FixedPanel.Panel2; + this.MainVertialSplit.Location = new System.Drawing.Point(2, 23); + this.MainVertialSplit.Name = "MainVertialSplit"; + // + // MainVertialSplit.Panel1 + // + this.MainVertialSplit.Panel1.Controls.Add(this.TasView); + // + // MainVertialSplit.Panel2 + // + this.MainVertialSplit.Panel2.Controls.Add(this.TasPlaybackBoxMPR); + this.MainVertialSplit.Panel2.Controls.Add(this.BranchesMarkersSplit); + this.MainVertialSplit.Size = new System.Drawing.Size(783, 590); + this.MainVertialSplit.SplitterDistance = 571; + this.MainVertialSplit.TabIndex = 10; + this.MainVertialSplit.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.MainVerticalSplit_SplitterMoved); + // + // TAStudioMPR + // + this.AllowDrop = true; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(785, 638); + this.Controls.Add(this.MainVertialSplit); + this.Controls.Add(this.TasStatusStrip); + this.Controls.Add(this.TASMenu); + this.KeyPreview = true; + this.MainMenuStrip = this.TASMenu; + this.MinimumSize = new System.Drawing.Size(200, 148); + this.Name = "TAStudioMPR"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Tastudio_Closing); + this.Load += new System.EventHandler(this.Tastudio_Load); + this.DragDrop += new System.Windows.Forms.DragEventHandler(this.TAStudio_DragDrop); + this.DragEnter += new System.Windows.Forms.DragEventHandler(this.DragEnterWrapper); + this.TASMenu.ResumeLayout(false); + this.TASMenu.PerformLayout(); + this.TasStatusStrip.ResumeLayout(false); + this.TasStatusStrip.PerformLayout(); + this.RightClickMenu.ResumeLayout(false); + this.BranchesMarkersSplit.Panel1.ResumeLayout(false); + this.BranchesMarkersSplit.Panel2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.BranchesMarkersSplit)).EndInit(); + this.BranchesMarkersSplit.ResumeLayout(false); + this.MainVertialSplit.Panel1.ResumeLayout(false); + this.MainVertialSplit.Panel2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.MainVertialSplit)).EndInit(); + this.MainVertialSplit.ResumeLayout(false); + this.ResumeLayout(false); + this.PerformLayout(); } diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index e80623209e0..993e771af7a 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -60,6 +60,7 @@ public static Icon ToolIcon [ConfigPersist] public Font TasViewFont { get; set; } = new Font("Arial", 8.25F, FontStyle.Bold, GraphicsUnit.Point, 0); + public List TasViews = new List(); public class TAStudioSettingsMPR { public TAStudioSettingsMPR() @@ -137,6 +138,17 @@ public TAStudioMPR() TasPlaybackBoxMPR.TastudioMPR = this; MarkerControlMPR.TastudioMPR = this; BookMarkControlMPR.TastudioMPR = this; + + + + + foreach (InputRoll tasView in TasViews) + { + + + + + } TasView.QueryItemText += TasView_QueryItemText; TasView.QueryItemBkColor += TasView_QueryItemBkColor; TasView.QueryRowBkColor += TasView_QueryRowBkColor; @@ -156,6 +168,27 @@ public TAStudioMPR() toolTip1.Show(e.NewCell.Column!.Name, TasView, PointToClient(Cursor.Position)); } }; + + InputRoll TasView2 = new InputRoll(); + TasView2.Name = "TasView2"; + TasView2.Parent = MainVertialSplit.Panel1; + TasView2.Width = 300; + TasView2.Height = 550; + TasView2.Location = new System.Drawing.Point(TasView.Location.X + TasView.Width + 10, 10); + TasView2.QueryItemText += TasView_QueryItemText; + TasView2.QueryItemBkColor += TasView_QueryItemBkColor; + TasView2.QueryRowBkColor += TasView_QueryRowBkColor; + TasView2.QueryItemIcon += TasView_QueryItemIcon; + TasView2.QueryFrameLag += TasView_QueryFrameLag; + TasView2.PointedCellChanged += TasView_PointedCellChanged; + TasView2.MouseLeave += TAStudio_MouseLeave; + TasView2.CellHovered += (_, e) => + { + if (e.NewCell.RowIndex is null) + { + toolTip1.Show(e.NewCell.Column!.Name, TasView2, PointToClient(Cursor.Position)); + } + }; } private void Tastudio_Load(object sender, EventArgs e) From 1062c98c17b71bb9dc09f3eb3464845be1b04a60 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Wed, 5 Feb 2025 21:18:01 -0500 Subject: [PATCH 03/65] Hooked up more events Hooked up more events --- .../tools/TAStudioMPR/TAStudioMPR.Designer.cs | 73 ++-- .../TAStudioMPR/TAStudioMPR.IToolForm.cs | 2 +- .../tools/TAStudioMPR/TAStudioMPR.ListView.cs | 94 +++--- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 190 +++++------ .../TAStudioMPR/TAStudioMPR.Navigation.cs | 4 +- .../tools/TAStudioMPR/TAStudioMPR.cs | 318 ++++++++++-------- 6 files changed, 358 insertions(+), 323 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs index 15a003b216f..317fd354d77 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs @@ -151,7 +151,7 @@ private void InitializeComponent() this.aboutToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); this.toolStripSeparator10 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); this.EnableTooltipsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.TasView = new BizHawk.Client.EmuHawk.InputRoll(); + this.TasView1 = new BizHawk.Client.EmuHawk.InputRoll(); this.TasStatusStrip = new BizHawk.WinForms.Controls.StatusStripEx(); this.MessageStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.ProgressBar = new System.Windows.Forms.ToolStripProgressBar(); @@ -874,42 +874,43 @@ private void InitializeComponent() this.EnableTooltipsMenuItem.Enabled = false; this.EnableTooltipsMenuItem.Text = "&Enable Tooltips"; // - // TasView + // TasView1 // - this.TasView.AllowColumnReorder = false; - this.TasView.AllowColumnResize = false; - this.TasView.AllowMassNavigationShortcuts = false; - this.TasView.AllowRightClickSelection = false; - this.TasView.AlwaysScroll = false; - this.TasView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + this.TasView1.AllowColumnReorder = false; + this.TasView1.AllowColumnResize = false; + this.TasView1.AllowMassNavigationShortcuts = false; + this.TasView1.AllowRightClickSelection = false; + this.TasView1.AlwaysScroll = false; + this.TasView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.TasView.CellHeightPadding = 0; - this.TasView.ChangeSelectionWhenPaging = false; - this.TasView.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.TasView.FullRowSelect = true; - this.TasView.HorizontalOrientation = false; - this.TasView.InputPaintingMode = true; - this.TasView.LetKeysModifySelection = true; - this.TasView.Location = new System.Drawing.Point(3, 20); - this.TasView.Name = "TasView"; - this.TasView.Rotatable = true; - this.TasView.RowCount = 0; - this.TasView.ScrollSpeed = 1; - this.TasView.Size = new System.Drawing.Size(300, 550); - this.TasView.TabIndex = 1; - this.TasView.ColumnClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnClick); - this.TasView.ColumnRightClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnRightClick); - this.TasView.SelectedIndexChanged += new System.EventHandler(this.TasView_SelectedIndexChanged); - this.TasView.RightMouseScrolled += new BizHawk.Client.EmuHawk.InputRoll.RightMouseScrollEventHandler(this.TasView_MouseWheel); - this.TasView.ColumnReordered += new BizHawk.Client.EmuHawk.InputRoll.ColumnReorderedEventHandler(this.TasView_ColumnReordered); - this.TasView.CellDropped += new BizHawk.Client.EmuHawk.InputRoll.CellDroppedEvent(this.TasView_CellDropped); - this.TasView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TasView_KeyDown); - this.TasView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseDoubleClick); - this.TasView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseDown); - this.TasView.MouseEnter += new System.EventHandler(this.TasView_MouseEnter); - this.TasView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseMove); - this.TasView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseUp); + this.TasView1.CellHeightPadding = 0; + this.TasView1.ChangeSelectionWhenPaging = false; + this.TasView1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.TasView1.FullRowSelect = true; + this.TasView1.HorizontalOrientation = false; + this.TasView1.InputPaintingMode = true; + this.TasView1.LetKeysModifySelection = true; + this.TasView1.Location = new System.Drawing.Point(3, 20); + this.TasView1.Name = "TasView1"; + this.TasView1.Rotatable = true; + this.TasView1.RowCount = 0; + this.TasView1.ScrollSpeed = 1; + this.TasView1.Size = new System.Drawing.Size(300, 550); + this.TasView1.TabIndex = 1; + this.TasView1.ColumnClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnClick); + this.TasView1.ColumnRightClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnRightClick); + this.TasView1.SelectedIndexChanged += new System.EventHandler(this.TasView_SelectedIndexChanged); + this.TasView1.RightMouseScrolled += new BizHawk.Client.EmuHawk.InputRoll.RightMouseScrollEventHandler(this.TasView_MouseWheel); + this.TasView1.ColumnReordered += new BizHawk.Client.EmuHawk.InputRoll.ColumnReorderedEventHandler(this.TasView_ColumnReordered); + this.TasView1.CellDropped += new BizHawk.Client.EmuHawk.InputRoll.CellDroppedEvent(this.TasView_CellDropped); + this.TasView1.Enter += new System.EventHandler(this.TasView1_Enter); + this.TasView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TasView_KeyDown); + this.TasView1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseDoubleClick); + this.TasView1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseDown); + this.TasView1.MouseEnter += new System.EventHandler(this.TasView_MouseEnter); + this.TasView1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseMove); + this.TasView1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseUp); // // TasStatusStrip // @@ -1151,7 +1152,7 @@ private void InitializeComponent() // // MainVertialSplit.Panel1 // - this.MainVertialSplit.Panel1.Controls.Add(this.TasView); + this.MainVertialSplit.Panel1.Controls.Add(this.TasView1); // // MainVertialSplit.Panel2 // @@ -1209,7 +1210,7 @@ private void InitializeComponent() private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1; private BizHawk.WinForms.Controls.ToolStripMenuItemEx EditSubMenu; private BizHawk.WinForms.Controls.ToolStripMenuItemEx ConfigSubMenu; - private InputRoll TasView; + private InputRoll TasView1; private BizHawk.WinForms.Controls.ToolStripMenuItemEx RecentSubMenu; private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator3; private BizHawk.WinForms.Controls.ToolStripMenuItemEx InsertFrameMenuItem; diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.IToolForm.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.IToolForm.cs index bea2c32727d..5f9b834427a 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.IToolForm.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.IToolForm.cs @@ -78,7 +78,7 @@ protected override void UpdateAfter() CurrentTasMovie.TasSession.UpdateValues(Emulator.Frame, CurrentTasMovie.Branches.Current); MaybeFollowCursor(); - if (TasView.IsPartiallyVisible(Emulator.Frame) || TasView.IsPartiallyVisible(_lastRefresh)) + if (TasView1.IsPartiallyVisible(Emulator.Frame) || TasView1.IsPartiallyVisible(_lastRefresh)) { refreshNeeded = true; } diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs index cea1803a905..b5dcb3afbb1 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs @@ -40,7 +40,7 @@ private int AxisEditRow set { _axisEditRow = value; - TasView.SuspendHotkeys = AxisEditingMode; + TasView1.SuspendHotkeys = AxisEditingMode; } } @@ -102,7 +102,7 @@ private void StartSeeking(int? frame, bool fromMiddleClick = false) TastudioPlayMode(); // suspend rec mode until seek ends, to allow mouse editing MainForm.UnpauseEmulator(); - if (diff > TasView.VisibleRows) + if (diff > TasView1.VisibleRows) { MessageStatusLabel.Text = "Seeking..."; ProgressBar.Visible = true; @@ -161,7 +161,7 @@ private void TasView_QueryItemIcon(int index, RollColumn column, ref Bitmap bitm if (columnName == CursorColumnName) { - if (TasView.HorizontalOrientation) + if (TasView1.HorizontalOrientation) { offsetX = -1; offsetY = 5; @@ -170,12 +170,12 @@ private void TasView_QueryItemIcon(int index, RollColumn column, ref Bitmap bitm if (index == Emulator.Frame) { bitmap = index == MainForm.PauseOnFrame - ? TasView.HorizontalOrientation ? ts_v_arrow_green_blue : ts_h_arrow_green_blue - : TasView.HorizontalOrientation ? ts_v_arrow_blue : ts_h_arrow_blue; + ? TasView1.HorizontalOrientation ? ts_v_arrow_green_blue : ts_h_arrow_green_blue + : TasView1.HorizontalOrientation ? ts_v_arrow_blue : ts_h_arrow_blue; } else if (index == LastPositionFrame) { - bitmap = TasView.HorizontalOrientation ? + bitmap = TasView1.HorizontalOrientation ? ts_v_arrow_green : ts_h_arrow_green; } @@ -328,7 +328,7 @@ private void TasView_QueryItemText(int index, RollColumn column, out string text } else if (columnName == FrameColumnName) { - offsetX = TasView.HorizontalOrientation ? 2 : 7; + offsetX = TasView1.HorizontalOrientation ? 2 : 7; text = FrameToStringPadded(index); } else @@ -367,18 +367,18 @@ private bool TasView_QueryFrameLag(int index, bool hideWasLag) private void TasView_ColumnClick(object sender, InputRoll.ColumnClickEventArgs e) { - if (TasView.AnyRowsSelected) + if (TasView1.AnyRowsSelected) { var columnName = e.Column!.Name; if (columnName == FrameColumnName) { - CurrentTasMovie.Markers.Add(TasView.SelectionEndIndex!.Value, ""); + CurrentTasMovie.Markers.Add(TasView1.SelectionEndIndex!.Value, ""); } else if (columnName != CursorColumnName) { - var frame = TasView.AnyRowsSelected ? TasView.FirstSelectedRowIndex : 0; - var buttonName = TasView.CurrentCell.Column!.Name; + var frame = TasView1.AnyRowsSelected ? TasView1.FirstSelectedRowIndex : 0; + var buttonName = TasView1.CurrentCell.Column!.Name; if (ControllerType.BoolButtons.Contains(buttonName)) { @@ -386,7 +386,7 @@ private void TasView_ColumnClick(object sender, InputRoll.ColumnClickEventArgs e { // nifty taseditor logic bool allPressed = true; - foreach (var index in TasView.SelectedRows) + foreach (var index in TasView1.SelectedRows) { if (index == CurrentTasMovie.FrameCount // last movie frame can't have input, but can be selected || !CurrentTasMovie.BoolIsPressed(index, buttonName)) @@ -395,12 +395,12 @@ private void TasView_ColumnClick(object sender, InputRoll.ColumnClickEventArgs e break; } } - CurrentTasMovie.SetBoolStates(frame, TasView.SelectedRows.Count(), buttonName, !allPressed); + CurrentTasMovie.SetBoolStates(frame, TasView1.SelectedRows.Count(), buttonName, !allPressed); } else { BoolPatterns[ControllerType.BoolButtons.IndexOf(buttonName)].Reset(); - foreach (var index in TasView.SelectedRows) + foreach (var index in TasView1.SelectedRows) { CurrentTasMovie.SetBoolState(index, buttonName, BoolPatterns[ControllerType.BoolButtons.IndexOf(buttonName)].GetNextValue()); } @@ -428,21 +428,21 @@ private void TasView_ColumnRightClick(object sender, InputRoll.ColumnClickEventA col.Emphasis = !col.Emphasis; UpdateAutoFire(col.Name, col.Emphasis); - TasView.Refresh(); + TasView1.Refresh(); } private void UpdateAutoFire() { - for (int i = 2; i < TasView.AllColumns.Count; i++) + for (int i = 2; i < TasView1.AllColumns.Count; i++) { - UpdateAutoFire(TasView.AllColumns[i].Name, TasView.AllColumns[i].Emphasis); + UpdateAutoFire(TasView1.AllColumns[i].Name, TasView1.AllColumns[i].Emphasis); } } public void UpdateAutoFire(string button, bool? isOn) { // No value means don't change whether it's on or off. - isOn ??= TasView.AllColumns.Find(c => c.Name == button).Emphasis; + isOn ??= TasView1.AllColumns.Find(c => c.Name == button).Emphasis; // use custom pattern if set bool useCustom = customPatternToolStripMenuItem.Checked; @@ -499,7 +499,7 @@ private void TasView_MouseEnter(object sender, EventArgs e) { if (ContainsFocus) { - TasView.Select(); + TasView1.Select(); } } @@ -512,8 +512,8 @@ private void TasView_MouseDown(object sender, MouseEventArgs e) } // only on mouse button down, check that the pointed to cell is the correct one (can be wrong due to scroll while playing) - TasView._programmaticallyChangingRow = true; - TasView.PointMouseToNewCell(); + TasView1._programmaticallyChangingRow = true; + TasView1.PointMouseToNewCell(); if (e.Button == MouseButtons.Middle) { @@ -531,7 +531,7 @@ private void TasView_MouseDown(object sender, MouseEventArgs e) return; } - if (TasView.CurrentCell is not { RowIndex: int frame, Column: RollColumn targetCol }) return; + if (TasView1.CurrentCell is not { RowIndex: int frame, Column: RollColumn targetCol }) return; var buttonName = targetCol.Name; WasRecording = CurrentTasMovie.IsRecording() || WasRecording; @@ -547,9 +547,9 @@ private void TasView_MouseDown(object sender, MouseEventArgs e) if (ModifierKeys == Keys.Control || ModifierKeys == Keys.Shift) { _extraAxisRows.Clear(); - _extraAxisRows.AddRange(TasView.SelectedRows); + _extraAxisRows.AddRange(TasView1.SelectedRows); _startSelectionDrag = true; - _selectionDragState = TasView.IsRowSelected(frame); + _selectionDragState = TasView1.IsRowSelected(frame); return; } if (_axisEditColumn != buttonName @@ -587,12 +587,12 @@ private void TasView_MouseDown(object sender, MouseEventArgs e) if (ModifierKeys == Keys.Alt && CurrentTasMovie.Markers.IsMarker(frame)) { // TODO - TasView.DragCurrentCell(); + TasView1.DragCurrentCell(); } else { _startSelectionDrag = true; - _selectionDragState = TasView.IsRowSelected(frame); + _selectionDragState = TasView1.IsRowSelected(frame); } } else if (targetCol.Type is not ColumnType.Text) // User changed input @@ -622,9 +622,9 @@ private void TasView_MouseDown(object sender, MouseEventArgs e) } else if (altOrShift4State is Keys.Shift) { - if (!TasView.AnyRowsSelected) return; + if (!TasView1.AnyRowsSelected) return; - var iFirstSelectedRow = TasView.FirstSelectedRowIndex; + var iFirstSelectedRow = TasView1.FirstSelectedRowIndex; var (firstSel, lastSel) = frame <= iFirstSelectedRow ? (frame, iFirstSelectedRow) : (iFirstSelectedRow, frame); @@ -717,10 +717,10 @@ private void TasView_MouseDown(object sender, MouseEventArgs e) _rightClickControl = (ModifierKeys | Keys.Control) == ModifierKeys; _rightClickShift = (ModifierKeys | Keys.Shift) == ModifierKeys; _rightClickAlt = (ModifierKeys | Keys.Alt) == ModifierKeys; - if (TasView.IsRowSelected(frame)) + if (TasView1.IsRowSelected(frame)) { - _rightClickInput = new string[TasView.SelectedRows.Count()]; - _rightClickFrame = TasView.SelectionStartIndex!.Value; + _rightClickInput = new string[TasView1.SelectedRows.Count()]; + _rightClickFrame = TasView1.SelectionStartIndex!.Value; try { CurrentTasMovie.GetLogEntries().CopyTo(_rightClickFrame, _rightClickInput, 0, _rightClickInput.Length); @@ -780,7 +780,7 @@ private void ClearLeftMouseStates() _startAxisDrawColumn = ""; _drewAxis = false; _paintingMinFrame = -1; - TasView.ReleaseCurrentCell(); + TasView1.ReleaseCurrentCell(); // Exit axis editing if value was changed with cursor if (AxisEditingMode && _axisPaintState != CurrentTasMovie.GetAxisState(_axisEditRow, _axisEditColumn)) @@ -806,15 +806,15 @@ private void ClearLeftMouseStates() private void TasView_MouseUp(object sender, MouseEventArgs e) { - if (e.Button == MouseButtons.Right && !TasView.IsPointingAtColumnHeader - && !_suppressContextMenu && !_leftButtonHeld && TasView.AnyRowsSelected) + if (e.Button == MouseButtons.Right && !TasView1.IsPointingAtColumnHeader + && !_suppressContextMenu && !_leftButtonHeld && TasView1.AnyRowsSelected) { - if (CurrentTasMovie.FrameCount < TasView.SelectionEndIndex) + if (CurrentTasMovie.FrameCount < TasView1.SelectionEndIndex) { // trying to be smart here // if a loaded branch log is shorter than selection, keep selection until you attempt to call context menu // you might need it when you load again the branch where this frame exists - TasView.DeselectAll(); + TasView1.DeselectAll(); SetTasViewRowCount(); } else @@ -875,7 +875,7 @@ private void TasView_MouseUp(object sender, MouseEventArgs e) private void TasView_MouseWheel(object sender, MouseEventArgs e) { - if (TasView.RightButtonHeld && TasView?.CurrentCell.RowIndex.HasValue == true) + if (TasView1.RightButtonHeld && TasView1?.CurrentCell.RowIndex.HasValue == true) { _suppressContextMenu = true; int notch = e.Delta / 120; @@ -911,13 +911,13 @@ private void TasView_MouseWheel(object sender, MouseEventArgs e) private void TasView_MouseDoubleClick(object sender, MouseEventArgs e) { - if (TasView.CurrentCell?.Column is not { Name: var columnName }) return; + if (TasView1.CurrentCell?.Column is not { Name: var columnName }) return; if (e.Button == MouseButtons.Left) { - if (!AxisEditingMode && TasView.CurrentCell.RowIndex is not null && columnName is FrameColumnName) + if (!AxisEditingMode && TasView1.CurrentCell.RowIndex is not null && columnName is FrameColumnName) { - var existingMarker = CurrentTasMovie.Markers.FirstOrDefault(m => m.Frame == TasView.CurrentCell.RowIndex.Value); + var existingMarker = CurrentTasMovie.Markers.FirstOrDefault(m => m.Frame == TasView1.CurrentCell.RowIndex.Value); if (existingMarker != null) { @@ -926,7 +926,7 @@ private void TasView_MouseDoubleClick(object sender, MouseEventArgs e) else { ClearLeftMouseStates(); - MarkerControlMPR.AddMarker(TasView.CurrentCell.RowIndex.Value); + MarkerControlMPR.AddMarker(TasView1.CurrentCell.RowIndex.Value); } } } @@ -934,7 +934,7 @@ private void TasView_MouseDoubleClick(object sender, MouseEventArgs e) private void TasView_PointedCellChanged(object sender, InputRoll.CellEventArgs e) { - toolTip1.SetToolTip(TasView, null); + toolTip1.SetToolTip(TasView1, null); if (e.NewCell.RowIndex is null) { @@ -985,8 +985,8 @@ private void TasView_PointedCellChanged(object sender, InputRoll.CellEventArgs e { for (var i = startVal; i <= endVal; i++) { - if (!TasView.IsRowSelected(i)) - TasView.SelectRow(i, _selectionDragState); + if (!TasView1.IsRowSelected(i)) + TasView1.SelectRow(i, _selectionDragState); if (AxisEditingMode && (ModifierKeys == Keys.Control || ModifierKeys == Keys.Shift)) { if (_selectionDragState) @@ -1113,7 +1113,7 @@ private void TasView_PointedCellChanged(object sender, InputRoll.CellEventArgs e } // Left-click - else if (TasView.IsPaintDown && !string.IsNullOrEmpty(_startBoolDrawColumn)) + else if (TasView1.IsPaintDown && !string.IsNullOrEmpty(_startBoolDrawColumn)) { CurrentTasMovie.IsCountingRerecords = false; @@ -1143,7 +1143,7 @@ private void TasView_PointedCellChanged(object sender, InputRoll.CellEventArgs e } } - else if (TasView.IsPaintDown && !string.IsNullOrEmpty(_startAxisDrawColumn)) + else if (TasView1.IsPaintDown && !string.IsNullOrEmpty(_startAxisDrawColumn)) { CurrentTasMovie.IsCountingRerecords = false; @@ -1172,7 +1172,7 @@ private void TasView_PointedCellChanged(object sender, InputRoll.CellEventArgs e if (MouseButtonHeld) { - TasView.MakeIndexVisible(TasView.CurrentCell.RowIndex.Value); // todo: limit scrolling speed + TasView1.MakeIndexVisible(TasView1.CurrentCell.RowIndex.Value); // todo: limit scrolling speed } SetTasViewRowCount(); diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 84aebefd175..420d50e19af 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -25,7 +25,7 @@ private void FileSubMenu_DropDownOpened(object sender, EventArgs e) saveSelectionToMacroToolStripMenuItem.Enabled = placeMacroAtSelectionToolStripMenuItem.Enabled = recentMacrosToolStripMenuItem.Enabled = - TasView.AnyRowsSelected; + TasView1.AnyRowsSelected; } private void NewFromSubMenu_DropDownOpened(object sender, EventArgs e) @@ -56,7 +56,7 @@ private void StartANewProjectFromSaveRamMenuItem_Click(object sender, EventArgs if (AskSaveChanges()) { var saveRam = SaveRamEmulator?.CloneSaveRam() ?? throw new Exception("No SaveRam"); - GoToFrame(TasView.AnyRowsSelected ? TasView.FirstSelectedRowIndex : 0); + GoToFrame(TasView1.AnyRowsSelected ? TasView1.FirstSelectedRowIndex : 0); var newProject = CurrentTasMovie.ConvertToSaveRamAnchoredMovie(saveRam); MainForm.PauseEmulator(); LoadMovie(newProject, true); @@ -150,14 +150,14 @@ private void SaveBk2BackupMenuItem_Click(object sender, EventArgs e) private void SaveSelectionToMacroMenuItem_Click(object sender, EventArgs e) { - if (!TasView.Focused && TasView.AnyRowsSelected) + if (!TasView1.Focused && TasView1.AnyRowsSelected) { return; } - if (TasView.SelectionEndIndex == CurrentTasMovie.InputLogLength) + if (TasView1.SelectionEndIndex == CurrentTasMovie.InputLogLength) { - TasView.SelectRow(CurrentTasMovie.InputLogLength, false); + TasView1.SelectRow(CurrentTasMovie.InputLogLength, false); } var file = SaveFileDialog( @@ -169,13 +169,13 @@ private void SaveSelectionToMacroMenuItem_Click(object sender, EventArgs e) if (file != null) { - var selectionStart = TasView.SelectionStartIndex!.Value; + var selectionStart = TasView1.SelectionStartIndex!.Value; new MovieZone( Emulator, Tools, MovieSession, start: selectionStart, - length: TasView.SelectionEndIndex!.Value - selectionStart + 1) + length: TasView1.SelectionEndIndex!.Value - selectionStart + 1) .Save(file.FullName); Config.RecentMacros.Add(file.FullName); @@ -184,7 +184,7 @@ private void SaveSelectionToMacroMenuItem_Click(object sender, EventArgs e) private void PlaceMacroAtSelectionMenuItem_Click(object sender, EventArgs e) { - if (!TasView.Focused && TasView.AnyRowsSelected) + if (!TasView1.Focused && TasView1.AnyRowsSelected) { return; } @@ -262,11 +262,11 @@ private void EditSubMenu_DropDownOpened(object sender, EventArgs e) TruncateMenuItem.Enabled = InsertFrameMenuItem.Enabled = InsertNumFramesMenuItem.Enabled = - TasView.AnyRowsSelected; + TasView1.AnyRowsSelected; ReselectClipboardMenuItem.Enabled = PasteMenuItem.Enabled = - PasteInsertMenuItem.Enabled = TasView.AnyRowsSelected + PasteInsertMenuItem.Enabled = TasView1.AnyRowsSelected && (Clipboard.GetDataObject()?.GetDataPresent(DataFormats.StringFormat) ?? false); ClearGreenzoneMenuItem.Enabled = @@ -330,57 +330,57 @@ private void ShowUndoHistoryMenuItem_Click(object sender, EventArgs e) private void DeselectMenuItem_Click(object sender, EventArgs e) { - TasView.DeselectAll(); - TasView.Refresh(); + TasView1.DeselectAll(); + TasView1.Refresh(); } /// TODO merge w/ Deselect? private void SelectAllMenuItem_Click(object sender, EventArgs e) { - TasView.SelectAll(); - TasView.Refresh(); + TasView1.SelectAll(); + TasView1.Refresh(); } private void SelectBetweenMarkersMenuItem_Click(object sender, EventArgs e) { - if (TasView.Focused && TasView.AnyRowsSelected) + if (TasView1.Focused && TasView1.AnyRowsSelected) { - var selectionEnd = TasView.SelectionEndIndex ?? 0; + var selectionEnd = TasView1.SelectionEndIndex ?? 0; var prevMarker = CurrentTasMovie.Markers.PreviousOrCurrent(selectionEnd); var nextMarker = CurrentTasMovie.Markers.Next(selectionEnd); int prev = prevMarker?.Frame ?? 0; int next = nextMarker?.Frame ?? CurrentTasMovie.InputLogLength; - TasView.DeselectAll(); + TasView1.DeselectAll(); for (int i = prev; i < next; i++) { - TasView.SelectRow(i, true); + TasView1.SelectRow(i, true); } SetSplicer(); - TasView.Refresh(); + TasView1.Refresh(); } } private void ReselectClipboardMenuItem_Click(object sender, EventArgs e) { - TasView.DeselectAll(); + TasView1.DeselectAll(); foreach (var item in _tasClipboard) { - TasView.SelectRow(item.Frame, true); + TasView1.SelectRow(item.Frame, true); } SetSplicer(); - TasView.Refresh(); + TasView1.Refresh(); } private void CopyMenuItem_Click(object sender, EventArgs e) { - if (TasView.Focused && TasView.AnyRowsSelected) + if (TasView1.Focused && TasView1.AnyRowsSelected) { _tasClipboard.Clear(); - var list = TasView.SelectedRows.ToArray(); + var list = TasView1.SelectedRows.ToArray(); var sb = new StringBuilder(); foreach (var index in list) @@ -403,7 +403,7 @@ private void CopyMenuItem_Click(object sender, EventArgs e) private void PasteMenuItem_Click(object sender, EventArgs e) { - if (TasView.Focused && TasView.AnyRowsSelected) + if (TasView1.Focused && TasView1.AnyRowsSelected) { // TODO: if highlighting 2 rows and pasting 3, only paste 2 of them // FCEUX Taseditor doesn't do this, but I think it is the expected behavior in editor programs @@ -432,7 +432,7 @@ private void PasteMenuItem_Click(object sender, EventArgs e) _tasClipboard.Add(new TasClipboardEntry(i, line)); } - var rollbackFrame = CurrentTasMovie.CopyOverInput(TasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState)); + var rollbackFrame = CurrentTasMovie.CopyOverInput(TasView1.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState)); if (rollbackFrame > 0) { GoToLastEmulatedFrameIfNecessary(rollbackFrame); @@ -448,7 +448,7 @@ private void PasteMenuItem_Click(object sender, EventArgs e) private void PasteInsertMenuItem_Click(object sender, EventArgs e) { - if (TasView.Focused && TasView.AnyRowsSelected) + if (TasView1.Focused && TasView1.AnyRowsSelected) { // copy paste from PasteMenuItem_Click! IDataObject data = Clipboard.GetDataObject(); @@ -474,7 +474,7 @@ private void PasteInsertMenuItem_Click(object sender, EventArgs e) _tasClipboard.Add(new TasClipboardEntry(i, line)); } - var selectionStart = TasView.SelectionStartIndex; + var selectionStart = TasView1.SelectionStartIndex; var needsToRollback = selectionStart < Emulator.Frame; CurrentTasMovie.InsertInput(selectionStart ?? 0, _tasClipboard.Select(static x => x.ControllerState)); if (needsToRollback) @@ -492,14 +492,14 @@ private void PasteInsertMenuItem_Click(object sender, EventArgs e) private void CutMenuItem_Click(object sender, EventArgs e) { - if (TasView.Focused && TasView.AnyRowsSelected) + if (TasView1.Focused && TasView1.AnyRowsSelected) { - var selectionStart = TasView.SelectionStartIndex; + var selectionStart = TasView1.SelectionStartIndex; var needsToRollback = selectionStart < Emulator.Frame; var rollBackFrame = selectionStart ?? 0; _tasClipboard.Clear(); - var list = TasView.SelectedRows.ToArray(); + var list = TasView1.SelectedRows.ToArray(); var sb = new StringBuilder(); foreach (var index in list) // copy of CopyMenuItem_Click() @@ -530,14 +530,16 @@ private void CutMenuItem_Click(object sender, EventArgs e) private void ClearFramesMenuItem_Click(object sender, EventArgs e) { - if (TasView.Focused && TasView.AnyRowsSelected) + //will have to get the current tasview + + if (TasView1.Focused && TasView1.AnyRowsSelected) { var firstWithInput = FirstNonEmptySelectedFrame; bool needsToRollback = firstWithInput.HasValue && firstWithInput < Emulator.Frame; - var rollBackFrame = TasView.SelectionStartIndex ?? 0; + var rollBackFrame = TasView1.SelectionStartIndex ?? 0; - CurrentTasMovie.ChangeLog.BeginNewBatch($"Clear frames {TasView.SelectionStartIndex}-{TasView.SelectionEndIndex}"); - foreach (int frame in TasView.SelectedRows) + CurrentTasMovie.ChangeLog.BeginNewBatch($"Clear frames {TasView1.SelectionStartIndex}-{TasView1.SelectionEndIndex}"); + foreach (int frame in TasView1.SelectedRows) { CurrentTasMovie.ClearFrame(frame); } @@ -556,9 +558,9 @@ private void ClearFramesMenuItem_Click(object sender, EventArgs e) private void DeleteFramesMenuItem_Click(object sender, EventArgs e) { - if (TasView.Focused && TasView.AnyRowsSelected) + if (TasView1.Focused && TasView1.AnyRowsSelected) { - var selectionStart = TasView.SelectionStartIndex; + var selectionStart = TasView1.SelectionStartIndex; var needsToRollback = selectionStart < Emulator.Frame; var rollBackFrame = selectionStart ?? 0; if (rollBackFrame >= CurrentTasMovie.InputLogLength) @@ -568,7 +570,7 @@ private void DeleteFramesMenuItem_Click(object sender, EventArgs e) return; } - CurrentTasMovie.RemoveFrames(TasView.SelectedRows.ToArray()); + CurrentTasMovie.RemoveFrames(TasView1.SelectedRows.ToArray()); SetTasViewRowCount(); SetSplicer(); @@ -600,11 +602,11 @@ private void CloneFramesXTimes(int timesToClone) { for (int i = 0; i < timesToClone; i++) { - if (TasView.Focused && TasView.AnyRowsSelected) + if (TasView1.Focused && TasView1.AnyRowsSelected) { - var framesToInsert = TasView.SelectedRows; - var insertionFrame = Math.Min((TasView.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); - var needsToRollback = TasView.SelectionStartIndex < Emulator.Frame; + var framesToInsert = TasView1.SelectedRows; + var insertionFrame = Math.Min((TasView1.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); + var needsToRollback = TasView1.SelectionStartIndex < Emulator.Frame; var inputLog = framesToInsert .Select(frame => CurrentTasMovie.GetInputLogEntry(frame)) @@ -625,9 +627,9 @@ private void CloneFramesXTimes(int timesToClone) private void InsertFrameMenuItem_Click(object sender, EventArgs e) { - if (TasView.Focused && TasView.AnyRowsSelected) + if (TasView1.Focused && TasView1.AnyRowsSelected) { - var selectionStart = TasView.SelectionStartIndex; + var selectionStart = TasView1.SelectionStartIndex; var insertionFrame = selectionStart ?? 0; var needsToRollback = selectionStart < Emulator.Frame; @@ -645,9 +647,9 @@ private void InsertFrameMenuItem_Click(object sender, EventArgs e) private void InsertNumFramesMenuItem_Click(object sender, EventArgs e) { - if (TasView.Focused && TasView.AnyRowsSelected) + if (TasView1.Focused && TasView1.AnyRowsSelected) { - var insertionFrame = TasView.SelectionStartIndex ?? 0; + var insertionFrame = TasView1.SelectionStartIndex ?? 0; using var framesPrompt = new FramesPrompt(); if (framesPrompt.ShowDialogOnScreen().IsOk()) { @@ -658,10 +660,10 @@ private void InsertNumFramesMenuItem_Click(object sender, EventArgs e) private void TruncateMenuItem_Click(object sender, EventArgs e) { - if (TasView.Focused && TasView.AnyRowsSelected) + if (TasView1.Focused && TasView1.AnyRowsSelected) { - var rollbackFrame = TasView.SelectionEndIndex ?? 0; - var needsToRollback = TasView.SelectionStartIndex < Emulator.Frame; + var rollbackFrame = TasView1.SelectionEndIndex ?? 0; + var needsToRollback = TasView1.SelectionStartIndex < Emulator.Frame; CurrentTasMovie.Truncate(rollbackFrame); MarkerControlMPR.MarkerInputRoll.TruncateSelection(CurrentTasMovie.Markers.Count - 1); @@ -677,7 +679,7 @@ private void TruncateMenuItem_Click(object sender, EventArgs e) private void SetMarkersMenuItem_Click(object sender, EventArgs e) { - var selectedRows = TasView.SelectedRows.ToList(); + var selectedRows = TasView1.SelectedRows.ToList(); if (selectedRows.Count > 50) { var result = DialogController.ShowMessageBox2("Are you sure you want to add more than 50 markers?", "Add markers", EMsgBoxIcon.Question, useOKCancel: true); @@ -695,12 +697,12 @@ private void SetMarkersMenuItem_Click(object sender, EventArgs e) private void SetMarkerWithTextMenuItem_Click(object sender, EventArgs e) { - MarkerControlMPR.AddMarker(TasView.AnyRowsSelected ? TasView.FirstSelectedRowIndex : 0, true); + MarkerControlMPR.AddMarker(TasView1.AnyRowsSelected ? TasView1.FirstSelectedRowIndex : 0, true); } private void RemoveMarkersMenuItem_Click(object sender, EventArgs e) { - CurrentTasMovie.Markers.RemoveAll(m => TasView.IsRowSelected(m.Frame)); + CurrentTasMovie.Markers.RemoveAll(m => TasView1.IsRowSelected(m.Frame)); MarkerControlMPR.UpdateMarkerCount(); RefreshDialog(); } @@ -914,7 +916,7 @@ private void HeaderMenuItem_Click(object sender, EventArgs e) using MovieHeaderEditor form = new(CurrentTasMovie, Config) { Owner = Owner, - Location = this.ChildPointToScreen(TasView) + Location = this.ChildPointToScreen(TasView1) }; form.ShowDialogOnScreen(); } @@ -928,7 +930,7 @@ private void StateHistorySettingsMenuItem_Click(object sender, EventArgs e) false) { Owner = Owner, - Location = this.ChildPointToScreen(TasView) + Location = this.ChildPointToScreen(TasView1) }; form.ShowDialogOnScreen(); } @@ -939,7 +941,7 @@ private void CommentsMenuItem_Click(object sender, EventArgs e) { Owner = Owner, StartPosition = FormStartPosition.Manual, - Location = this.ChildPointToScreen(TasView) + Location = this.ChildPointToScreen(TasView1) }; form.ShowDialogOnScreen(); } @@ -954,7 +956,7 @@ private void SubtitlesMenuItem_Click(object sender, EventArgs e) { Owner = Owner, StartPosition = FormStartPosition.Manual, - Location = this.ChildPointToScreen(TasView) + Location = this.ChildPointToScreen(TasView1) }; form.ShowDialogOnScreen(); } @@ -968,23 +970,23 @@ private void DefaultStateSettingsMenuItem_Click(object sender, EventArgs e) true) { Owner = Owner, - Location = this.ChildPointToScreen(TasView) + Location = this.ChildPointToScreen(TasView1) }; form.ShowDialogOnScreen(); } private void SettingsSubMenu_DropDownOpened(object sender, EventArgs e) { - RotateMenuItem.ShortcutKeyDisplayString = TasView.RotateHotkeyStr; + RotateMenuItem.ShortcutKeyDisplayString = TasView1.RotateHotkeyStr; } private void HideLagFramesSubMenu_DropDownOpened(object sender, EventArgs e) { - HideLagFrames0.Checked = TasView.LagFramesToHide == 0; - HideLagFrames1.Checked = TasView.LagFramesToHide == 1; - HideLagFrames2.Checked = TasView.LagFramesToHide == 2; - HideLagFrames3.Checked = TasView.LagFramesToHide == 3; - hideWasLagFramesToolStripMenuItem.Checked = TasView.HideWasLagFrames; + HideLagFrames0.Checked = TasView1.LagFramesToHide == 0; + HideLagFrames1.Checked = TasView1.LagFramesToHide == 1; + HideLagFrames2.Checked = TasView1.LagFramesToHide == 2; + HideLagFrames3.Checked = TasView1.LagFramesToHide == 3; + hideWasLagFramesToolStripMenuItem.Checked = TasView1.HideWasLagFrames; } private void IconsMenuItem_DropDownOpened(object sender, EventArgs e) @@ -1002,15 +1004,15 @@ private void FollowCursorMenuItem_DropDownOpened(object sender, EventArgs e) scrollToTopToolStripMenuItem.Checked = false; scrollToBottomToolStripMenuItem.Checked = false; scrollToCenterToolStripMenuItem.Checked = false; - if (TasView.ScrollMethod == "near") + if (TasView1.ScrollMethod == "near") { scrollToViewToolStripMenuItem.Checked = true; } - else if (TasView.ScrollMethod == "top") + else if (TasView1.ScrollMethod == "top") { scrollToTopToolStripMenuItem.Checked = true; } - else if (TasView.ScrollMethod == "bottom") + else if (TasView1.ScrollMethod == "bottom") { scrollToBottomToolStripMenuItem.Checked = true; } @@ -1022,43 +1024,43 @@ private void FollowCursorMenuItem_DropDownOpened(object sender, EventArgs e) private void RotateMenuItem_Click(object sender, EventArgs e) { - TasView.HorizontalOrientation = !TasView.HorizontalOrientation; + TasView1.HorizontalOrientation = !TasView1.HorizontalOrientation; CurrentTasMovie.FlagChanges(); } private void HideLagFramesX_Click(object sender, EventArgs e) { - TasView.LagFramesToHide = (int)((ToolStripMenuItem)sender).Tag; + TasView1.LagFramesToHide = (int)((ToolStripMenuItem)sender).Tag; MaybeFollowCursor(); RefreshDialog(); } private void HideWasLagFramesMenuItem_Click(object sender, EventArgs e) - => TasView.HideWasLagFrames = !TasView.HideWasLagFrames; + => TasView1.HideWasLagFrames = !TasView1.HideWasLagFrames; private void AlwaysScrollMenuItem_Click(object sender, EventArgs e) { - TasView.AlwaysScroll = Settings.FollowCursorAlwaysScroll = alwaysScrollToolStripMenuItem.Checked; + TasView1.AlwaysScroll = Settings.FollowCursorAlwaysScroll = alwaysScrollToolStripMenuItem.Checked; } private void ScrollToViewMenuItem_Click(object sender, EventArgs e) { - TasView.ScrollMethod = Settings.FollowCursorScrollMethod = "near"; + TasView1.ScrollMethod = Settings.FollowCursorScrollMethod = "near"; } private void ScrollToTopMenuItem_Click(object sender, EventArgs e) { - TasView.ScrollMethod = Settings.FollowCursorScrollMethod = "top"; + TasView1.ScrollMethod = Settings.FollowCursorScrollMethod = "top"; } private void ScrollToBottomMenuItem_Click(object sender, EventArgs e) { - TasView.ScrollMethod = Settings.FollowCursorScrollMethod = "bottom"; + TasView1.ScrollMethod = Settings.FollowCursorScrollMethod = "bottom"; } private void ScrollToCenterMenuItem_Click(object sender, EventArgs e) { - TasView.ScrollMethod = Settings.FollowCursorScrollMethod = "center"; + TasView1.ScrollMethod = Settings.FollowCursorScrollMethod = "center"; } private void DenoteStatesWithIconsToolStripMenuItem_Click(object sender, EventArgs e) @@ -1091,7 +1093,7 @@ private void ColorSettingsMenuItem_Click(object sender, EventArgs e) { Owner = Owner, StartPosition = FormStartPosition.Manual, - Location = this.ChildPointToScreen(TasView) + Location = this.ChildPointToScreen(TasView1) }; form.ShowDialogOnScreen(); } @@ -1102,18 +1104,18 @@ private void WheelScrollSpeedMenuItem_Click(object sender, EventArgs e) { TextInputType = InputPrompt.InputType.Unsigned, Message = "Frames per tick:", - InitialValue = TasView.ScrollSpeed.ToString() + InitialValue = TasView1.ScrollSpeed.ToString() }; if (!this.ShowDialogWithTempMute(inputPrompt).IsOk()) return; - TasView.ScrollSpeed = int.Parse(inputPrompt.PromptText); - Settings.ScrollSpeed = TasView.ScrollSpeed; + TasView1.ScrollSpeed = int.Parse(inputPrompt.PromptText); + Settings.ScrollSpeed = TasView1.ScrollSpeed; } private void SetUpToolStripColumns() { ColumnsSubMenu.DropDownItems.Clear(); - var columns = TasView.AllColumns + var columns = TasView1.AllColumns .Where(static c => !string.IsNullOrWhiteSpace(c.Text) && c.Name is not "FrameColumn") .ToList(); @@ -1151,10 +1153,10 @@ private void SetUpToolStripColumns() menuItem.CheckedChanged += (o, ev) => { ToolStripMenuItem sender = (ToolStripMenuItem)o; - TasView.AllColumns.Find(c => c.Name == (string)sender.Tag).Visible = sender.Checked; - TasView.AllColumns.ColumnsChanged(); + TasView1.AllColumns.Find(c => c.Name == (string)sender.Tag).Visible = sender.Checked; + TasView1.AllColumns.ColumnsChanged(); CurrentTasMovie.FlagChanges(); - TasView.Refresh(); + TasView1.Refresh(); ColumnsSubMenu.ShowDropDown(); ((ToolStripMenuItem)sender.OwnerItem).ShowDropDown(); }; @@ -1226,8 +1228,8 @@ private void SetUpToolStripColumns() } CurrentTasMovie.FlagChanges(); - TasView.AllColumns.ColumnsChanged(); - TasView.Refresh(); + TasView1.AllColumns.ColumnsChanged(); + TasView1.Refresh(); }; ColumnsSubMenu.DropDownItems.Add(item); @@ -1255,8 +1257,8 @@ private void SetUpToolStripColumns() dummyObject.Visible = item.Checked; CurrentTasMovie.FlagChanges(); - TasView.AllColumns.ColumnsChanged(); - TasView.Refresh(); + TasView1.AllColumns.ColumnsChanged(); + TasView1.Refresh(); }; ColumnsSubMenu.DropDownItems.Add(item); @@ -1270,7 +1272,7 @@ private void RestoreDefaults() { SetUpColumns(); SetUpToolStripColumns(); - TasView.Refresh(); + TasView1.Refresh(); CurrentTasMovie.FlagChanges(); MainVertialSplit.SplitterDistance = _defaultMainSplitDistance; @@ -1290,17 +1292,17 @@ private void RightClickMenu_Opened(object sender, EventArgs e) InsertFrameContextMenuItem.Enabled = InsertNumFramesContextMenuItem.Enabled = TruncateContextMenuItem.Enabled = - TasView.AnyRowsSelected; + TasView1.AnyRowsSelected; pasteToolStripMenuItem.Enabled = pasteInsertToolStripMenuItem.Enabled = (Clipboard.GetDataObject()?.GetDataPresent(DataFormats.StringFormat) ?? false) - && TasView.AnyRowsSelected; + && TasView1.AnyRowsSelected; - var selectionIsSingleRow = TasView.SelectedRows.CountIsExactly(1); + var selectionIsSingleRow = TasView1.SelectedRows.CountIsExactly(1); StartNewProjectFromNowMenuItem.Visible = selectionIsSingleRow - && TasView.IsRowSelected(Emulator.Frame) + && TasView1.IsRowSelected(Emulator.Frame) && !CurrentTasMovie.StartsFromSaveRam; StartANewProjectFromSaveRamMenuItem.Visible = @@ -1309,9 +1311,9 @@ private void RightClickMenu_Opened(object sender, EventArgs e) && !CurrentTasMovie.StartsFromSavestate; StartFromNowSeparator.Visible = StartNewProjectFromNowMenuItem.Visible || StartANewProjectFromSaveRamMenuItem.Visible; - RemoveMarkersContextMenuItem.Enabled = CurrentTasMovie.Markers.Any(m => TasView.IsRowSelected(m.Frame)); // Disable the option to remove markers if no markers are selected (FCEUX does this). + RemoveMarkersContextMenuItem.Enabled = CurrentTasMovie.Markers.Any(m => TasView1.IsRowSelected(m.Frame)); // Disable the option to remove markers if no markers are selected (FCEUX does this). CancelSeekContextMenuItem.Enabled = MainForm.PauseOnFrame.HasValue; - BranchContextMenuItem.Visible = TasView.CurrentCell?.RowIndex == Emulator.Frame; + BranchContextMenuItem.Visible = TasView1.CurrentCell?.RowIndex == Emulator.Frame; SelectBetweenMarkersContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Sel. bet. Markers"]; ClearContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clear Frames"]; @@ -1325,7 +1327,7 @@ private void RightClickMenu_Opened(object sender, EventArgs e) private void CancelSeekContextMenuItem_Click(object sender, EventArgs e) { MainForm.PauseOnFrame = null; - TasView.Refresh(); + TasView1.Refresh(); } private void BranchContextMenuItem_Click(object sender, EventArgs e) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Navigation.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Navigation.cs index ea7feda4d80..60b21ad09a7 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Navigation.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Navigation.cs @@ -97,12 +97,12 @@ public void GoToNextMarker() /// public void SetVisibleFrame(int? frame = null) { - if (TasView.AlwaysScroll && _leftButtonHeld) + if (TasView1.AlwaysScroll && _leftButtonHeld) { return; } - TasView.ScrollToIndex(frame ?? Emulator.Frame); + TasView1.ScrollToIndex(frame ?? Emulator.Frame); } private void MaybeFollowCursor() diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 993e771af7a..851bc5f01df 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -141,40 +141,31 @@ public TAStudioMPR() - - foreach (InputRoll tasView in TasViews) - { - - - - - } - TasView.QueryItemText += TasView_QueryItemText; - TasView.QueryItemBkColor += TasView_QueryItemBkColor; - TasView.QueryRowBkColor += TasView_QueryRowBkColor; - TasView.QueryItemIcon += TasView_QueryItemIcon; - TasView.QueryFrameLag += TasView_QueryFrameLag; - TasView.PointedCellChanged += TasView_PointedCellChanged; - LastPositionFrame = -1; - - BookMarkControlMPR.LoadedCallback = BranchLoaded; - BookMarkControlMPR.SavedCallback = BranchSaved; - BookMarkControlMPR.RemovedCallback = BranchRemoved; - TasView.MouseLeave += TAStudio_MouseLeave; - TasView.CellHovered += (_, e) => + TasView1.QueryItemText += TasView_QueryItemText; + TasView1.QueryItemBkColor += TasView_QueryItemBkColor; + TasView1.QueryRowBkColor += TasView_QueryRowBkColor; + TasView1.QueryItemIcon += TasView_QueryItemIcon; + TasView1.QueryFrameLag += TasView_QueryFrameLag; + TasView1.PointedCellChanged += TasView_PointedCellChanged; + TasView1.MouseLeave += TAStudio_MouseLeave; + TasView1.CellHovered += (_, e) => { if (e.NewCell.RowIndex is null) { - toolTip1.Show(e.NewCell.Column!.Name, TasView, PointToClient(Cursor.Position)); + toolTip1.Show(e.NewCell.Column!.Name, TasView1, PointToClient(Cursor.Position)); } }; + TasViews.Add(TasView1); + + //foreach (InputRoll tasView in TasViews) + //{ InputRoll TasView2 = new InputRoll(); TasView2.Name = "TasView2"; TasView2.Parent = MainVertialSplit.Panel1; TasView2.Width = 300; TasView2.Height = 550; - TasView2.Location = new System.Drawing.Point(TasView.Location.X + TasView.Width + 10, 10); + TasView2.Location = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 10); TasView2.QueryItemText += TasView_QueryItemText; TasView2.QueryItemBkColor += TasView_QueryItemBkColor; TasView2.QueryRowBkColor += TasView_QueryRowBkColor; @@ -182,6 +173,23 @@ public TAStudioMPR() TasView2.QueryFrameLag += TasView_QueryFrameLag; TasView2.PointedCellChanged += TasView_PointedCellChanged; TasView2.MouseLeave += TAStudio_MouseLeave; + + + TasView2.CellDropped += TasView_CellDropped; + TasView2.ColumnClick += TasView_ColumnClick; + TasView2.ColumnReordered += TasView_ColumnReordered; + TasView2.ColumnRightClick += TasView_ColumnRightClick; + TasView2.KeyDown += TasView_KeyDown; + TasView2.MouseDoubleClick += TasView_MouseDoubleClick; + TasView2.MouseDown += TasView_MouseDown; + TasView2.MouseEnter += TasView_MouseEnter; + TasView2.MouseMove += TasView_MouseMove; + TasView2.MouseUp += TasView_MouseUp; + TasView2.RightMouseScrolled += TasView2_RightMouseScrolled; + TasView2.SelectedIndexChanged += TasView_SelectedIndexChanged; + + + TasView2.CellHovered += (_, e) => { if (e.NewCell.RowIndex is null) @@ -189,50 +197,66 @@ public TAStudioMPR() toolTip1.Show(e.NewCell.Column!.Name, TasView2, PointToClient(Cursor.Position)); } }; + TasViews.Add(TasView2); + //} + + + LastPositionFrame = -1; + + BookMarkControlMPR.LoadedCallback = BranchLoaded; + BookMarkControlMPR.SavedCallback = BranchSaved; + BookMarkControlMPR.RemovedCallback = BranchRemoved; + + } + private void TasView2_RightMouseScrolled(object sender, MouseEventArgs e) => throw new NotImplementedException(); + private void Tastudio_Load(object sender, EventArgs e) { - if (!Engage()) + foreach (InputRoll tasView in TasViews) { - Close(); - return; - } + if (!Engage()) + { + Close(); + return; + } - if (TasView.Rotatable) - { - RightClickMenu.Items.AddRange(TasView.GenerateContextMenuItems() - .ToArray()); + if (tasView.Rotatable) + { + RightClickMenu.Items.AddRange(tasView.GenerateContextMenuItems() + .ToArray()); - RightClickMenu.Items - .OfType() - .First(t => t.Name == "RotateMenuItem") - .Click += (o, ov) => { CurrentTasMovie.FlagChanges(); }; - } + RightClickMenu.Items + .OfType() + .First(t => t.Name == "RotateMenuItem") + .Click += (o, ov) => { CurrentTasMovie.FlagChanges(); }; + } - TasView.ScrollSpeed = Settings.ScrollSpeed; - TasView.AlwaysScroll = Settings.FollowCursorAlwaysScroll; - TasView.ScrollMethod = Settings.FollowCursorScrollMethod; + tasView.ScrollSpeed = Settings.ScrollSpeed; + tasView.AlwaysScroll = Settings.FollowCursorAlwaysScroll; + tasView.ScrollMethod = Settings.FollowCursorScrollMethod; - _autosaveTimer = new Timer(components); - _autosaveTimer.Tick += AutosaveTimerEventProcessor; - if (Settings.AutosaveInterval > 0) - { - _autosaveTimer.Interval = (int)Settings.AutosaveInterval; - _autosaveTimer.Start(); - } + _autosaveTimer = new Timer(components); + _autosaveTimer.Tick += AutosaveTimerEventProcessor; + if (Settings.AutosaveInterval > 0) + { + _autosaveTimer.Interval = (int) Settings.AutosaveInterval; + _autosaveTimer.Start(); + } - MainVertialSplit.SetDistanceOrDefault( - Settings.MainVerticalSplitDistance, - _defaultMainSplitDistance); + MainVertialSplit.SetDistanceOrDefault( + Settings.MainVerticalSplitDistance, + _defaultMainSplitDistance); - BranchesMarkersSplit.SetDistanceOrDefault( - Settings.BranchMarkerSplitDistance, - _defaultBranchMarkerSplitDistance); + BranchesMarkersSplit.SetDistanceOrDefault( + Settings.BranchMarkerSplitDistance, + _defaultBranchMarkerSplitDistance); - TasView.Font = TasViewFont; - RefreshDialog(); - _initialized = true; + tasView.Font = TasViewFont; + RefreshDialog(); + _initialized = true; + } } private bool LoadMostRecentOrStartNew() @@ -361,77 +385,79 @@ private void AutosaveTimerEventProcessor(object sender, EventArgs e) private void SetUpColumns() { - TasView.AllColumns.Clear(); - TasView.AllColumns.Add(new(name: CursorColumnName, widthUnscaled: 18, type: ColumnType.Boolean, text: string.Empty)); - TasView.AllColumns.Add(new(name: FrameColumnName, widthUnscaled: 60, text: "Frame#") - { - Rotatable = true, - }); - - foreach ((string name, string mnemonic0, int maxLength) in MnemonicMap()) - { - var mnemonic = Emulator.SystemId is VSystemID.Raw.N64 && N64CButtonSuffixes.Any(name.EndsWithOrdinal) - ? $"c{mnemonic0.ToUpperInvariant()}" // prepend 'c' to differentiate from L/R buttons -- this only affects the column headers - : mnemonic0; - - var type = ControllerType.Axes.ContainsKey(name) ? ColumnType.Axis : ColumnType.Boolean; - - TasView.AllColumns.Add(new( - name: name, - widthUnscaled: (maxLength * 6) + 14, // magic numbers reused in EditBranchTextPopUp() --feos // not since eb63fa5a9 (before 2.3.3) --yoshi - type: type, - text: mnemonic)); - } - - var columnsToHide = TasView.AllColumns - .Where(c => - // todo: make a proper user editable list? - c.Name == "Power" - || c.Name == "Reset" - || c.Name == "Light Sensor" - || c.Name == "Disc Select" - || c.Name == "Disk Index" - || c.Name == "Next Drive" - || c.Name == "Next Slot" - || c.Name == "Insert Disk" - || c.Name == "Eject Disk" - || c.Name.StartsWithOrdinal("Tilt") - || c.Name.StartsWithOrdinal("Key ") - || c.Name.StartsWithOrdinal("Open") - || c.Name.StartsWithOrdinal("Close") - || c.Name.EndsWithOrdinal("Tape") - || c.Name.EndsWithOrdinal("Disk") - || c.Name.EndsWithOrdinal("Block") - || c.Name.EndsWithOrdinal("Status")); - - if (Emulator.SystemId is VSystemID.Raw.N64) - { - var fakeAnalogControls = TasView.AllColumns - .Where(c => - c.Name.EndsWithOrdinal("A Up") - || c.Name.EndsWithOrdinal("A Down") - || c.Name.EndsWithOrdinal("A Left") - || c.Name.EndsWithOrdinal("A Right")); + foreach (InputRoll tasView in TasViews) + { + tasView.AllColumns.Clear(); + tasView.AllColumns.Add(new(name: CursorColumnName, widthUnscaled: 18, type: ColumnType.Boolean, text: string.Empty)); + tasView.AllColumns.Add(new(name: FrameColumnName, widthUnscaled: 60, text: "Frame#") + { + Rotatable = true, + }); - columnsToHide = columnsToHide.Concat(fakeAnalogControls); - } + foreach ((string name, string mnemonic0, int maxLength) in MnemonicMap()) + { + var mnemonic = Emulator.SystemId is VSystemID.Raw.N64 && N64CButtonSuffixes.Any(name.EndsWithOrdinal) + ? $"c{mnemonic0.ToUpperInvariant()}" // prepend 'c' to differentiate from L/R buttons -- this only affects the column headers + : mnemonic0; - foreach (var column in columnsToHide) - { - column.Visible = false; - } + var type = ControllerType.Axes.ContainsKey(name) ? ColumnType.Axis : ColumnType.Boolean; - foreach (var column in TasView.VisibleColumns) - { - if (InputManager.StickyHoldController.IsSticky(column.Name) || InputManager.StickyAutofireController.IsSticky(column.Name)) + tasView.AllColumns.Add(new( + name: name, + widthUnscaled: (maxLength * 6) + 14, // magic numbers reused in EditBranchTextPopUp() --feos // not since eb63fa5a9 (before 2.3.3) --yoshi + type: type, + text: mnemonic)); + } + + var columnsToHide = tasView.AllColumns + .Where(c => + // todo: make a proper user editable list? + c.Name == "Power" + || c.Name == "Reset" + || c.Name == "Light Sensor" + || c.Name == "Disc Select" + || c.Name == "Disk Index" + || c.Name == "Next Drive" + || c.Name == "Next Slot" + || c.Name == "Insert Disk" + || c.Name == "Eject Disk" + || c.Name.StartsWithOrdinal("Tilt") + || c.Name.StartsWithOrdinal("Key ") + || c.Name.StartsWithOrdinal("Open") + || c.Name.StartsWithOrdinal("Close") + || c.Name.EndsWithOrdinal("Tape") + || c.Name.EndsWithOrdinal("Disk") + || c.Name.EndsWithOrdinal("Block") + || c.Name.EndsWithOrdinal("Status")); + + if (Emulator.SystemId is VSystemID.Raw.N64) { - column.Emphasis = true; + var fakeAnalogControls = tasView.AllColumns + .Where(c => + c.Name.EndsWithOrdinal("A Up") + || c.Name.EndsWithOrdinal("A Down") + || c.Name.EndsWithOrdinal("A Left") + || c.Name.EndsWithOrdinal("A Right")); + + columnsToHide = columnsToHide.Concat(fakeAnalogControls); } - } - TasView.AllColumns.ColumnsChanged(); - } + foreach (var column in columnsToHide) + { + column.Visible = false; + } + + foreach (var column in tasView.VisibleColumns) + { + if (InputManager.StickyHoldController.IsSticky(column.Name) || InputManager.StickyAutofireController.IsSticky(column.Name)) + { + column.Emphasis = true; + } + } + tasView.AllColumns.ColumnsChanged(); + } + } private void SetupCustomPatterns() { // custom autofire patterns to allow configuring a unique pattern for each button or axis @@ -448,13 +474,14 @@ private void SetupCustomPatterns() { // autohold pattern with the maximum axis range as hold value (bit arbitrary) var axisSpec = ControllerType.Axes[ControllerType.Axes[i]]; - AxisPatterns[i] = new AutoPatternAxis([ axisSpec.Range.EndInclusive ]); + AxisPatterns[i] = new AutoPatternAxis([axisSpec.Range.EndInclusive]); } } + //check /// for Lua public void AddColumn(string name, string text, int widthUnscaled) - => TasView.AllColumns.Add(new(name: name, widthUnscaled: widthUnscaled, type: ColumnType.Text, text: text)); + => TasView1.AllColumns.Add(new(name: name, widthUnscaled: widthUnscaled, type: ColumnType.Text, text: text)); public void LoadBranchByIndex(int index) => BookMarkControlMPR.LoadBranchExternal(index); public void ClearFramesExternal() => ClearFramesMenuItem_Click(null, null); @@ -487,7 +514,7 @@ private int? FirstNonEmptySelectedFrame get { var empty = Bk2LogEntryGenerator.EmptyEntry(MovieSession.MovieController); - foreach (var row in TasView.SelectedRows) + foreach (var row in TasView1.SelectedRows) { if (CurrentTasMovie[row].LogEntry != empty) { @@ -532,7 +559,7 @@ private bool LoadMovie(ITasMovie tasMovie, bool startsFromSavestate = false, int } // clear all selections - TasView.DeselectAll(); + TasView1.DeselectAll(); BookMarkControlMPR.Restart(); MarkerControlMPR.Restart(); @@ -550,7 +577,7 @@ private bool StartNewTasMovie() if (Game.IsNullInstance()) throw new InvalidOperationException("how is TAStudio open with no game loaded? please report this including as much detail as possible"); var filename = DefaultTasProjName(); // TODO don't do this, take over any mainform actions that can crash without a filename - var tasMovie = (ITasMovie)MovieSession.Get(filename); + var tasMovie = (ITasMovie) MovieSession.Get(filename); tasMovie.Author = Config.DefaultAuthor; bool success = StartNewMovieWrapper(tasMovie, isNew: true); @@ -558,7 +585,7 @@ private bool StartNewTasMovie() if (success) { // clear all selections - TasView.DeselectAll(); + TasView1.DeselectAll(); BookMarkControlMPR.Restart(); MarkerControlMPR.Restart(); RefreshDialog(); @@ -571,7 +598,7 @@ private bool StartNewMovieWrapper(ITasMovie movie, bool isNew) { _initializing = true; - movie.InputRollSettingsForSave = () => TasView.UserSettingsSerialized(); + movie.InputRollSettingsForSave = () => TasView1.UserSettingsSerialized(); movie.BindMarkersToInput = Settings.BindMarkersToInput; movie.GreenzoneInvalidated = GreenzoneInvalidated; movie.ChangeLog.MaxSteps = Settings.MaxUndoSteps; @@ -590,7 +617,7 @@ private bool StartNewMovieWrapper(ITasMovie movie, bool isNew) UpdateWindowTitle(); if (CurrentTasMovie.InputRollSettings != null) { - TasView.LoadSettingsSerialized(CurrentTasMovie.InputRollSettings); + TasView1.LoadSettingsSerialized(CurrentTasMovie.InputRollSettings); } else { @@ -640,14 +667,14 @@ private bool LoadFileWithFallback(string path) private void DummyLoadMacro(string path) { - if (!TasView.AnyRowsSelected) + if (!TasView1.AnyRowsSelected) { return; } var loadZone = new MovieZone(path, MainForm, Emulator, MovieSession, Tools) { - Start = TasView.SelectionStartIndex!.Value, + Start = TasView1.SelectionStartIndex!.Value, }; loadZone.PlaceZone(CurrentTasMovie, Config); } @@ -793,13 +820,13 @@ protected override string WindowTitle protected override string WindowTitleStatic => "TAStudio"; - public IEnumerable GetSelection() => TasView.SelectedRows; + public IEnumerable GetSelection() => TasView1.SelectedRows; // Slow but guarantees the entire dialog refreshes private void FullRefresh() { SetTasViewRowCount(); - TasView.Refresh(); // An extra refresh potentially but we need to guarantee + TasView1.Refresh(); // An extra refresh potentially but we need to guarantee MarkerControlMPR.UpdateValues(); BookMarkControlMPR.UpdateValues(); @@ -836,7 +863,7 @@ public void RefreshDialog(bool refreshTasView = true, bool refreshBranches = tru public void RefreshForInputChange(int firstChangedFrame) { - if (TasView.IsPartiallyVisible(firstChangedFrame) || firstChangedFrame < TasView.FirstVisibleRow) + if (TasView1.IsPartiallyVisible(firstChangedFrame) || firstChangedFrame < TasView1.FirstVisibleRow) { RefreshDialog(); } @@ -844,7 +871,7 @@ public void RefreshForInputChange(int firstChangedFrame) private void SetTasViewRowCount() { - TasView.RowCount = CurrentTasMovie.InputLogLength + 1; + TasView1.RowCount = CurrentTasMovie.InputLogLength + 1; _lastRefresh = Emulator.Frame; } @@ -873,7 +900,7 @@ public void DoAutoRestore() /// Get a savestate prior to the previous frame so code following the call can frame advance and have a framebuffer. /// If frame is 0, return the initial state. /// - private KeyValuePair GetPriorStateForFramebuffer(int frame) + private KeyValuePair GetPriorStateForFramebuffer(int frame) { return CurrentTasMovie.TasStateManager.GetStateClosestToFrame(frame > 0 ? frame - 1 : 0); } @@ -971,7 +998,7 @@ public void TogglePause() private void SetSplicer() { // TODO: columns selected? - var selectedRowCount = TasView.SelectedRows.Count(); + var selectedRowCount = TasView1.SelectedRows.Count(); var temp = $"Selected: {selectedRowCount} {(selectedRowCount == 1 ? "frame" : "frames")}, States: {CurrentTasMovie.TasStateManager.Count}"; if (_tasClipboard.Any()) temp += $", Clipboard: {_tasClipboard.Count} {(_tasClipboard.Count == 1 ? "frame" : "frames")}"; SplicerStatusLabel.Text = temp; @@ -1006,7 +1033,7 @@ public void InsertNumFrames(int insertionFrame, int numberOfFrames) { if (insertionFrame <= CurrentTasMovie.InputLogLength) { - var needsToRollback = TasView.SelectionStartIndex < Emulator.Frame; + var needsToRollback = TasView1.SelectionStartIndex < Emulator.Frame; CurrentTasMovie.InsertEmptyFrame(insertionFrame, numberOfFrames); @@ -1047,7 +1074,7 @@ public void ClearFrames(int beginningFrame, int numberOfFrames) { if (beginningFrame < CurrentTasMovie.InputLogLength) { - var needsToRollback = TasView.SelectionStartIndex < Emulator.Frame; + var needsToRollback = TasView1.SelectionStartIndex < Emulator.Frame; int last = Math.Min(beginningFrame + numberOfFrames, CurrentTasMovie.InputLogLength); for (int i = beginningFrame; i < last; i++) { @@ -1103,13 +1130,13 @@ private void TAStudio_DragDrop(object sender, DragEventArgs e) // TODO: Maybe this should call Mainform's DragDrop method, // since that can file types that are not movies, // and it can process multiple files sequentially - var filePaths = (string[])e.Data.GetData(DataFormats.FileDrop); + var filePaths = (string[]) e.Data.GetData(DataFormats.FileDrop); LoadMovieFile(filePaths[0]); } private void TAStudio_MouseLeave(object sender, EventArgs e) { - toolTip1.SetToolTip(TasView, null); + toolTip1.SetToolTip(TasView1, null); DoTriggeredAutoRestoreIfNeeded(); } @@ -1136,7 +1163,7 @@ private bool AutoAdjustInput() { // remove all consecutive was-lag frames in batch like taseditor // current frame has no lag so they will all have to go anyway - var framesToRemove = new List{ Emulator.Frame - 1 }; + var framesToRemove = new List { Emulator.Frame - 1 }; for (int frame = Emulator.Frame; CurrentTasMovie[frame].WasLagged.HasValue; frame++) { if (CurrentTasMovie[frame].WasLagged.Value) @@ -1231,12 +1258,12 @@ private void SetFontMenuItem_Click(object sender, EventArgs e) using var fontDialog = new FontDialog { ShowColor = false, - Font = TasView.Font + Font = TasView1.Font }; if (fontDialog.ShowDialog() != DialogResult.Cancel) { - TasView.Font = TasViewFont = fontDialog.Font; - TasView.Refresh(); + TasView1.Font = TasViewFont = fontDialog.Font; + TasView1.Refresh(); } } @@ -1277,5 +1304,10 @@ private IMovieController ControllerFromMnemonicStr(string inputLogEntry) } } } + + private void TasView1_Enter(object sender, EventArgs e) + { + var a = TasView1.Focused; + } } } From f128e2bc51f1265d1173aa9606cac6af380078c9 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Wed, 5 Feb 2025 21:30:54 -0500 Subject: [PATCH 04/65] they scroll together when playing they scroll together when playing but tasview2 does not allow click inputs --- .../tools/TAStudioMPR/TAStudioMPR.cs | 38 +++++++++++++------ 1 file changed, 27 insertions(+), 11 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 851bc5f01df..86df35ca4c2 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -559,7 +559,12 @@ private bool LoadMovie(ITasMovie tasMovie, bool startsFromSavestate = false, int } // clear all selections - TasView1.DeselectAll(); + + foreach (InputRoll tasView in TasViews) + { + tasView.DeselectAll(); + } + BookMarkControlMPR.Restart(); MarkerControlMPR.Restart(); @@ -585,7 +590,11 @@ private bool StartNewTasMovie() if (success) { // clear all selections - TasView1.DeselectAll(); + //TasView1.DeselectAll(); + foreach (InputRoll tasView in TasViews) + { + tasView.DeselectAll(); + } BookMarkControlMPR.Restart(); MarkerControlMPR.Restart(); RefreshDialog(); @@ -871,7 +880,11 @@ public void RefreshForInputChange(int firstChangedFrame) private void SetTasViewRowCount() { - TasView1.RowCount = CurrentTasMovie.InputLogLength + 1; + foreach (InputRoll tasView in TasViews) + { + tasView.RowCount = CurrentTasMovie.InputLogLength + 1; + } + _lastRefresh = Emulator.Frame; } @@ -1255,15 +1268,18 @@ protected void DragEnterWrapper(object sender, DragEventArgs e) private void SetFontMenuItem_Click(object sender, EventArgs e) { - using var fontDialog = new FontDialog - { - ShowColor = false, - Font = TasView1.Font - }; - if (fontDialog.ShowDialog() != DialogResult.Cancel) + foreach (InputRoll tasView in TasViews) { - TasView1.Font = TasViewFont = fontDialog.Font; - TasView1.Refresh(); + using var fontDialog = new FontDialog + { + ShowColor = false, + Font = tasView.Font + }; + if (fontDialog.ShowDialog() != DialogResult.Cancel) + { + tasView.Font = TasViewFont = fontDialog.Font; + tasView.Refresh(); + } } } From 19e7ea16f1bc3dc8c8fb39314d5fbc0e3b341978 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Wed, 5 Feb 2025 23:19:27 -0500 Subject: [PATCH 05/65] Trying to only use current tasview --- .../tools/TAStudioMPR/TAStudioMPR.ListView.cs | 108 ++++++++++-------- 1 file changed, 63 insertions(+), 45 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs index b5dcb3afbb1..a0144a08595 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs @@ -170,7 +170,7 @@ private void TasView_QueryItemIcon(int index, RollColumn column, ref Bitmap bitm if (index == Emulator.Frame) { bitmap = index == MainForm.PauseOnFrame - ? TasView1.HorizontalOrientation ? ts_v_arrow_green_blue : ts_h_arrow_green_blue + ? TasView1.HorizontalOrientation ? ts_v_arrow_green_blue : ts_h_arrow_green_blue : TasView1.HorizontalOrientation ? ts_v_arrow_blue : ts_h_arrow_blue; } else if (index == LastPositionFrame) @@ -239,7 +239,8 @@ private void TasView_QueryItemBkColor(int index, RollColumn column, ref Color co if (_alternateRowColor.GetValueOrPut( columnName, - columnName1 => { + columnName1 => + { var playerNumber = ControllerDefinition.PlayerNumber(columnName1); return playerNumber % 2 is 0 && playerNumber is not 0; })) @@ -296,7 +297,7 @@ private void TasView_QueryRowBkColor(int index, ref Color color) /// with leading zeroes such that every frame in the movie will be printed with the same number of digits private string FrameToStringPadded(int index) - => index.ToString(_formatCache[(int)Math.Log10(Math.Max(CurrentTasMovie.InputLogLength, 1))]); + => index.ToString(_formatCache[(int) Math.Log10(Math.Max(CurrentTasMovie.InputLogLength, 1))]); private void TasView_QueryItemText(int index, RollColumn column, out string text, ref int offsetX, ref int offsetY) { @@ -367,18 +368,20 @@ private bool TasView_QueryFrameLag(int index, bool hideWasLag) private void TasView_ColumnClick(object sender, InputRoll.ColumnClickEventArgs e) { - if (TasView1.AnyRowsSelected) + var tasView = sender as InputRoll; + + if (tasView.AnyRowsSelected) { var columnName = e.Column!.Name; if (columnName == FrameColumnName) { - CurrentTasMovie.Markers.Add(TasView1.SelectionEndIndex!.Value, ""); + CurrentTasMovie.Markers.Add(tasView.SelectionEndIndex!.Value, ""); } else if (columnName != CursorColumnName) { - var frame = TasView1.AnyRowsSelected ? TasView1.FirstSelectedRowIndex : 0; - var buttonName = TasView1.CurrentCell.Column!.Name; + var frame = tasView.AnyRowsSelected ? tasView.FirstSelectedRowIndex : 0; + var buttonName = tasView.CurrentCell.Column!.Name; if (ControllerType.BoolButtons.Contains(buttonName)) { @@ -386,7 +389,7 @@ private void TasView_ColumnClick(object sender, InputRoll.ColumnClickEventArgs e { // nifty taseditor logic bool allPressed = true; - foreach (var index in TasView1.SelectedRows) + foreach (var index in tasView.SelectedRows) { if (index == CurrentTasMovie.FrameCount // last movie frame can't have input, but can be selected || !CurrentTasMovie.BoolIsPressed(index, buttonName)) @@ -395,12 +398,12 @@ private void TasView_ColumnClick(object sender, InputRoll.ColumnClickEventArgs e break; } } - CurrentTasMovie.SetBoolStates(frame, TasView1.SelectedRows.Count(), buttonName, !allPressed); + CurrentTasMovie.SetBoolStates(frame, tasView.SelectedRows.Count(), buttonName, !allPressed); } else { BoolPatterns[ControllerType.BoolButtons.IndexOf(buttonName)].Reset(); - foreach (var index in TasView1.SelectedRows) + foreach (var index in tasView.SelectedRows) { CurrentTasMovie.SetBoolState(index, buttonName, BoolPatterns[ControllerType.BoolButtons.IndexOf(buttonName)].GetNextValue()); } @@ -423,12 +426,13 @@ private void TasView_ColumnClick(object sender, InputRoll.ColumnClickEventArgs e private void TasView_ColumnRightClick(object sender, InputRoll.ColumnClickEventArgs e) { + var tasView = sender as InputRoll; var col = e.Column!; if (col.Name is FrameColumnName or CursorColumnName) return; col.Emphasis = !col.Emphasis; UpdateAutoFire(col.Name, col.Emphasis); - TasView1.Refresh(); + tasView.Refresh(); } private void UpdateAutoFire() @@ -499,12 +503,15 @@ private void TasView_MouseEnter(object sender, EventArgs e) { if (ContainsFocus) { - TasView1.Select(); + var tasView = sender as InputRoll; + tasView.Select(); } } private void TasView_MouseDown(object sender, MouseEventArgs e) { + var tasView = sender as InputRoll; + // Clicking with left while right is held or vice versa does weird stuff if (MouseButtonHeld) { @@ -512,8 +519,8 @@ private void TasView_MouseDown(object sender, MouseEventArgs e) } // only on mouse button down, check that the pointed to cell is the correct one (can be wrong due to scroll while playing) - TasView1._programmaticallyChangingRow = true; - TasView1.PointMouseToNewCell(); + tasView._programmaticallyChangingRow = true; + tasView.PointMouseToNewCell(); if (e.Button == MouseButtons.Middle) { @@ -531,7 +538,7 @@ private void TasView_MouseDown(object sender, MouseEventArgs e) return; } - if (TasView1.CurrentCell is not { RowIndex: int frame, Column: RollColumn targetCol }) return; + if (tasView.CurrentCell is not { RowIndex: int frame, Column: RollColumn targetCol }) return; var buttonName = targetCol.Name; WasRecording = CurrentTasMovie.IsRecording() || WasRecording; @@ -547,9 +554,9 @@ private void TasView_MouseDown(object sender, MouseEventArgs e) if (ModifierKeys == Keys.Control || ModifierKeys == Keys.Shift) { _extraAxisRows.Clear(); - _extraAxisRows.AddRange(TasView1.SelectedRows); + _extraAxisRows.AddRange(tasView.SelectedRows); _startSelectionDrag = true; - _selectionDragState = TasView1.IsRowSelected(frame); + _selectionDragState = tasView.IsRowSelected(frame); return; } if (_axisEditColumn != buttonName @@ -570,7 +577,7 @@ private void TasView_MouseDown(object sender, MouseEventArgs e) _axisEditYPos = e.Y; _axisPaintState = CurrentTasMovie.GetAxisState(frame, buttonName); - + _triggerAutoRestore = true; TastudioPlayMode(true); return; @@ -587,12 +594,12 @@ private void TasView_MouseDown(object sender, MouseEventArgs e) if (ModifierKeys == Keys.Alt && CurrentTasMovie.Markers.IsMarker(frame)) { // TODO - TasView1.DragCurrentCell(); + tasView.DragCurrentCell(); } else { _startSelectionDrag = true; - _selectionDragState = TasView1.IsRowSelected(frame); + _selectionDragState = tasView.IsRowSelected(frame); } } else if (targetCol.Type is not ColumnType.Text) // User changed input @@ -622,9 +629,9 @@ private void TasView_MouseDown(object sender, MouseEventArgs e) } else if (altOrShift4State is Keys.Shift) { - if (!TasView1.AnyRowsSelected) return; + if (!tasView.AnyRowsSelected) return; - var iFirstSelectedRow = TasView1.FirstSelectedRowIndex; + var iFirstSelectedRow = tasView.FirstSelectedRowIndex; var (firstSel, lastSel) = frame <= iFirstSelectedRow ? (frame, iFirstSelectedRow) : (iFirstSelectedRow, frame); @@ -717,10 +724,10 @@ private void TasView_MouseDown(object sender, MouseEventArgs e) _rightClickControl = (ModifierKeys | Keys.Control) == ModifierKeys; _rightClickShift = (ModifierKeys | Keys.Shift) == ModifierKeys; _rightClickAlt = (ModifierKeys | Keys.Alt) == ModifierKeys; - if (TasView1.IsRowSelected(frame)) + if (tasView.IsRowSelected(frame)) { - _rightClickInput = new string[TasView1.SelectedRows.Count()]; - _rightClickFrame = TasView1.SelectionStartIndex!.Value; + _rightClickInput = new string[tasView.SelectedRows.Count()]; + _rightClickFrame = tasView.SelectionStartIndex!.Value; try { CurrentTasMovie.GetLogEntries().CopyTo(_rightClickFrame, _rightClickInput, 0, _rightClickInput.Length); @@ -780,8 +787,10 @@ private void ClearLeftMouseStates() _startAxisDrawColumn = ""; _drewAxis = false; _paintingMinFrame = -1; - TasView1.ReleaseCurrentCell(); - + foreach (InputRoll tasView in TasViews) + { + tasView.ReleaseCurrentCell(); + } // Exit axis editing if value was changed with cursor if (AxisEditingMode && _axisPaintState != CurrentTasMovie.GetAxisState(_axisEditRow, _axisEditColumn)) { @@ -806,15 +815,17 @@ private void ClearLeftMouseStates() private void TasView_MouseUp(object sender, MouseEventArgs e) { - if (e.Button == MouseButtons.Right && !TasView1.IsPointingAtColumnHeader - && !_suppressContextMenu && !_leftButtonHeld && TasView1.AnyRowsSelected) + var tasView = sender as InputRoll; + + if (e.Button == MouseButtons.Right && !tasView.IsPointingAtColumnHeader + && !_suppressContextMenu && !_leftButtonHeld && tasView.AnyRowsSelected) { - if (CurrentTasMovie.FrameCount < TasView1.SelectionEndIndex) + if (CurrentTasMovie.FrameCount < tasView.SelectionEndIndex) { // trying to be smart here // if a loaded branch log is shorter than selection, keep selection until you attempt to call context menu // you might need it when you load again the branch where this frame exists - TasView1.DeselectAll(); + tasView.DeselectAll(); SetTasViewRowCount(); } else @@ -850,7 +861,7 @@ private void TasView_MouseUp(object sender, MouseEventArgs e) { // If painting up, we have altered frames without loading states (for smoothness) // So now we have to ensure that all the edited frames are invalidated - GoToLastEmulatedFrameIfNecessary(_paintingMinFrame); + GoToLastEmulatedFrameIfNecessary(_paintingMinFrame); } ClearLeftMouseStates(); @@ -875,7 +886,10 @@ private void TasView_MouseUp(object sender, MouseEventArgs e) private void TasView_MouseWheel(object sender, MouseEventArgs e) { - if (TasView1.RightButtonHeld && TasView1?.CurrentCell.RowIndex.HasValue == true) + + var tasView = sender as InputRoll; + + if (tasView.RightButtonHeld && tasView?.CurrentCell.RowIndex.HasValue == true) { _suppressContextMenu = true; int notch = e.Delta / 120; @@ -911,13 +925,15 @@ private void TasView_MouseWheel(object sender, MouseEventArgs e) private void TasView_MouseDoubleClick(object sender, MouseEventArgs e) { - if (TasView1.CurrentCell?.Column is not { Name: var columnName }) return; + var tasView = sender as InputRoll; + + if (tasView.CurrentCell?.Column is not { Name: var columnName }) return; if (e.Button == MouseButtons.Left) { - if (!AxisEditingMode && TasView1.CurrentCell.RowIndex is not null && columnName is FrameColumnName) + if (!AxisEditingMode && tasView.CurrentCell.RowIndex is not null && columnName is FrameColumnName) { - var existingMarker = CurrentTasMovie.Markers.FirstOrDefault(m => m.Frame == TasView1.CurrentCell.RowIndex.Value); + var existingMarker = CurrentTasMovie.Markers.FirstOrDefault(m => m.Frame == tasView.CurrentCell.RowIndex.Value); if (existingMarker != null) { @@ -926,7 +942,7 @@ private void TasView_MouseDoubleClick(object sender, MouseEventArgs e) else { ClearLeftMouseStates(); - MarkerControlMPR.AddMarker(TasView1.CurrentCell.RowIndex.Value); + MarkerControlMPR.AddMarker(tasView.CurrentCell.RowIndex.Value); } } } @@ -934,7 +950,9 @@ private void TasView_MouseDoubleClick(object sender, MouseEventArgs e) private void TasView_PointedCellChanged(object sender, InputRoll.CellEventArgs e) { - toolTip1.SetToolTip(TasView1, null); + var tasView = sender as InputRoll; + + toolTip1.SetToolTip(tasView, null); if (e.NewCell.RowIndex is null) { @@ -971,7 +989,7 @@ private void TasView_PointedCellChanged(object sender, InputRoll.CellEventArgs e { startVal = e.NewCell.RowIndex.Value; endVal = e.OldCell.RowIndex ?? e.NewCell.RowIndex.Value; - if(_patternPaint) + if (_patternPaint) { endVal = _startRow; } @@ -985,8 +1003,8 @@ private void TasView_PointedCellChanged(object sender, InputRoll.CellEventArgs e { for (var i = startVal; i <= endVal; i++) { - if (!TasView1.IsRowSelected(i)) - TasView1.SelectRow(i, _selectionDragState); + if (!tasView.IsRowSelected(i)) + tasView.SelectRow(i, _selectionDragState); if (AxisEditingMode && (ModifierKeys == Keys.Control || ModifierKeys == Keys.Shift)) { if (_selectionDragState) @@ -1113,7 +1131,7 @@ private void TasView_PointedCellChanged(object sender, InputRoll.CellEventArgs e } // Left-click - else if (TasView1.IsPaintDown && !string.IsNullOrEmpty(_startBoolDrawColumn)) + else if (tasView.IsPaintDown && !string.IsNullOrEmpty(_startBoolDrawColumn)) { CurrentTasMovie.IsCountingRerecords = false; @@ -1143,7 +1161,7 @@ private void TasView_PointedCellChanged(object sender, InputRoll.CellEventArgs e } } - else if (TasView1.IsPaintDown && !string.IsNullOrEmpty(_startAxisDrawColumn)) + else if (tasView.IsPaintDown && !string.IsNullOrEmpty(_startAxisDrawColumn)) { CurrentTasMovie.IsCountingRerecords = false; @@ -1172,7 +1190,7 @@ private void TasView_PointedCellChanged(object sender, InputRoll.CellEventArgs e if (MouseButtonHeld) { - TasView1.MakeIndexVisible(TasView1.CurrentCell.RowIndex.Value); // todo: limit scrolling speed + tasView.MakeIndexVisible(tasView.CurrentCell.RowIndex.Value); // todo: limit scrolling speed } SetTasViewRowCount(); @@ -1427,7 +1445,7 @@ private void TasView_KeyDown(object sender, KeyEventArgs e) } else if (e.IsShift(Keys.End)) { - GoToFrame(CurrentTasMovie.InputLogLength-1); + GoToFrame(CurrentTasMovie.InputLogLength - 1); } if (AxisEditingMode From 3f3c22dd7e2412e82e961fab4f54a964cbd6a0d3 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Thu, 6 Feb 2025 00:29:42 -0500 Subject: [PATCH 06/65] working through menu items --- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 228 ++++++++++-------- .../tools/TAStudioMPR/TAStudioMPR.cs | 23 +- 2 files changed, 144 insertions(+), 107 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 420d50e19af..44d04fd9488 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -330,160 +330,186 @@ private void ShowUndoHistoryMenuItem_Click(object sender, EventArgs e) private void DeselectMenuItem_Click(object sender, EventArgs e) { - TasView1.DeselectAll(); - TasView1.Refresh(); + foreach (InputRoll tasView in TasViews) + { + tasView.DeselectAll(); + tasView.Refresh(); + } } /// TODO merge w/ Deselect? private void SelectAllMenuItem_Click(object sender, EventArgs e) { - TasView1.SelectAll(); - TasView1.Refresh(); + foreach (InputRoll tasView in TasViews) + { + tasView.SelectAll(); + tasView.Refresh(); + } } private void SelectBetweenMarkersMenuItem_Click(object sender, EventArgs e) { - if (TasView1.Focused && TasView1.AnyRowsSelected) + foreach (InputRoll tasView in TasViews) { - var selectionEnd = TasView1.SelectionEndIndex ?? 0; - var prevMarker = CurrentTasMovie.Markers.PreviousOrCurrent(selectionEnd); - var nextMarker = CurrentTasMovie.Markers.Next(selectionEnd); - - int prev = prevMarker?.Frame ?? 0; - int next = nextMarker?.Frame ?? CurrentTasMovie.InputLogLength; - TasView1.DeselectAll(); - for (int i = prev; i < next; i++) + if (tasView.Focused && tasView.AnyRowsSelected) { - TasView1.SelectRow(i, true); - } + var selectionEnd = tasView.SelectionEndIndex ?? 0; + var prevMarker = CurrentTasMovie.Markers.PreviousOrCurrent(selectionEnd); + var nextMarker = CurrentTasMovie.Markers.Next(selectionEnd); - SetSplicer(); - TasView1.Refresh(); + int prev = prevMarker?.Frame ?? 0; + int next = nextMarker?.Frame ?? CurrentTasMovie.InputLogLength; + + tasView.DeselectAll(); + for (int i = prev; i < next; i++) + { + tasView.SelectRow(i, true); + } + + SetSplicer(); + tasView.Refresh(); + } } } - private void ReselectClipboardMenuItem_Click(object sender, EventArgs e) { - TasView1.DeselectAll(); - foreach (var item in _tasClipboard) + foreach (InputRoll tasView in TasViews) { - TasView1.SelectRow(item.Frame, true); - } + if (tasView.Focused && tasView.AnyRowsSelected) + { + tasView.DeselectAll(); + foreach (var item in _tasClipboard) + { + tasView.SelectRow(item.Frame, true); + } - SetSplicer(); - TasView1.Refresh(); + SetSplicer(); + tasView.Refresh(); + } + } } private void CopyMenuItem_Click(object sender, EventArgs e) { - if (TasView1.Focused && TasView1.AnyRowsSelected) + foreach (InputRoll tasView in TasViews) { - _tasClipboard.Clear(); - var list = TasView1.SelectedRows.ToArray(); - var sb = new StringBuilder(); - - foreach (var index in list) + if (tasView.Focused && tasView.AnyRowsSelected) { - var input = CurrentTasMovie.GetInputState(index); - if (input == null) + _tasClipboard.Clear(); + var list = tasView.SelectedRows.ToArray(); + var sb = new StringBuilder(); + + foreach (var index in list) { - break; + var input = CurrentTasMovie.GetInputState(index); + if (input == null) + { + break; + } + + _tasClipboard.Add(new TasClipboardEntry(index, input)); + var logEntry = Bk2LogEntryGenerator.GenerateLogEntry(input); + sb.AppendLine(Settings.CopyIncludesFrameNo ? $"{FrameToStringPadded(index)} {logEntry}" : logEntry); } - _tasClipboard.Add(new TasClipboardEntry(index, input)); - var logEntry = Bk2LogEntryGenerator.GenerateLogEntry(input); - sb.AppendLine(Settings.CopyIncludesFrameNo ? $"{FrameToStringPadded(index)} {logEntry}" : logEntry); + Clipboard.SetDataObject(sb.ToString()); + SetSplicer(); } - Clipboard.SetDataObject(sb.ToString()); - SetSplicer(); } + + } private void PasteMenuItem_Click(object sender, EventArgs e) { - if (TasView1.Focused && TasView1.AnyRowsSelected) + foreach (InputRoll tasView in TasViews) { - // TODO: if highlighting 2 rows and pasting 3, only paste 2 of them - // FCEUX Taseditor doesn't do this, but I think it is the expected behavior in editor programs - - // TODO: copy paste from PasteInsertMenuItem_Click! - IDataObject data = Clipboard.GetDataObject(); - if (data != null && data.GetDataPresent(DataFormats.StringFormat)) + if (tasView.Focused && tasView.AnyRowsSelected) { - string input = (string)data.GetData(DataFormats.StringFormat); - if (!string.IsNullOrWhiteSpace(input)) + // TODO: if highlighting 2 rows and pasting 3, only paste 2 of them + // FCEUX Taseditor doesn't do this, but I think it is the expected behavior in editor programs + + // TODO: copy paste from PasteInsertMenuItem_Click! + IDataObject data = Clipboard.GetDataObject(); + if (data != null && data.GetDataPresent(DataFormats.StringFormat)) { - string[] lines = input.Split('\n'); - if (lines.Length > 0) + string input = (string) data.GetData(DataFormats.StringFormat); + if (!string.IsNullOrWhiteSpace(input)) { - _tasClipboard.Clear(); - int linesToPaste = lines.Length; - if (lines[lines.Length - 1].Length is 0) linesToPaste--; - for (int i = 0; i < linesToPaste; i++) + string[] lines = input.Split('\n'); + if (lines.Length > 0) { - var line = ControllerFromMnemonicStr(lines[i]); - if (line == null) + _tasClipboard.Clear(); + int linesToPaste = lines.Length; + if (lines[lines.Length - 1].Length is 0) linesToPaste--; + for (int i = 0; i < linesToPaste; i++) { - return; + var line = ControllerFromMnemonicStr(lines[i]); + if (line == null) + { + return; + } + + _tasClipboard.Add(new TasClipboardEntry(i, line)); } - _tasClipboard.Add(new TasClipboardEntry(i, line)); - } + var rollbackFrame = CurrentTasMovie.CopyOverInput(tasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState)); + if (rollbackFrame > 0) + { + GoToLastEmulatedFrameIfNecessary(rollbackFrame); + DoAutoRestore(); + } - var rollbackFrame = CurrentTasMovie.CopyOverInput(TasView1.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState)); - if (rollbackFrame > 0) - { - GoToLastEmulatedFrameIfNecessary(rollbackFrame); - DoAutoRestore(); + FullRefresh(); } - - FullRefresh(); } } } } } - private void PasteInsertMenuItem_Click(object sender, EventArgs e) { - if (TasView1.Focused && TasView1.AnyRowsSelected) + foreach (InputRoll tasView in TasViews) { - // copy paste from PasteMenuItem_Click! - IDataObject data = Clipboard.GetDataObject(); - if (data != null && data.GetDataPresent(DataFormats.StringFormat)) + if (tasView.Focused && tasView.AnyRowsSelected) { - string input = (string)data.GetData(DataFormats.StringFormat); - if (!string.IsNullOrWhiteSpace(input)) + // copy paste from PasteMenuItem_Click! + IDataObject data = Clipboard.GetDataObject(); + if (data != null && data.GetDataPresent(DataFormats.StringFormat)) { - string[] lines = input.Split('\n'); - if (lines.Length > 0) + string input = (string) data.GetData(DataFormats.StringFormat); + if (!string.IsNullOrWhiteSpace(input)) { - _tasClipboard.Clear(); - int linesToPaste = lines.Length; - if (lines[lines.Length - 1].Length is 0) linesToPaste--; - for (int i = 0; i < linesToPaste; i++) + string[] lines = input.Split('\n'); + if (lines.Length > 0) { - var line = ControllerFromMnemonicStr(lines[i]); - if (line == null) + _tasClipboard.Clear(); + int linesToPaste = lines.Length; + if (lines[lines.Length - 1].Length is 0) linesToPaste--; + for (int i = 0; i < linesToPaste; i++) { - return; + var line = ControllerFromMnemonicStr(lines[i]); + if (line == null) + { + return; + } + + _tasClipboard.Add(new TasClipboardEntry(i, line)); } - _tasClipboard.Add(new TasClipboardEntry(i, line)); - } + var selectionStart = TasView1.SelectionStartIndex; + var needsToRollback = selectionStart < Emulator.Frame; + CurrentTasMovie.InsertInput(selectionStart ?? 0, _tasClipboard.Select(static x => x.ControllerState)); + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(selectionStart!.Value); + DoAutoRestore(); + } - var selectionStart = TasView1.SelectionStartIndex; - var needsToRollback = selectionStart < Emulator.Frame; - CurrentTasMovie.InsertInput(selectionStart ?? 0, _tasClipboard.Select(static x => x.ControllerState)); - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(selectionStart!.Value); - DoAutoRestore(); + FullRefresh(); } - - FullRefresh(); } } } @@ -824,7 +850,7 @@ private void SetAutosaveIntervalMenuItem_Click(object sender, EventArgs e) Settings.AutosaveInterval = val; if (val > 0) { - _autosaveTimer.Interval = (int)val; + _autosaveTimer.Interval = (int) val; _autosaveTimer.Start(); } } @@ -1030,24 +1056,24 @@ private void RotateMenuItem_Click(object sender, EventArgs e) private void HideLagFramesX_Click(object sender, EventArgs e) { - TasView1.LagFramesToHide = (int)((ToolStripMenuItem)sender).Tag; + TasView1.LagFramesToHide = (int) ((ToolStripMenuItem) sender).Tag; MaybeFollowCursor(); RefreshDialog(); } private void HideWasLagFramesMenuItem_Click(object sender, EventArgs e) => TasView1.HideWasLagFrames = !TasView1.HideWasLagFrames; - + private void AlwaysScrollMenuItem_Click(object sender, EventArgs e) { TasView1.AlwaysScroll = Settings.FollowCursorAlwaysScroll = alwaysScrollToolStripMenuItem.Checked; } - + private void ScrollToViewMenuItem_Click(object sender, EventArgs e) { TasView1.ScrollMethod = Settings.FollowCursorScrollMethod = "near"; } - + private void ScrollToTopMenuItem_Click(object sender, EventArgs e) { TasView1.ScrollMethod = Settings.FollowCursorScrollMethod = "top"; @@ -1123,7 +1149,7 @@ private void SetUpToolStripColumns() int rowHeight = ColumnsSubMenu.Height + 4; int maxRows = workingHeight / rowHeight; int keyCount = columns.Count(c => c.Name.StartsWithOrdinal("Key ")); - int keysMenusCount = (int)Math.Ceiling((double)keyCount / maxRows); + int keysMenusCount = (int) Math.Ceiling((double) keyCount / maxRows); var keysMenus = new ToolStripMenuItem[keysMenusCount]; @@ -1152,13 +1178,13 @@ private void SetUpToolStripColumns() menuItem.CheckedChanged += (o, ev) => { - ToolStripMenuItem sender = (ToolStripMenuItem)o; - TasView1.AllColumns.Find(c => c.Name == (string)sender.Tag).Visible = sender.Checked; + ToolStripMenuItem sender = (ToolStripMenuItem) o; + TasView1.AllColumns.Find(c => c.Name == (string) sender.Tag).Visible = sender.Checked; TasView1.AllColumns.ColumnsChanged(); CurrentTasMovie.FlagChanges(); TasView1.Refresh(); ColumnsSubMenu.ShowDropDown(); - ((ToolStripMenuItem)sender.OwnerItem).ShowDropDown(); + ((ToolStripMenuItem) sender.OwnerItem).ShowDropDown(); }; if (column.Name.StartsWithOrdinal("Key ")) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 86df35ca4c2..45eb4adb321 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -9,6 +9,7 @@ using BizHawk.Client.EmuHawk.Properties; using BizHawk.Common.StringExtensions; using BizHawk.Emulation.Common; +using System.Runtime.Remoting.Channels; namespace BizHawk.Client.EmuHawk { @@ -487,7 +488,7 @@ public void AddColumn(string name, string text, int widthUnscaled) public void ClearFramesExternal() => ClearFramesMenuItem_Click(null, null); public void InsertFrameExternal() => InsertFrameMenuItem_Click(null, null); public void InsertNumFramesExternal() => InsertNumFramesMenuItem_Click(null, null); - public void DeleteFramesExternal() => DeleteFramesMenuItem_Click(null, null); + public void DeleteFramesExternal(object sender) => DeleteFramesMenuItem_Click(null, null); public void CloneFramesExternal() => CloneFramesMenuItem_Click(null, null); public void CloneFramesXTimesExternal() => CloneFramesXTimesMenuItem_Click(null, null); public void UndoExternal() => UndoMenuItem_Click(null, null); @@ -1010,11 +1011,19 @@ public void TogglePause() private void SetSplicer() { - // TODO: columns selected? - var selectedRowCount = TasView1.SelectedRows.Count(); - var temp = $"Selected: {selectedRowCount} {(selectedRowCount == 1 ? "frame" : "frames")}, States: {CurrentTasMovie.TasStateManager.Count}"; - if (_tasClipboard.Any()) temp += $", Clipboard: {_tasClipboard.Count} {(_tasClipboard.Count == 1 ? "frame" : "frames")}"; - SplicerStatusLabel.Text = temp; + + foreach ( InputRoll tasView in TasViews) + { + if (tasView.Focused && tasView.AnyRowsSelected) + { + var selectedRowCount = tasView.SelectedRows.Count(); + var temp = $"Selected: {selectedRowCount} {(selectedRowCount == 1 ? "frame" : "frames")}, States: {CurrentTasMovie.TasStateManager.Count}"; + if (_tasClipboard.Any()) temp += $", Clipboard: {_tasClipboard.Count} {(_tasClipboard.Count == 1 ? "frame" : "frames")}"; + SplicerStatusLabel.Text = temp; + } + } + // TODO: columns selected? + } private void DoTriggeredAutoRestoreIfNeeded() @@ -1064,6 +1073,8 @@ public void InsertNumFrames(int insertionFrame, int numberOfFrames) public void DeleteFrames(int beginningFrame, int numberOfFrames) { + //var a = + if (beginningFrame < CurrentTasMovie.InputLogLength) { int[] framesToRemove = Enumerable.Range(beginningFrame, numberOfFrames).ToArray(); From bec1abc58752bbe865664a96491971a7ddd83322 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Thu, 6 Feb 2025 00:54:56 -0500 Subject: [PATCH 07/65] Some more checking for specific tasview --- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 269 ++++++++++-------- .../tools/TAStudioMPR/TAStudioMPR.cs | 142 +++++---- 2 files changed, 236 insertions(+), 175 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 44d04fd9488..cb0b43f912e 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -518,95 +518,103 @@ private void PasteInsertMenuItem_Click(object sender, EventArgs e) private void CutMenuItem_Click(object sender, EventArgs e) { - if (TasView1.Focused && TasView1.AnyRowsSelected) + foreach (InputRoll tasView in TasViews) { - var selectionStart = TasView1.SelectionStartIndex; - var needsToRollback = selectionStart < Emulator.Frame; - var rollBackFrame = selectionStart ?? 0; + if (tasView.Focused && tasView.AnyRowsSelected) + { + var selectionStart = TasView1.SelectionStartIndex; + var needsToRollback = selectionStart < Emulator.Frame; + var rollBackFrame = selectionStart ?? 0; - _tasClipboard.Clear(); - var list = TasView1.SelectedRows.ToArray(); - var sb = new StringBuilder(); + _tasClipboard.Clear(); + var list = TasView1.SelectedRows.ToArray(); + var sb = new StringBuilder(); - foreach (var index in list) // copy of CopyMenuItem_Click() - { - var input = CurrentTasMovie.GetInputState(index); - if (input == null) + foreach (var index in list) // copy of CopyMenuItem_Click() { - break; + var input = CurrentTasMovie.GetInputState(index); + if (input == null) + { + break; + } + + _tasClipboard.Add(new TasClipboardEntry(index, input)); + sb.AppendLine(Bk2LogEntryGenerator.GenerateLogEntry(input)); } - _tasClipboard.Add(new TasClipboardEntry(index, input)); - sb.AppendLine(Bk2LogEntryGenerator.GenerateLogEntry(input)); - } + Clipboard.SetDataObject(sb.ToString()); + CurrentTasMovie.RemoveFrames(list); + SetSplicer(); - Clipboard.SetDataObject(sb.ToString()); - CurrentTasMovie.RemoveFrames(list); - SetSplicer(); + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(rollBackFrame); + DoAutoRestore(); + } - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(rollBackFrame); - DoAutoRestore(); + FullRefresh(); } - - FullRefresh(); } } private void ClearFramesMenuItem_Click(object sender, EventArgs e) { //will have to get the current tasview - - if (TasView1.Focused && TasView1.AnyRowsSelected) + foreach (InputRoll tasView in TasViews) { - var firstWithInput = FirstNonEmptySelectedFrame; - bool needsToRollback = firstWithInput.HasValue && firstWithInput < Emulator.Frame; - var rollBackFrame = TasView1.SelectionStartIndex ?? 0; - - CurrentTasMovie.ChangeLog.BeginNewBatch($"Clear frames {TasView1.SelectionStartIndex}-{TasView1.SelectionEndIndex}"); - foreach (int frame in TasView1.SelectedRows) + if (tasView.Focused && tasView.AnyRowsSelected) { - CurrentTasMovie.ClearFrame(frame); - } + var firstWithInput = FirstNonEmptySelectedFrame; + bool needsToRollback = firstWithInput.HasValue && firstWithInput < Emulator.Frame; + var rollBackFrame = TasView1.SelectionStartIndex ?? 0; - CurrentTasMovie.ChangeLog.EndBatch(); + CurrentTasMovie.ChangeLog.BeginNewBatch($"Clear frames {TasView1.SelectionStartIndex}-{TasView1.SelectionEndIndex}"); + foreach (int frame in TasView1.SelectedRows) + { + CurrentTasMovie.ClearFrame(frame); + } - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(rollBackFrame); - DoAutoRestore(); - } + CurrentTasMovie.ChangeLog.EndBatch(); + + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(rollBackFrame); + DoAutoRestore(); + } - FullRefresh(); + FullRefresh(); + } } } private void DeleteFramesMenuItem_Click(object sender, EventArgs e) { - if (TasView1.Focused && TasView1.AnyRowsSelected) + foreach (InputRoll tasView in TasViews) { - var selectionStart = TasView1.SelectionStartIndex; - var needsToRollback = selectionStart < Emulator.Frame; - var rollBackFrame = selectionStart ?? 0; - if (rollBackFrame >= CurrentTasMovie.InputLogLength) + if (tasView.Focused && tasView.AnyRowsSelected) { - // Cannot delete non-existent frames - FullRefresh(); - return; - } + var selectionStart = TasView1.SelectionStartIndex; + var needsToRollback = selectionStart < Emulator.Frame; + var rollBackFrame = selectionStart ?? 0; + if (rollBackFrame >= CurrentTasMovie.InputLogLength) + { + // Cannot delete non-existent frames + FullRefresh(); + return; + } - CurrentTasMovie.RemoveFrames(TasView1.SelectedRows.ToArray()); - SetTasViewRowCount(); - SetSplicer(); + CurrentTasMovie.RemoveFrames(tasView.SelectedRows.ToArray()); + SetTasViewRowCount(); + SetSplicer(); - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(rollBackFrame); - DoAutoRestore(); - } + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(rollBackFrame); + DoAutoRestore(); + } - FullRefresh(); + FullRefresh(); + } } } @@ -626,111 +634,138 @@ private void CloneFramesXTimesMenuItem_Click(object sender, EventArgs e) private void CloneFramesXTimes(int timesToClone) { - for (int i = 0; i < timesToClone; i++) + foreach (InputRoll tasView in TasViews) { - if (TasView1.Focused && TasView1.AnyRowsSelected) + for (int i = 0; i < timesToClone; i++) { - var framesToInsert = TasView1.SelectedRows; - var insertionFrame = Math.Min((TasView1.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); - var needsToRollback = TasView1.SelectionStartIndex < Emulator.Frame; + if (tasView.Focused && tasView.AnyRowsSelected) + { + var framesToInsert = tasView.SelectedRows; + var insertionFrame = Math.Min((TasView1.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); + var needsToRollback = TasView1.SelectionStartIndex < Emulator.Frame; - var inputLog = framesToInsert - .Select(frame => CurrentTasMovie.GetInputLogEntry(frame)) - .ToList(); + var inputLog = framesToInsert + .Select(frame => CurrentTasMovie.GetInputLogEntry(frame)) + .ToList(); - CurrentTasMovie.InsertInput(insertionFrame, inputLog); + CurrentTasMovie.InsertInput(insertionFrame, inputLog); - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(insertionFrame); - DoAutoRestore(); - } + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(insertionFrame); + DoAutoRestore(); + } - FullRefresh(); + FullRefresh(); + } } } } private void InsertFrameMenuItem_Click(object sender, EventArgs e) { - if (TasView1.Focused && TasView1.AnyRowsSelected) + foreach (InputRoll tasView in TasViews) { - var selectionStart = TasView1.SelectionStartIndex; - var insertionFrame = selectionStart ?? 0; - var needsToRollback = selectionStart < Emulator.Frame; + if (tasView.Focused && tasView.AnyRowsSelected) + { + var selectionStart = TasView1.SelectionStartIndex; + var insertionFrame = selectionStart ?? 0; + var needsToRollback = selectionStart < Emulator.Frame; - CurrentTasMovie.InsertEmptyFrame(insertionFrame); + CurrentTasMovie.InsertEmptyFrame(insertionFrame); - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(insertionFrame); - DoAutoRestore(); - } + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(insertionFrame); + DoAutoRestore(); + } - FullRefresh(); + FullRefresh(); + } } } - private void InsertNumFramesMenuItem_Click(object sender, EventArgs e) { - if (TasView1.Focused && TasView1.AnyRowsSelected) + foreach (InputRoll tasView in TasViews) { - var insertionFrame = TasView1.SelectionStartIndex ?? 0; - using var framesPrompt = new FramesPrompt(); - if (framesPrompt.ShowDialogOnScreen().IsOk()) + if (tasView.Focused && tasView.AnyRowsSelected) { - InsertNumFrames(insertionFrame, framesPrompt.Frames); + var insertionFrame = TasView1.SelectionStartIndex ?? 0; + using var framesPrompt = new FramesPrompt(); + if (framesPrompt.ShowDialogOnScreen().IsOk()) + { + InsertNumFrames(insertionFrame, framesPrompt.Frames); + } } } } private void TruncateMenuItem_Click(object sender, EventArgs e) { - if (TasView1.Focused && TasView1.AnyRowsSelected) + foreach (InputRoll tasView in TasViews) { - var rollbackFrame = TasView1.SelectionEndIndex ?? 0; - var needsToRollback = TasView1.SelectionStartIndex < Emulator.Frame; + if (tasView.Focused && tasView.AnyRowsSelected) + { + var rollbackFrame = tasView.SelectionEndIndex ?? 0; + var needsToRollback = tasView.SelectionStartIndex < Emulator.Frame; - CurrentTasMovie.Truncate(rollbackFrame); - MarkerControlMPR.MarkerInputRoll.TruncateSelection(CurrentTasMovie.Markers.Count - 1); + CurrentTasMovie.Truncate(rollbackFrame); + MarkerControlMPR.MarkerInputRoll.TruncateSelection(CurrentTasMovie.Markers.Count - 1); - if (needsToRollback) - { - GoToFrame(rollbackFrame); - } + if (needsToRollback) + { + GoToFrame(rollbackFrame); + } - FullRefresh(); + FullRefresh(); + } } } private void SetMarkersMenuItem_Click(object sender, EventArgs e) { - var selectedRows = TasView1.SelectedRows.ToList(); - if (selectedRows.Count > 50) + foreach (InputRoll tasView in TasViews) { - var result = DialogController.ShowMessageBox2("Are you sure you want to add more than 50 markers?", "Add markers", EMsgBoxIcon.Question, useOKCancel: true); - if (!result) + if (tasView.Focused && tasView.AnyRowsSelected) { - return; - } - } + var selectedRows = tasView.SelectedRows.ToList(); + if (selectedRows.Count > 50) + { + var result = DialogController.ShowMessageBox2("Are you sure you want to add more than 50 markers?", "Add markers", EMsgBoxIcon.Question, useOKCancel: true); + if (!result) + { + return; + } + } - foreach (var index in selectedRows) - { - MarkerControlMPR.AddMarker(index); + foreach (var index in selectedRows) + { + MarkerControlMPR.AddMarker(index); + } + } } } - private void SetMarkerWithTextMenuItem_Click(object sender, EventArgs e) { - MarkerControlMPR.AddMarker(TasView1.AnyRowsSelected ? TasView1.FirstSelectedRowIndex : 0, true); + foreach (InputRoll tasView in TasViews) + { + if (tasView.Focused && tasView.AnyRowsSelected) + { + MarkerControlMPR.AddMarker(tasView.AnyRowsSelected ? tasView.FirstSelectedRowIndex : 0, true); + } + } } - private void RemoveMarkersMenuItem_Click(object sender, EventArgs e) { - CurrentTasMovie.Markers.RemoveAll(m => TasView1.IsRowSelected(m.Frame)); - MarkerControlMPR.UpdateMarkerCount(); - RefreshDialog(); + foreach (InputRoll tasView in TasViews) + { + if (tasView.Focused && tasView.AnyRowsSelected) + { + CurrentTasMovie.Markers.RemoveAll(m => tasView.IsRowSelected(m.Frame)); + MarkerControlMPR.UpdateMarkerCount(); + RefreshDialog(); + } + } } private void ClearGreenzoneMenuItem_Click(object sender, EventArgs e) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 45eb4adb321..679cfc8b2d5 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -166,7 +166,11 @@ public TAStudioMPR() TasView2.Parent = MainVertialSplit.Panel1; TasView2.Width = 300; TasView2.Height = 550; - TasView2.Location = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 10); + TasView2.Location = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); + TasView2.Anchor = ((System.Windows.Forms.AnchorStyles) ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + TasView2.QueryItemText += TasView_QueryItemText; TasView2.QueryItemBkColor += TasView_QueryItemBkColor; TasView2.QueryRowBkColor += TasView_QueryRowBkColor; @@ -1011,8 +1015,8 @@ public void TogglePause() private void SetSplicer() { - - foreach ( InputRoll tasView in TasViews) + + foreach (InputRoll tasView in TasViews) { if (tasView.Focused && tasView.AnyRowsSelected) { @@ -1022,8 +1026,8 @@ private void SetSplicer() SplicerStatusLabel.Text = temp; } } - // TODO: columns selected? - + // TODO: columns selected? + } private void DoTriggeredAutoRestoreIfNeeded() @@ -1053,70 +1057,84 @@ private void DoTriggeredAutoRestoreIfNeeded() public void InsertNumFrames(int insertionFrame, int numberOfFrames) { - if (insertionFrame <= CurrentTasMovie.InputLogLength) + foreach (InputRoll tasView in TasViews) { - var needsToRollback = TasView1.SelectionStartIndex < Emulator.Frame; + if (tasView.Focused && tasView.AnyRowsSelected) + { + if (insertionFrame <= CurrentTasMovie.InputLogLength) + { + var needsToRollback = tasView.SelectionStartIndex < Emulator.Frame; - CurrentTasMovie.InsertEmptyFrame(insertionFrame, numberOfFrames); + CurrentTasMovie.InsertEmptyFrame(insertionFrame, numberOfFrames); - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(insertionFrame); - DoAutoRestore(); - } - else - { - RefreshForInputChange(insertionFrame); + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(insertionFrame); + DoAutoRestore(); + } + else + { + RefreshForInputChange(insertionFrame); + } + } } } } - public void DeleteFrames(int beginningFrame, int numberOfFrames) { //var a = - - if (beginningFrame < CurrentTasMovie.InputLogLength) + foreach (InputRoll tasView in TasViews) { - int[] framesToRemove = Enumerable.Range(beginningFrame, numberOfFrames).ToArray(); - CurrentTasMovie.RemoveFrames(framesToRemove); - SetSplicer(); - - var needsToRollback = beginningFrame < Emulator.Frame; - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(beginningFrame); - DoAutoRestore(); - } - else + if (tasView.Focused && tasView.AnyRowsSelected) { - RefreshForInputChange(beginningFrame); + if (beginningFrame < CurrentTasMovie.InputLogLength) + { + int[] framesToRemove = Enumerable.Range(beginningFrame, numberOfFrames).ToArray(); + CurrentTasMovie.RemoveFrames(framesToRemove); + SetSplicer(); + + var needsToRollback = beginningFrame < Emulator.Frame; + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(beginningFrame); + DoAutoRestore(); + } + else + { + RefreshForInputChange(beginningFrame); + } + } } } } - public void ClearFrames(int beginningFrame, int numberOfFrames) { - if (beginningFrame < CurrentTasMovie.InputLogLength) + foreach (InputRoll tasView in TasViews) { - var needsToRollback = TasView1.SelectionStartIndex < Emulator.Frame; - int last = Math.Min(beginningFrame + numberOfFrames, CurrentTasMovie.InputLogLength); - for (int i = beginningFrame; i < last; i++) + if (tasView.Focused && tasView.AnyRowsSelected) { - CurrentTasMovie.ClearFrame(i); - } + if (beginningFrame < CurrentTasMovie.InputLogLength) + { + var needsToRollback = tasView.SelectionStartIndex < Emulator.Frame; + int last = Math.Min(beginningFrame + numberOfFrames, CurrentTasMovie.InputLogLength); + for (int i = beginningFrame; i < last; i++) + { + CurrentTasMovie.ClearFrame(i); + } - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(beginningFrame); - DoAutoRestore(); - } - else - { - RefreshForInputChange(beginningFrame); + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(beginningFrame); + DoAutoRestore(); + } + else + { + RefreshForInputChange(beginningFrame); + } + } } } } - private void Tastudio_Closing(object sender, FormClosingEventArgs e) { if (!_initialized) @@ -1160,8 +1178,14 @@ private void TAStudio_DragDrop(object sender, DragEventArgs e) private void TAStudio_MouseLeave(object sender, EventArgs e) { - toolTip1.SetToolTip(TasView1, null); - DoTriggeredAutoRestoreIfNeeded(); + foreach (InputRoll tasView in TasViews) + { + if (tasView.Focused && tasView.AnyRowsSelected) + { + toolTip1.SetToolTip(tasView, null); + DoTriggeredAutoRestoreIfNeeded(); + } + } } protected override bool ProcessCmdKey(ref Message msg, Keys keyData) @@ -1281,19 +1305,21 @@ private void SetFontMenuItem_Click(object sender, EventArgs e) { foreach (InputRoll tasView in TasViews) { - using var fontDialog = new FontDialog - { - ShowColor = false, - Font = tasView.Font - }; - if (fontDialog.ShowDialog() != DialogResult.Cancel) + if (tasView.Focused && tasView.AnyRowsSelected) { - tasView.Font = TasViewFont = fontDialog.Font; - tasView.Refresh(); + using var fontDialog = new FontDialog + { + ShowColor = false, + Font = tasView.Font + }; + if (fontDialog.ShowDialog() != DialogResult.Cancel) + { + tasView.Font = TasViewFont = fontDialog.Font; + tasView.Refresh(); + } } } } - private IMovieController ControllerFromMnemonicStr(string inputLogEntry) { try From 095159e1298e614c6b4e9025d5532a98867fb85d Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Thu, 6 Feb 2025 03:01:53 -0500 Subject: [PATCH 08/65] more progress need to get the settings correct on the dynamically created tasview --- .../tools/TAStudioMPR/TAStudioMPR.ListView.cs | 8 +++- .../tools/TAStudioMPR/TAStudioMPR.cs | 39 ++++++++++++++----- 2 files changed, 36 insertions(+), 11 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs index a0144a08595..74d3db10017 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs @@ -40,7 +40,13 @@ private int AxisEditRow set { _axisEditRow = value; - TasView1.SuspendHotkeys = AxisEditingMode; + foreach (InputRoll tasView in TasViews) + { + if (tasView.Focused && tasView.AnyRowsSelected) + { + tasView.SuspendHotkeys = AxisEditingMode; + } + } } } diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 679cfc8b2d5..423c914f823 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -167,9 +167,9 @@ public TAStudioMPR() TasView2.Width = 300; TasView2.Height = 550; TasView2.Location = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); - TasView2.Anchor = ((System.Windows.Forms.AnchorStyles) ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + TasView2.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); + | System.Windows.Forms.AnchorStyles.Right); TasView2.QueryItemText += TasView_QueryItemText; TasView2.QueryItemBkColor += TasView_QueryItemBkColor; @@ -594,8 +594,7 @@ private bool StartNewTasMovie() if (success) { - // clear all selections - //TasView1.DeselectAll(); + // clear all selections foreach (InputRoll tasView in TasViews) { tasView.DeselectAll(); @@ -631,7 +630,10 @@ private bool StartNewMovieWrapper(ITasMovie movie, bool isNew) UpdateWindowTitle(); if (CurrentTasMovie.InputRollSettings != null) { - TasView1.LoadSettingsSerialized(CurrentTasMovie.InputRollSettings); + foreach (InputRoll tasView in TasViews) + { + tasView.LoadSettingsSerialized(CurrentTasMovie.InputRollSettings); + } } else { @@ -834,13 +836,27 @@ protected override string WindowTitle protected override string WindowTitleStatic => "TAStudio"; - public IEnumerable GetSelection() => TasView1.SelectedRows; - + //wannabeshinobi: changed from lambda to function + public IEnumerable GetSelection() + { + foreach (InputRoll tasView in TasViews) + { + if (tasView.Focused && tasView.AnyRowsSelected) + { + return tasView.SelectedRows; + } + } + return null; //something messed up + } // Slow but guarantees the entire dialog refreshes private void FullRefresh() { SetTasViewRowCount(); - TasView1.Refresh(); // An extra refresh potentially but we need to guarantee + foreach (InputRoll tasView in TasViews) + { + tasView.Refresh(); // An extra refresh potentially but we need to guarantee + } + MarkerControlMPR.UpdateValues(); BookMarkControlMPR.UpdateValues(); @@ -877,9 +893,12 @@ public void RefreshDialog(bool refreshTasView = true, bool refreshBranches = tru public void RefreshForInputChange(int firstChangedFrame) { - if (TasView1.IsPartiallyVisible(firstChangedFrame) || firstChangedFrame < TasView1.FirstVisibleRow) + foreach (InputRoll tasView in TasViews) { - RefreshDialog(); + if (tasView.IsPartiallyVisible(firstChangedFrame) || firstChangedFrame < tasView.FirstVisibleRow) + { + RefreshDialog(); + } } } From 2f33185b0755bc3ef38586ad98dc13fe131745a8 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Thu, 6 Feb 2025 03:14:09 -0500 Subject: [PATCH 09/65] Settings are closer fortasView They looks similar and the settings should be the same. Input Painting and row selection is working. NOT scrolling down though on second tasview for some reason though. --- .../tools/TAStudioMPR/TAStudioMPR.cs | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 423c914f823..91c5d42572b 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -171,6 +171,15 @@ public TAStudioMPR() | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right); + TasView2.CellHeightPadding = 0; + TasView2.ChangeSelectionWhenPaging = false; + TasView2.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0))); + TasView2.FullRowSelect = true; + TasView2.InputPaintingMode = true; + TasView2.LetKeysModifySelection = true; + TasView2.Rotatable = true; + TasView2.ScrollSpeed = 1; + TasView2.QueryItemText += TasView_QueryItemText; TasView2.QueryItemBkColor += TasView_QueryItemBkColor; TasView2.QueryRowBkColor += TasView_QueryRowBkColor; @@ -190,7 +199,7 @@ public TAStudioMPR() TasView2.MouseEnter += TasView_MouseEnter; TasView2.MouseMove += TasView_MouseMove; TasView2.MouseUp += TasView_MouseUp; - TasView2.RightMouseScrolled += TasView2_RightMouseScrolled; + TasView2.RightMouseScrolled += TasView_MouseWheel; TasView2.SelectedIndexChanged += TasView_SelectedIndexChanged; @@ -215,7 +224,7 @@ public TAStudioMPR() } - private void TasView2_RightMouseScrolled(object sender, MouseEventArgs e) => throw new NotImplementedException(); + //private void TasView2_RightMouseScrolled(object sender, MouseEventArgs e) => throw new NotImplementedException(); private void Tastudio_Load(object sender, EventArgs e) { From 111a15588aec2c42d5ba8297e5e896bf6051e865 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Thu, 6 Feb 2025 03:56:24 -0500 Subject: [PATCH 10/65] Fixed menu issue menu working better Clear() messed up again --- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 403 ++++++++++-------- .../tools/TAStudioMPR/TAStudioMPR.cs | 10 +- 2 files changed, 218 insertions(+), 195 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index cb0b43f912e..ded5b48e6e3 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -1060,26 +1060,29 @@ private void IconsMenuItem_DropDownOpened(object sender, EventArgs e) private void FollowCursorMenuItem_DropDownOpened(object sender, EventArgs e) { - alwaysScrollToolStripMenuItem.Checked = Settings.FollowCursorAlwaysScroll; - scrollToViewToolStripMenuItem.Checked = false; - scrollToTopToolStripMenuItem.Checked = false; - scrollToBottomToolStripMenuItem.Checked = false; - scrollToCenterToolStripMenuItem.Checked = false; - if (TasView1.ScrollMethod == "near") - { - scrollToViewToolStripMenuItem.Checked = true; - } - else if (TasView1.ScrollMethod == "top") - { - scrollToTopToolStripMenuItem.Checked = true; - } - else if (TasView1.ScrollMethod == "bottom") - { - scrollToBottomToolStripMenuItem.Checked = true; - } - else + foreach (InputRoll tasView in TasViews) { - scrollToCenterToolStripMenuItem.Checked = true; + alwaysScrollToolStripMenuItem.Checked = Settings.FollowCursorAlwaysScroll; + scrollToViewToolStripMenuItem.Checked = false; + scrollToTopToolStripMenuItem.Checked = false; + scrollToBottomToolStripMenuItem.Checked = false; + scrollToCenterToolStripMenuItem.Checked = false; + if (tasView.ScrollMethod == "near") + { + scrollToViewToolStripMenuItem.Checked = true; + } + else if (tasView.ScrollMethod == "top") + { + scrollToTopToolStripMenuItem.Checked = true; + } + else if (tasView.ScrollMethod == "bottom") + { + scrollToBottomToolStripMenuItem.Checked = true; + } + else + { + scrollToCenterToolStripMenuItem.Checked = true; + } } } @@ -1101,29 +1104,40 @@ private void HideWasLagFramesMenuItem_Click(object sender, EventArgs e) private void AlwaysScrollMenuItem_Click(object sender, EventArgs e) { - TasView1.AlwaysScroll = Settings.FollowCursorAlwaysScroll = alwaysScrollToolStripMenuItem.Checked; + foreach (InputRoll tasView in TasViews) + { + tasView.AlwaysScroll = Settings.FollowCursorAlwaysScroll = alwaysScrollToolStripMenuItem.Checked; + } } private void ScrollToViewMenuItem_Click(object sender, EventArgs e) { - TasView1.ScrollMethod = Settings.FollowCursorScrollMethod = "near"; + foreach (InputRoll tasView in TasViews) + { + tasView.ScrollMethod = Settings.FollowCursorScrollMethod = "near"; + } } - private void ScrollToTopMenuItem_Click(object sender, EventArgs e) { - TasView1.ScrollMethod = Settings.FollowCursorScrollMethod = "top"; + foreach (InputRoll tasView in TasViews) + { + tasView.ScrollMethod = Settings.FollowCursorScrollMethod = "top"; + } } - private void ScrollToBottomMenuItem_Click(object sender, EventArgs e) { - TasView1.ScrollMethod = Settings.FollowCursorScrollMethod = "bottom"; + foreach (InputRoll tasView in TasViews) + { + tasView.ScrollMethod = Settings.FollowCursorScrollMethod = "bottom"; + } } - private void ScrollToCenterMenuItem_Click(object sender, EventArgs e) { - TasView1.ScrollMethod = Settings.FollowCursorScrollMethod = "center"; + foreach (InputRoll tasView in TasViews) + { + tasView.ScrollMethod = Settings.FollowCursorScrollMethod = "center"; + } } - private void DenoteStatesWithIconsToolStripMenuItem_Click(object sender, EventArgs e) { Settings.DenoteStatesWithIcons = DenoteStatesWithIconsToolStripMenuItem.Checked; @@ -1168,227 +1182,240 @@ private void WheelScrollSpeedMenuItem_Click(object sender, EventArgs e) InitialValue = TasView1.ScrollSpeed.ToString() }; if (!this.ShowDialogWithTempMute(inputPrompt).IsOk()) return; - TasView1.ScrollSpeed = int.Parse(inputPrompt.PromptText); + foreach (InputRoll tasView in TasViews) + { + tasView.ScrollSpeed = int.Parse(inputPrompt.PromptText); + } Settings.ScrollSpeed = TasView1.ScrollSpeed; } private void SetUpToolStripColumns() { - ColumnsSubMenu.DropDownItems.Clear(); + ColumnsSubMenu.DropDownItems.Clear(); - var columns = TasView1.AllColumns - .Where(static c => !string.IsNullOrWhiteSpace(c.Text) && c.Name is not "FrameColumn") - .ToList(); + var columns = TasView1.AllColumns + .Where(static c => !string.IsNullOrWhiteSpace(c.Text) && c.Name is not "FrameColumn") + .ToList(); - int workingHeight = Screen.FromControl(this).WorkingArea.Height; - int rowHeight = ColumnsSubMenu.Height + 4; - int maxRows = workingHeight / rowHeight; - int keyCount = columns.Count(c => c.Name.StartsWithOrdinal("Key ")); - int keysMenusCount = (int) Math.Ceiling((double) keyCount / maxRows); - - var keysMenus = new ToolStripMenuItem[keysMenusCount]; - - for (int i = 0; i < keysMenus.Length; i++) - { - keysMenus[i] = new ToolStripMenuItem(); - } + int workingHeight = Screen.FromControl(this).WorkingArea.Height; + int rowHeight = ColumnsSubMenu.Height + 4; + int maxRows = workingHeight / rowHeight; + int keyCount = columns.Count(c => c.Name.StartsWithOrdinal("Key ")); + int keysMenusCount = (int) Math.Ceiling((double) keyCount / maxRows); - var playerMenus = new ToolStripMenuItem[Emulator.ControllerDefinition.PlayerCount + 1]; - playerMenus[0] = ColumnsSubMenu; + var keysMenus = new ToolStripMenuItem[keysMenusCount]; - for (int i = 1; i < playerMenus.Length; i++) - { - playerMenus[i] = new ToolStripMenuItem($"Player {i}"); - } - - foreach (var column in columns) - { - var menuItem = new ToolStripMenuItem + for (int i = 0; i < keysMenus.Length; i++) { - Text = $"{column.Text} ({column.Name})", - Checked = column.Visible, - CheckOnClick = true, - Tag = column.Name - }; + keysMenus[i] = new ToolStripMenuItem(); + } - menuItem.CheckedChanged += (o, ev) => - { - ToolStripMenuItem sender = (ToolStripMenuItem) o; - TasView1.AllColumns.Find(c => c.Name == (string) sender.Tag).Visible = sender.Checked; - TasView1.AllColumns.ColumnsChanged(); - CurrentTasMovie.FlagChanges(); - TasView1.Refresh(); - ColumnsSubMenu.ShowDropDown(); - ((ToolStripMenuItem) sender.OwnerItem).ShowDropDown(); - }; - - if (column.Name.StartsWithOrdinal("Key ")) + var playerMenus = new ToolStripMenuItem[Emulator.ControllerDefinition.PlayerCount + 1]; + playerMenus[0] = ColumnsSubMenu; + + for (int i = 1; i < playerMenus.Length; i++) { - keysMenus - .First(m => m.DropDownItems.Count < maxRows) - .DropDownItems - .Add(menuItem); + playerMenus[i] = new ToolStripMenuItem($"Player {i}"); } - else + + foreach (var column in columns) { - int player; + var menuItem = new ToolStripMenuItem + { + Text = $"{column.Text} ({column.Name})", + Checked = column.Visible, + CheckOnClick = true, + Tag = column.Name + }; + + menuItem.CheckedChanged += (o, ev) => + { + ToolStripMenuItem sender = (ToolStripMenuItem) o; + TasView1.AllColumns.Find(c => c.Name == (string) sender.Tag).Visible = sender.Checked; + TasView1.AllColumns.ColumnsChanged(); + CurrentTasMovie.FlagChanges(); + TasView1.Refresh(); + ColumnsSubMenu.ShowDropDown(); + ((ToolStripMenuItem) sender.OwnerItem).ShowDropDown(); + }; - if (column.Name.Length >= 2 && column.Name.StartsWith('P') && char.IsNumber(column.Name, 1)) + if (column.Name.StartsWithOrdinal("Key ")) { - player = int.Parse(column.Name[1].ToString()); + keysMenus + .First(m => m.DropDownItems.Count < maxRows) + .DropDownItems + .Add(menuItem); } else { - player = 0; - } + int player; - playerMenus[player].DropDownItems.Add(menuItem); - } - } + if (column.Name.Length >= 2 && column.Name.StartsWith('P') && char.IsNumber(column.Name, 1)) + { + player = int.Parse(column.Name[1].ToString()); + } + else + { + player = 0; + } - foreach (var menu in keysMenus) - { - string text = $"Keys ({menu.DropDownItems[0].Tag} - {menu.DropDownItems[menu.DropDownItems.Count - 1].Tag})"; - menu.Text = text.Replace("Key ", ""); - ColumnsSubMenu.DropDownItems.Add(menu); - } + playerMenus[player].DropDownItems.Add(menuItem); + } + } - for (int i = 1; i < playerMenus.Length; i++) - { - if (playerMenus[i].HasDropDownItems) + foreach (var menu in keysMenus) { - ColumnsSubMenu.DropDownItems.Add(playerMenus[i]); + string text = $"Keys ({menu.DropDownItems[0].Tag} - {menu.DropDownItems[menu.DropDownItems.Count - 1].Tag})"; + menu.Text = text.Replace("Key ", ""); + ColumnsSubMenu.DropDownItems.Add(menu); } - } - for (int i = 1; i < playerMenus.Length; i++) - { - if (playerMenus[i].HasDropDownItems) + for (int i = 1; i < playerMenus.Length; i++) { - ColumnsSubMenu.DropDownItems.Add(new ToolStripSeparator()); - break; + if (playerMenus[i].HasDropDownItems) + { + ColumnsSubMenu.DropDownItems.Add(playerMenus[i]); + } } - } - if (keysMenus.Length > 0) - { - var item = new ToolStripMenuItem("Show Keys") + for (int i = 1; i < playerMenus.Length; i++) { - CheckOnClick = true, - Checked = false - }; + if (playerMenus[i].HasDropDownItems) + { + ColumnsSubMenu.DropDownItems.Add(new ToolStripSeparator()); + break; + } + } - foreach (var menu in keysMenus) + if (keysMenus.Length > 0) { - var dummyObject1 = menu; - item.CheckedChanged += (o, ev) => + var item = new ToolStripMenuItem("Show Keys") { - foreach (ToolStripMenuItem menuItem in dummyObject1.DropDownItems) + CheckOnClick = true, + Checked = false + }; + + foreach (var menu in keysMenus) + { + var dummyObject1 = menu; + item.CheckedChanged += (o, ev) => { - menuItem.Checked = !menuItem.Checked; - } + foreach (ToolStripMenuItem menuItem in dummyObject1.DropDownItems) + { + menuItem.Checked = !menuItem.Checked; + } - CurrentTasMovie.FlagChanges(); - TasView1.AllColumns.ColumnsChanged(); - TasView1.Refresh(); - }; + CurrentTasMovie.FlagChanges(); + TasView1.AllColumns.ColumnsChanged(); + TasView1.Refresh(); + }; - ColumnsSubMenu.DropDownItems.Add(item); + ColumnsSubMenu.DropDownItems.Add(item); + } } - } - for (int i = 1; i < playerMenus.Length; i++) - { - if (playerMenus[i].HasDropDownItems) + for (int i = 1; i < playerMenus.Length; i++) { - var item = new ToolStripMenuItem($"Show Player {i}") + if (playerMenus[i].HasDropDownItems) { - CheckOnClick = true, - Checked = playerMenus[i].DropDownItems.OfType().Any(mi => mi.Checked) - }; + var item = new ToolStripMenuItem($"Show Player {i}") + { + CheckOnClick = true, + Checked = playerMenus[i].DropDownItems.OfType().Any(mi => mi.Checked) + }; - ToolStripMenuItem dummyObject = playerMenus[i]; - item.CheckedChanged += (o, ev) => - { - // TODO: preserve underlying button checked state and make this a master visibility control - foreach (ToolStripMenuItem menuItem in dummyObject.DropDownItems) + ToolStripMenuItem dummyObject = playerMenus[i]; + item.CheckedChanged += (o, ev) => { - menuItem.Checked = item.Checked; - } - dummyObject.Visible = item.Checked; + // TODO: preserve underlying button checked state and make this a master visibility control + foreach (ToolStripMenuItem menuItem in dummyObject.DropDownItems) + { + menuItem.Checked = item.Checked; + } + dummyObject.Visible = item.Checked; - CurrentTasMovie.FlagChanges(); - TasView1.AllColumns.ColumnsChanged(); - TasView1.Refresh(); - }; + CurrentTasMovie.FlagChanges(); + TasView1.AllColumns.ColumnsChanged(); + TasView1.Refresh(); + }; - ColumnsSubMenu.DropDownItems.Add(item); + ColumnsSubMenu.DropDownItems.Add(item); + } } } - } - + // ReSharper disable once UnusedMember.Local [RestoreDefaults] private void RestoreDefaults() { SetUpColumns(); SetUpToolStripColumns(); - TasView1.Refresh(); + foreach (InputRoll tasView in TasViews) + { + tasView.Refresh(); + } CurrentTasMovie.FlagChanges(); - MainVertialSplit.SplitterDistance = _defaultMainSplitDistance; BranchesMarkersSplit.SplitterDistance = _defaultBranchMarkerSplitDistance; } private void RightClickMenu_Opened(object sender, EventArgs e) { - SetMarkersContextMenuItem.Enabled = - SelectBetweenMarkersContextMenuItem.Enabled = - RemoveMarkersContextMenuItem.Enabled = - DeselectContextMenuItem.Enabled = - ClearContextMenuItem.Enabled = - DeleteFramesContextMenuItem.Enabled = - CloneContextMenuItem.Enabled = - CloneXTimesContextMenuItem.Enabled = - InsertFrameContextMenuItem.Enabled = - InsertNumFramesContextMenuItem.Enabled = - TruncateContextMenuItem.Enabled = - TasView1.AnyRowsSelected; - - pasteToolStripMenuItem.Enabled = - pasteInsertToolStripMenuItem.Enabled = - (Clipboard.GetDataObject()?.GetDataPresent(DataFormats.StringFormat) ?? false) - && TasView1.AnyRowsSelected; - - var selectionIsSingleRow = TasView1.SelectedRows.CountIsExactly(1); - StartNewProjectFromNowMenuItem.Visible = - selectionIsSingleRow - && TasView1.IsRowSelected(Emulator.Frame) - && !CurrentTasMovie.StartsFromSaveRam; - - StartANewProjectFromSaveRamMenuItem.Visible = - selectionIsSingleRow - && SaveRamEmulator != null - && !CurrentTasMovie.StartsFromSavestate; - - StartFromNowSeparator.Visible = StartNewProjectFromNowMenuItem.Visible || StartANewProjectFromSaveRamMenuItem.Visible; - RemoveMarkersContextMenuItem.Enabled = CurrentTasMovie.Markers.Any(m => TasView1.IsRowSelected(m.Frame)); // Disable the option to remove markers if no markers are selected (FCEUX does this). - CancelSeekContextMenuItem.Enabled = MainForm.PauseOnFrame.HasValue; - BranchContextMenuItem.Visible = TasView1.CurrentCell?.RowIndex == Emulator.Frame; - - SelectBetweenMarkersContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Sel. bet. Markers"]; - ClearContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clear Frames"]; - DeleteFramesContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Delete Frames"]; - InsertFrameContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Insert Frame"]; - InsertNumFramesContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Insert # Frames"]; - CloneContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clone Frames"]; - CloneXTimesContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clone # Times"]; - } - + //foreach (InputRoll tasView in TasViews) + //{ + if (TasView1.Focused && TasView1.AnyRowsSelected) + { + SetMarkersContextMenuItem.Enabled = + SelectBetweenMarkersContextMenuItem.Enabled = + RemoveMarkersContextMenuItem.Enabled = + DeselectContextMenuItem.Enabled = + ClearContextMenuItem.Enabled = + DeleteFramesContextMenuItem.Enabled = + CloneContextMenuItem.Enabled = + CloneXTimesContextMenuItem.Enabled = + InsertFrameContextMenuItem.Enabled = + InsertNumFramesContextMenuItem.Enabled = + TruncateContextMenuItem.Enabled = + TasView1.AnyRowsSelected; + + pasteToolStripMenuItem.Enabled = + pasteInsertToolStripMenuItem.Enabled = + (Clipboard.GetDataObject()?.GetDataPresent(DataFormats.StringFormat) ?? false) + && TasView1.AnyRowsSelected; + + var selectionIsSingleRow = TasView1.SelectedRows.CountIsExactly(1); + StartNewProjectFromNowMenuItem.Visible = + selectionIsSingleRow + && TasView1.IsRowSelected(Emulator.Frame) + && !CurrentTasMovie.StartsFromSaveRam; + + StartANewProjectFromSaveRamMenuItem.Visible = + selectionIsSingleRow + && SaveRamEmulator != null + && !CurrentTasMovie.StartsFromSavestate; + + StartFromNowSeparator.Visible = StartNewProjectFromNowMenuItem.Visible || StartANewProjectFromSaveRamMenuItem.Visible; + RemoveMarkersContextMenuItem.Enabled = CurrentTasMovie.Markers.Any(m => TasView1.IsRowSelected(m.Frame)); // Disable the option to remove markers if no markers are selected (FCEUX does this). + CancelSeekContextMenuItem.Enabled = MainForm.PauseOnFrame.HasValue; + BranchContextMenuItem.Visible = TasView1.CurrentCell?.RowIndex == Emulator.Frame; + + SelectBetweenMarkersContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Sel. bet. Markers"]; + ClearContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clear Frames"]; + DeleteFramesContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Delete Frames"]; + InsertFrameContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Insert Frame"]; + InsertNumFramesContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Insert # Frames"]; + CloneContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clone Frames"]; + CloneXTimesContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clone # Times"]; + } + } + private void CancelSeekContextMenuItem_Click(object sender, EventArgs e) { MainForm.PauseOnFrame = null; - TasView1.Refresh(); + foreach (InputRoll tasView in TasViews) + { + tasView.Refresh(); + } } private void BranchContextMenuItem_Click(object sender, EventArgs e) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 91c5d42572b..1f776691084 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -178,7 +178,9 @@ public TAStudioMPR() TasView2.InputPaintingMode = true; TasView2.LetKeysModifySelection = true; TasView2.Rotatable = true; + TasView2.ScrollMethod = "near"; TasView2.ScrollSpeed = 1; + TasView2.QueryItemText += TasView_QueryItemText; TasView2.QueryItemBkColor += TasView_QueryItemBkColor; @@ -212,20 +214,14 @@ public TAStudioMPR() } }; TasViews.Add(TasView2); - //} - - + LastPositionFrame = -1; BookMarkControlMPR.LoadedCallback = BranchLoaded; BookMarkControlMPR.SavedCallback = BranchSaved; BookMarkControlMPR.RemovedCallback = BranchRemoved; - - } - //private void TasView2_RightMouseScrolled(object sender, MouseEventArgs e) => throw new NotImplementedException(); - private void Tastudio_Load(object sender, EventArgs e) { foreach (InputRoll tasView in TasViews) From 16b39471be453ac247b796bc5e376b6d52b29645 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Thu, 6 Feb 2025 04:06:30 -0500 Subject: [PATCH 11/65] Fixed Clear() --- .../tools/TAStudioMPR/TAStudioMPR.MenuItems.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index ded5b48e6e3..be87496046a 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -569,7 +569,7 @@ private void ClearFramesMenuItem_Click(object sender, EventArgs e) var rollBackFrame = TasView1.SelectionStartIndex ?? 0; CurrentTasMovie.ChangeLog.BeginNewBatch($"Clear frames {TasView1.SelectionStartIndex}-{TasView1.SelectionEndIndex}"); - foreach (int frame in TasView1.SelectedRows) + foreach (int frame in tasView.SelectedRows) { CurrentTasMovie.ClearFrame(frame); } From 7c905c7cf2561f22a91d622c54849f7240bffef0 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Thu, 6 Feb 2025 04:26:06 -0500 Subject: [PATCH 12/65] Fixed scrolling needed a foreach tasview in a navigation partial class --- .../tools/TAStudioMPR/TAStudioMPR.Navigation.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Navigation.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Navigation.cs index 60b21ad09a7..10af4ecc31c 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Navigation.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Navigation.cs @@ -101,8 +101,11 @@ public void SetVisibleFrame(int? frame = null) { return; } - - TasView1.ScrollToIndex(frame ?? Emulator.Frame); + foreach(InputRoll tasView in TasViews) + { + tasView.ScrollToIndex(frame ?? Emulator.Frame); + } + } private void MaybeFollowCursor() From 62c280cab3397f72a98f126263a2af253a7b9d21 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Fri, 7 Feb 2025 23:01:40 -0500 Subject: [PATCH 13/65] Splitting inputs to two tasviews mostly works Two tasviews are actually working and savable but not loadable third is not visible? --- .../tools/TAStudioMPR/TAStudioMPR.Designer.cs | 6 +- .../tools/TAStudioMPR/TAStudioMPR.cs | 316 ++++++++++++++++-- 2 files changed, 294 insertions(+), 28 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs index 317fd354d77..a2b6601049f 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs @@ -881,9 +881,8 @@ private void InitializeComponent() this.TasView1.AllowMassNavigationShortcuts = false; this.TasView1.AllowRightClickSelection = false; this.TasView1.AlwaysScroll = false; - this.TasView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); + this.TasView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left))); this.TasView1.CellHeightPadding = 0; this.TasView1.ChangeSelectionWhenPaging = false; this.TasView1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); @@ -1152,6 +1151,7 @@ private void InitializeComponent() // // MainVertialSplit.Panel1 // + this.MainVertialSplit.Panel1.AutoScroll = true; this.MainVertialSplit.Panel1.Controls.Add(this.TasView1); // // MainVertialSplit.Panel2 diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 1f776691084..efe5c0171d6 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -142,6 +142,118 @@ public TAStudioMPR() + //TasView1.QueryItemText += TasView_QueryItemText; + //TasView1.QueryItemBkColor += TasView_QueryItemBkColor; + //TasView1.QueryRowBkColor += TasView_QueryRowBkColor; + //TasView1.QueryItemIcon += TasView_QueryItemIcon; + //TasView1.QueryFrameLag += TasView_QueryFrameLag; + //TasView1.PointedCellChanged += TasView_PointedCellChanged; + //TasView1.MouseLeave += TAStudio_MouseLeave; + //TasView1.CellHovered += (_, e) => + //{ + // if (e.NewCell.RowIndex is null) + // { + // toolTip1.Show(e.NewCell.Column!.Name, TasView1, PointToClient(Cursor.Position)); + // } + //}; + //TasViews.Add(TasView1); + + + ////get number of controllers MnemonicMapPlayerController + + + + + //try + //{ + // //var tasViewCount = MovieSession.MovieController.Definition.ControlsOrdered.Count; + + //} + //catch (Exception) + //{ + + // throw; + //} + + + ////foreach (InputRoll tasView in TasViews) + ////{ + //InputRoll TasView2 = new InputRoll(); + //TasView2.Name = "TasView2"; + //TasView2.Parent = MainVertialSplit.Panel1; + //TasView2.Width = 300; + //TasView2.Height = 550; + //TasView2.Location = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); + //TasView2.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + //| System.Windows.Forms.AnchorStyles.Left) + //| System.Windows.Forms.AnchorStyles.Right); + + //TasView2.CellHeightPadding = 0; + //TasView2.ChangeSelectionWhenPaging = false; + //TasView2.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0))); + //TasView2.FullRowSelect = true; + //TasView2.InputPaintingMode = true; + //TasView2.LetKeysModifySelection = true; + //TasView2.Rotatable = true; + //TasView2.ScrollMethod = "near"; + //TasView2.ScrollSpeed = 1; + + + //TasView2.QueryItemText += TasView_QueryItemText; + //TasView2.QueryItemBkColor += TasView_QueryItemBkColor; + //TasView2.QueryRowBkColor += TasView_QueryRowBkColor; + //TasView2.QueryItemIcon += TasView_QueryItemIcon; + //TasView2.QueryFrameLag += TasView_QueryFrameLag; + //TasView2.PointedCellChanged += TasView_PointedCellChanged; + //TasView2.MouseLeave += TAStudio_MouseLeave; + + + //TasView2.CellDropped += TasView_CellDropped; + //TasView2.ColumnClick += TasView_ColumnClick; + //TasView2.ColumnReordered += TasView_ColumnReordered; + //TasView2.ColumnRightClick += TasView_ColumnRightClick; + //TasView2.KeyDown += TasView_KeyDown; + //TasView2.MouseDoubleClick += TasView_MouseDoubleClick; + //TasView2.MouseDown += TasView_MouseDown; + //TasView2.MouseEnter += TasView_MouseEnter; + //TasView2.MouseMove += TasView_MouseMove; + //TasView2.MouseUp += TasView_MouseUp; + //TasView2.RightMouseScrolled += TasView_MouseWheel; + //TasView2.SelectedIndexChanged += TasView_SelectedIndexChanged; + + + + //TasView2.CellHovered += (_, e) => + //{ + // if (e.NewCell.RowIndex is null) + // { + // toolTip1.Show(e.NewCell.Column!.Name, TasView2, PointToClient(Cursor.Position)); + // } + //}; + //TasViews.Add(TasView2); + + LastPositionFrame = -1; + + BookMarkControlMPR.LoadedCallback = BranchLoaded; + BookMarkControlMPR.SavedCallback = BranchSaved; + BookMarkControlMPR.RemovedCallback = BranchRemoved; + } + + private void Tastudio_Load(object sender, EventArgs e) + { + var controlsOrderedCount = 1; + var players = 1; + try + { + players = this.Emulator.ControllerDefinition.PlayerCount; + controlsOrderedCount = this.Emulator.ControllerDefinition.ControlsOrdered.Count; + } + catch (Exception) + { + + //throw; + } + TasView1.QueryItemText += TasView_QueryItemText; TasView1.QueryItemBkColor += TasView_QueryItemBkColor; TasView1.QueryRowBkColor += TasView_QueryRowBkColor; @@ -159,6 +271,11 @@ public TAStudioMPR() TasViews.Add(TasView1); + //get number of controllers MnemonicMapPlayerController + + + + //foreach (InputRoll tasView in TasViews) //{ InputRoll TasView2 = new InputRoll(); @@ -180,7 +297,7 @@ public TAStudioMPR() TasView2.Rotatable = true; TasView2.ScrollMethod = "near"; TasView2.ScrollSpeed = 1; - + TasView2.QueryItemText += TasView_QueryItemText; TasView2.QueryItemBkColor += TasView_QueryItemBkColor; @@ -204,8 +321,6 @@ public TAStudioMPR() TasView2.RightMouseScrolled += TasView_MouseWheel; TasView2.SelectedIndexChanged += TasView_SelectedIndexChanged; - - TasView2.CellHovered += (_, e) => { if (e.NewCell.RowIndex is null) @@ -214,27 +329,71 @@ public TAStudioMPR() } }; TasViews.Add(TasView2); - - LastPositionFrame = -1; - BookMarkControlMPR.LoadedCallback = BranchLoaded; - BookMarkControlMPR.SavedCallback = BranchSaved; - BookMarkControlMPR.RemovedCallback = BranchRemoved; - } + InputRoll TasView3 = new InputRoll(); + TasView3.Name = "TasView3"; + TasView3.Parent = MainVertialSplit.Panel1; + TasView3.Width = 300; + TasView3.Height = 550; + TasView3.Location = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); + TasView3.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right); - private void Tastudio_Load(object sender, EventArgs e) - { - foreach (InputRoll tasView in TasViews) + TasView3.CellHeightPadding = 0; + TasView3.ChangeSelectionWhenPaging = false; + TasView3.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0))); + TasView3.FullRowSelect = true; + TasView3.InputPaintingMode = true; + TasView3.LetKeysModifySelection = true; + TasView3.Rotatable = true; + TasView3.ScrollMethod = "near"; + TasView3.ScrollSpeed = 1; + + + TasView3.QueryItemText += TasView_QueryItemText; + TasView3.QueryItemBkColor += TasView_QueryItemBkColor; + TasView3.QueryRowBkColor += TasView_QueryRowBkColor; + TasView3.QueryItemIcon += TasView_QueryItemIcon; + TasView3.QueryFrameLag += TasView_QueryFrameLag; + TasView3.PointedCellChanged += TasView_PointedCellChanged; + TasView3.MouseLeave += TAStudio_MouseLeave; + + + TasView3.CellDropped += TasView_CellDropped; + TasView3.ColumnClick += TasView_ColumnClick; + TasView3.ColumnReordered += TasView_ColumnReordered; + TasView3.ColumnRightClick += TasView_ColumnRightClick; + TasView3.KeyDown += TasView_KeyDown; + TasView3.MouseDoubleClick += TasView_MouseDoubleClick; + TasView3.MouseDown += TasView_MouseDown; + TasView3.MouseEnter += TasView_MouseEnter; + TasView3.MouseMove += TasView_MouseMove; + TasView3.MouseUp += TasView_MouseUp; + TasView3.RightMouseScrolled += TasView_MouseWheel; + TasView3.SelectedIndexChanged += TasView_SelectedIndexChanged; + + TasView3.CellHovered += (_, e) => { - if (!Engage()) + if (e.NewCell.RowIndex is null) { - Close(); - return; + toolTip1.Show(e.NewCell.Column!.Name, TasView3, PointToClient(Cursor.Position)); } + }; + TasViews.Add(TasView3); - if (tasView.Rotatable) + if (!Engage()) + { + Close(); + return; + } + + for (int i = 0; i < TasViews.Count; i++) + { + + if (TasViews[i].Rotatable) { - RightClickMenu.Items.AddRange(tasView.GenerateContextMenuItems() + RightClickMenu.Items.AddRange(TasViews[i].GenerateContextMenuItems() .ToArray()); RightClickMenu.Items @@ -243,9 +402,9 @@ private void Tastudio_Load(object sender, EventArgs e) .Click += (o, ov) => { CurrentTasMovie.FlagChanges(); }; } - tasView.ScrollSpeed = Settings.ScrollSpeed; - tasView.AlwaysScroll = Settings.FollowCursorAlwaysScroll; - tasView.ScrollMethod = Settings.FollowCursorScrollMethod; + TasViews[i].ScrollSpeed = Settings.ScrollSpeed; + TasViews[i].AlwaysScroll = Settings.FollowCursorAlwaysScroll; + TasViews[i].ScrollMethod = Settings.FollowCursorScrollMethod; _autosaveTimer = new Timer(components); _autosaveTimer.Tick += AutosaveTimerEventProcessor; @@ -263,7 +422,7 @@ private void Tastudio_Load(object sender, EventArgs e) Settings.BranchMarkerSplitDistance, _defaultBranchMarkerSplitDistance); - tasView.Font = TasViewFont; + TasViews[i].Font = TasViewFont; RefreshDialog(); _initialized = true; } @@ -274,7 +433,7 @@ private bool LoadMostRecentOrStartNew() return LoadFileWithFallback(Settings.RecentTas.MostRecent); } - private bool Engage() + private bool Engage(int viewIndex = 0) { _engaged = false; MainForm.PauseOnFrame = null; @@ -468,6 +627,84 @@ private void SetUpColumns() tasView.AllColumns.ColumnsChanged(); } } + private void SetUpColumnsPerControl(int viewIndex) + { + InputRoll tasView = TasViews[viewIndex]; + tasView.AllColumns.Clear(); + tasView.AllColumns.Add(new(name: CursorColumnName, widthUnscaled: 18, type: ColumnType.Boolean, text: string.Empty)); + tasView.AllColumns.Add(new(name: FrameColumnName, widthUnscaled: 60, text: "Frame#") + { + Rotatable = true, + }); + + //MovieSession.MovieController.Definition.ControlsOrdered + //var controls = MnemonicMap().ToArray()[viewIndex]; + + //viewIndex here is the same as the control group index + foreach ((string name, string mnemonic0, int maxLength) in MnemonicMapPlayerController(viewIndex)) + { + var mnemonic = Emulator.SystemId is VSystemID.Raw.N64 && N64CButtonSuffixes.Any(name.EndsWithOrdinal) + ? $"c{mnemonic0.ToUpperInvariant()}" // prepend 'c' to differentiate from L/R buttons -- this only affects the column headers + : mnemonic0; + + var type = ControllerType.Axes.ContainsKey(name) ? ColumnType.Axis : ColumnType.Boolean; + + tasView.AllColumns.Add(new( + name: name, + widthUnscaled: (maxLength * 6) + 14, // magic numbers reused in EditBranchTextPopUp() --feos // not since eb63fa5a9 (before 2.3.3) --yoshi + type: type, + text: mnemonic)); + } + + var columnsToHide = tasView.AllColumns + .Where(c => + // todo: make a proper user editable list? + c.Name == "Power" + || c.Name == "Reset" + || c.Name == "Light Sensor" + || c.Name == "Disc Select" + || c.Name == "Disk Index" + || c.Name == "Next Drive" + || c.Name == "Next Slot" + || c.Name == "Insert Disk" + || c.Name == "Eject Disk" + || c.Name.StartsWithOrdinal("Tilt") + || c.Name.StartsWithOrdinal("Key ") + || c.Name.StartsWithOrdinal("Open") + || c.Name.StartsWithOrdinal("Close") + || c.Name.EndsWithOrdinal("Tape") + || c.Name.EndsWithOrdinal("Disk") + || c.Name.EndsWithOrdinal("Block") + || c.Name.EndsWithOrdinal("Status")); + + if (Emulator.SystemId is VSystemID.Raw.N64) + { + var fakeAnalogControls = tasView.AllColumns + .Where(c => + c.Name.EndsWithOrdinal("A Up") + || c.Name.EndsWithOrdinal("A Down") + || c.Name.EndsWithOrdinal("A Left") + || c.Name.EndsWithOrdinal("A Right")); + + columnsToHide = columnsToHide.Concat(fakeAnalogControls); + } + + foreach (var column in columnsToHide) + { + column.Visible = false; + } + + foreach (var column in tasView.VisibleColumns) + { + if (InputManager.StickyHoldController.IsSticky(column.Name) || InputManager.StickyAutofireController.IsSticky(column.Name)) + { + column.Emphasis = true; + } + } + + tasView.AllColumns.ColumnsChanged(); + + } private void SetupCustomPatterns() { // custom autofire patterns to allow configuring a unique pattern for each button or axis @@ -582,7 +819,7 @@ private bool LoadMovie(ITasMovie tasMovie, bool startsFromSavestate = false, int return true; } - private bool StartNewTasMovie() + private bool StartNewTasMovie(int viewIndex = 0) { if (!AskSaveChanges()) { @@ -595,7 +832,7 @@ private bool StartNewTasMovie() var tasMovie = (ITasMovie) MovieSession.Get(filename); tasMovie.Author = Config.DefaultAuthor; - bool success = StartNewMovieWrapper(tasMovie, isNew: true); + bool success = StartNewMovieWrapper(tasMovie, isNew: true); //here controllers are set in MovieController if (success) { @@ -642,7 +879,10 @@ private bool StartNewMovieWrapper(ITasMovie movie, bool isNew) } else { - SetUpColumns(); + for (int i = 0; i < TasViews.Count; i++) + { + SetUpColumnsPerControl(i); + } } SetUpToolStripColumns(); SetupCustomPatterns(); @@ -1382,6 +1622,32 @@ private IMovieController ControllerFromMnemonicStr(string inputLogEntry) } } + + private IEnumerable<(string Name, string Mnemonic, int MaxLength)> MnemonicMapPlayerController(int viewIndex) + { + if (MovieSession.MovieController.Definition.MnemonicsCache is null) + throw new InvalidOperationException("Can't build mnemonic map with empty mnemonics cache"); + + var playerControls = MovieSession.MovieController.Definition.ControlsOrdered[viewIndex]; + + //foreach (var playerControls in MovieSession.MovieController.Definition.ControlsOrdered) + //{ + foreach ((string name, AxisSpec? axisSpec) in playerControls) + { + if (axisSpec.HasValue) + { + string mnemonic = Bk2MnemonicLookup.LookupAxis(name, MovieSession.Movie.SystemID); + yield return (name, mnemonic, Math.Max(mnemonic.Length, axisSpec.Value.MaxDigits)); + } + else + { + yield return (name, MovieSession.MovieController.Definition.MnemonicsCache[name].ToString(), 1); + } + } + //} + } + + private void TasView1_Enter(object sender, EventArgs e) { var a = TasView1.Focused; From 2b1a03389ce818860e2a1d2a047b92ea28833c30 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Fri, 7 Feb 2025 23:40:45 -0500 Subject: [PATCH 14/65] fixed third tasview No anchor right, incorrect start location. --- .../tools/TAStudioMPR/TAStudioMPR.cs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index efe5c0171d6..1ed73ee4345 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -284,9 +284,8 @@ private void Tastudio_Load(object sender, EventArgs e) TasView2.Width = 300; TasView2.Height = 550; TasView2.Location = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); - TasView2.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right); + TasView2.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left); TasView2.CellHeightPadding = 0; TasView2.ChangeSelectionWhenPaging = false; @@ -335,10 +334,9 @@ private void Tastudio_Load(object sender, EventArgs e) TasView3.Parent = MainVertialSplit.Panel1; TasView3.Width = 300; TasView3.Height = 550; - TasView3.Location = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); - TasView3.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right); + TasView3.Location = new System.Drawing.Point(TasView2.Location.X + TasView2.Width + 10, 20); + TasView3.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left); TasView3.CellHeightPadding = 0; TasView3.ChangeSelectionWhenPaging = false; From a862d2c4a0a74e101798d3d6cbed9b3a3b8c6423 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sat, 8 Feb 2025 00:19:40 -0500 Subject: [PATCH 15/65] Fixed Load load now splits the inputs into the input rolls correctly --- .../tools/TAStudioMPR/TAStudioMPR.Designer.cs | 2 +- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 10 ++-- .../tools/TAStudioMPR/TAStudioMPR.cs | 47 +++++++++---------- 3 files changed, 29 insertions(+), 30 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs index a2b6601049f..0cf39de13a7 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs @@ -895,7 +895,7 @@ private void InitializeComponent() this.TasView1.Rotatable = true; this.TasView1.RowCount = 0; this.TasView1.ScrollSpeed = 1; - this.TasView1.Size = new System.Drawing.Size(300, 550); + this.TasView1.Size = new System.Drawing.Size(250, 550); this.TasView1.TabIndex = 1; this.TasView1.ColumnClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnClick); this.TasView1.ColumnRightClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnRightClick); diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index be87496046a..09bf048b033 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -1346,13 +1346,13 @@ private void SetUpToolStripColumns() // ReSharper disable once UnusedMember.Local [RestoreDefaults] - private void RestoreDefaults() - { - SetUpColumns(); + private void RestoreDefaults() //changed top three function order. test for bugs + { SetUpToolStripColumns(); - foreach (InputRoll tasView in TasViews) + for(int i=0; i < TasViews.Count;i++) { - tasView.Refresh(); + SetUpColumnsPerControl(i); + TasViews[i].Refresh(); } CurrentTasMovie.FlagChanges(); MainVertialSplit.SplitterDistance = _defaultMainSplitDistance; diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 1ed73ee4345..5bf03f7608b 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -241,18 +241,6 @@ public TAStudioMPR() private void Tastudio_Load(object sender, EventArgs e) { - var controlsOrderedCount = 1; - var players = 1; - try - { - players = this.Emulator.ControllerDefinition.PlayerCount; - controlsOrderedCount = this.Emulator.ControllerDefinition.ControlsOrdered.Count; - } - catch (Exception) - { - - //throw; - } TasView1.QueryItemText += TasView_QueryItemText; TasView1.QueryItemBkColor += TasView_QueryItemBkColor; @@ -385,20 +373,22 @@ private void Tastudio_Load(object sender, EventArgs e) Close(); return; } + + if (TasViews[1].Rotatable) + { + RightClickMenu.Items.AddRange(TasViews[1].GenerateContextMenuItems() + .ToArray()); + + RightClickMenu.Items + .OfType() + .First(t => t.Name == "RotateMenuItem") + .Click += (o, ov) => { CurrentTasMovie.FlagChanges(); }; + } for (int i = 0; i < TasViews.Count; i++) - { + { - if (TasViews[i].Rotatable) - { - RightClickMenu.Items.AddRange(TasViews[i].GenerateContextMenuItems() - .ToArray()); - RightClickMenu.Items - .OfType() - .First(t => t.Name == "RotateMenuItem") - .Click += (o, ov) => { CurrentTasMovie.FlagChanges(); }; - } TasViews[i].ScrollSpeed = Settings.ScrollSpeed; TasViews[i].AlwaysScroll = Settings.FollowCursorAlwaysScroll; @@ -868,11 +858,20 @@ private bool StartNewMovieWrapper(ITasMovie movie, bool isNew) MarkerControlMPR.UpdateTextColumnWidth(); TastudioPlayMode(); UpdateWindowTitle(); + + if (CurrentTasMovie.InputRollSettings != null) { - foreach (InputRoll tasView in TasViews) + //loads the same settings for all views + //foreach (InputRoll tasView in TasViews) + //{ + //TasViews[1].LoadSettingsSerialized(CurrentTasMovie.InputRollSettings); + //} + + for (int i = 0; i < TasViews.Count; i++) { - tasView.LoadSettingsSerialized(CurrentTasMovie.InputRollSettings); + TasViews[i].LoadSettingsSerialized(CurrentTasMovie.InputRollSettings); //not sure if this is necessary with multiple InputRolls + SetUpColumnsPerControl(i); } } else From d85a58081bbb84363d0ac5c01f04a0813507191d Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sat, 8 Feb 2025 00:32:39 -0500 Subject: [PATCH 16/65] Some slight cleanup slight cleanup --- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 2 - .../tools/TAStudioMPR/TAStudioMPR.cs | 250 ++++++------------ 2 files changed, 77 insertions(+), 175 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 09bf048b033..6bb96618c6d 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -1361,8 +1361,6 @@ private void SetUpToolStripColumns() private void RightClickMenu_Opened(object sender, EventArgs e) { - //foreach (InputRoll tasView in TasViews) - //{ if (TasView1.Focused && TasView1.AnyRowsSelected) { SetMarkersContextMenuItem.Enabled = diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 5bf03f7608b..e92f90191a8 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -140,98 +140,6 @@ public TAStudioMPR() MarkerControlMPR.TastudioMPR = this; BookMarkControlMPR.TastudioMPR = this; - - - //TasView1.QueryItemText += TasView_QueryItemText; - //TasView1.QueryItemBkColor += TasView_QueryItemBkColor; - //TasView1.QueryRowBkColor += TasView_QueryRowBkColor; - //TasView1.QueryItemIcon += TasView_QueryItemIcon; - //TasView1.QueryFrameLag += TasView_QueryFrameLag; - //TasView1.PointedCellChanged += TasView_PointedCellChanged; - //TasView1.MouseLeave += TAStudio_MouseLeave; - //TasView1.CellHovered += (_, e) => - //{ - // if (e.NewCell.RowIndex is null) - // { - // toolTip1.Show(e.NewCell.Column!.Name, TasView1, PointToClient(Cursor.Position)); - // } - //}; - //TasViews.Add(TasView1); - - - ////get number of controllers MnemonicMapPlayerController - - - - - //try - //{ - // //var tasViewCount = MovieSession.MovieController.Definition.ControlsOrdered.Count; - - //} - //catch (Exception) - //{ - - // throw; - //} - - - ////foreach (InputRoll tasView in TasViews) - ////{ - //InputRoll TasView2 = new InputRoll(); - //TasView2.Name = "TasView2"; - //TasView2.Parent = MainVertialSplit.Panel1; - //TasView2.Width = 300; - //TasView2.Height = 550; - //TasView2.Location = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); - //TasView2.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - //| System.Windows.Forms.AnchorStyles.Left) - //| System.Windows.Forms.AnchorStyles.Right); - - //TasView2.CellHeightPadding = 0; - //TasView2.ChangeSelectionWhenPaging = false; - //TasView2.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0))); - //TasView2.FullRowSelect = true; - //TasView2.InputPaintingMode = true; - //TasView2.LetKeysModifySelection = true; - //TasView2.Rotatable = true; - //TasView2.ScrollMethod = "near"; - //TasView2.ScrollSpeed = 1; - - - //TasView2.QueryItemText += TasView_QueryItemText; - //TasView2.QueryItemBkColor += TasView_QueryItemBkColor; - //TasView2.QueryRowBkColor += TasView_QueryRowBkColor; - //TasView2.QueryItemIcon += TasView_QueryItemIcon; - //TasView2.QueryFrameLag += TasView_QueryFrameLag; - //TasView2.PointedCellChanged += TasView_PointedCellChanged; - //TasView2.MouseLeave += TAStudio_MouseLeave; - - - //TasView2.CellDropped += TasView_CellDropped; - //TasView2.ColumnClick += TasView_ColumnClick; - //TasView2.ColumnReordered += TasView_ColumnReordered; - //TasView2.ColumnRightClick += TasView_ColumnRightClick; - //TasView2.KeyDown += TasView_KeyDown; - //TasView2.MouseDoubleClick += TasView_MouseDoubleClick; - //TasView2.MouseDown += TasView_MouseDown; - //TasView2.MouseEnter += TasView_MouseEnter; - //TasView2.MouseMove += TasView_MouseMove; - //TasView2.MouseUp += TasView_MouseUp; - //TasView2.RightMouseScrolled += TasView_MouseWheel; - //TasView2.SelectedIndexChanged += TasView_SelectedIndexChanged; - - - - //TasView2.CellHovered += (_, e) => - //{ - // if (e.NewCell.RowIndex is null) - // { - // toolTip1.Show(e.NewCell.Column!.Name, TasView2, PointToClient(Cursor.Position)); - // } - //}; - //TasViews.Add(TasView2); - LastPositionFrame = -1; BookMarkControlMPR.LoadedCallback = BranchLoaded; @@ -269,7 +177,7 @@ private void Tastudio_Load(object sender, EventArgs e) InputRoll TasView2 = new InputRoll(); TasView2.Name = "TasView2"; TasView2.Parent = MainVertialSplit.Panel1; - TasView2.Width = 300; + TasView2.Width = 250; TasView2.Height = 550; TasView2.Location = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); TasView2.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) @@ -285,7 +193,6 @@ private void Tastudio_Load(object sender, EventArgs e) TasView2.ScrollMethod = "near"; TasView2.ScrollSpeed = 1; - TasView2.QueryItemText += TasView_QueryItemText; TasView2.QueryItemBkColor += TasView_QueryItemBkColor; TasView2.QueryRowBkColor += TasView_QueryRowBkColor; @@ -294,7 +201,6 @@ private void Tastudio_Load(object sender, EventArgs e) TasView2.PointedCellChanged += TasView_PointedCellChanged; TasView2.MouseLeave += TAStudio_MouseLeave; - TasView2.CellDropped += TasView_CellDropped; TasView2.ColumnClick += TasView_ColumnClick; TasView2.ColumnReordered += TasView_ColumnReordered; @@ -320,7 +226,7 @@ private void Tastudio_Load(object sender, EventArgs e) InputRoll TasView3 = new InputRoll(); TasView3.Name = "TasView3"; TasView3.Parent = MainVertialSplit.Panel1; - TasView3.Width = 300; + TasView3.Width = 250; TasView3.Height = 550; TasView3.Location = new System.Drawing.Point(TasView2.Location.X + TasView2.Width + 10, 20); TasView3.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) @@ -336,7 +242,6 @@ private void Tastudio_Load(object sender, EventArgs e) TasView3.ScrollMethod = "near"; TasView3.ScrollSpeed = 1; - TasView3.QueryItemText += TasView_QueryItemText; TasView3.QueryItemBkColor += TasView_QueryItemBkColor; TasView3.QueryRowBkColor += TasView_QueryRowBkColor; @@ -345,7 +250,6 @@ private void Tastudio_Load(object sender, EventArgs e) TasView3.PointedCellChanged += TasView_PointedCellChanged; TasView3.MouseLeave += TAStudio_MouseLeave; - TasView3.CellDropped += TasView_CellDropped; TasView3.ColumnClick += TasView_ColumnClick; TasView3.ColumnReordered += TasView_ColumnReordered; @@ -540,81 +444,81 @@ private void AutosaveTimerEventProcessor(object sender, EventArgs e) private static readonly string[] N64CButtonSuffixes = { " C Up", " C Down", " C Left", " C Right" }; - private void SetUpColumns() - { - foreach (InputRoll tasView in TasViews) - { - tasView.AllColumns.Clear(); - tasView.AllColumns.Add(new(name: CursorColumnName, widthUnscaled: 18, type: ColumnType.Boolean, text: string.Empty)); - tasView.AllColumns.Add(new(name: FrameColumnName, widthUnscaled: 60, text: "Frame#") - { - Rotatable = true, - }); - - foreach ((string name, string mnemonic0, int maxLength) in MnemonicMap()) - { - var mnemonic = Emulator.SystemId is VSystemID.Raw.N64 && N64CButtonSuffixes.Any(name.EndsWithOrdinal) - ? $"c{mnemonic0.ToUpperInvariant()}" // prepend 'c' to differentiate from L/R buttons -- this only affects the column headers - : mnemonic0; - - var type = ControllerType.Axes.ContainsKey(name) ? ColumnType.Axis : ColumnType.Boolean; - - tasView.AllColumns.Add(new( - name: name, - widthUnscaled: (maxLength * 6) + 14, // magic numbers reused in EditBranchTextPopUp() --feos // not since eb63fa5a9 (before 2.3.3) --yoshi - type: type, - text: mnemonic)); - } - - var columnsToHide = tasView.AllColumns - .Where(c => - // todo: make a proper user editable list? - c.Name == "Power" - || c.Name == "Reset" - || c.Name == "Light Sensor" - || c.Name == "Disc Select" - || c.Name == "Disk Index" - || c.Name == "Next Drive" - || c.Name == "Next Slot" - || c.Name == "Insert Disk" - || c.Name == "Eject Disk" - || c.Name.StartsWithOrdinal("Tilt") - || c.Name.StartsWithOrdinal("Key ") - || c.Name.StartsWithOrdinal("Open") - || c.Name.StartsWithOrdinal("Close") - || c.Name.EndsWithOrdinal("Tape") - || c.Name.EndsWithOrdinal("Disk") - || c.Name.EndsWithOrdinal("Block") - || c.Name.EndsWithOrdinal("Status")); - - if (Emulator.SystemId is VSystemID.Raw.N64) - { - var fakeAnalogControls = tasView.AllColumns - .Where(c => - c.Name.EndsWithOrdinal("A Up") - || c.Name.EndsWithOrdinal("A Down") - || c.Name.EndsWithOrdinal("A Left") - || c.Name.EndsWithOrdinal("A Right")); - - columnsToHide = columnsToHide.Concat(fakeAnalogControls); - } - - foreach (var column in columnsToHide) - { - column.Visible = false; - } - - foreach (var column in tasView.VisibleColumns) - { - if (InputManager.StickyHoldController.IsSticky(column.Name) || InputManager.StickyAutofireController.IsSticky(column.Name)) - { - column.Emphasis = true; - } - } - - tasView.AllColumns.ColumnsChanged(); - } - } + //private void SetUpColumns() + //{ + // foreach (InputRoll tasView in TasViews) + // { + // tasView.AllColumns.Clear(); + // tasView.AllColumns.Add(new(name: CursorColumnName, widthUnscaled: 18, type: ColumnType.Boolean, text: string.Empty)); + // tasView.AllColumns.Add(new(name: FrameColumnName, widthUnscaled: 60, text: "Frame#") + // { + // Rotatable = true, + // }); + + // foreach ((string name, string mnemonic0, int maxLength) in MnemonicMap()) + // { + // var mnemonic = Emulator.SystemId is VSystemID.Raw.N64 && N64CButtonSuffixes.Any(name.EndsWithOrdinal) + // ? $"c{mnemonic0.ToUpperInvariant()}" // prepend 'c' to differentiate from L/R buttons -- this only affects the column headers + // : mnemonic0; + + // var type = ControllerType.Axes.ContainsKey(name) ? ColumnType.Axis : ColumnType.Boolean; + + // tasView.AllColumns.Add(new( + // name: name, + // widthUnscaled: (maxLength * 6) + 14, // magic numbers reused in EditBranchTextPopUp() --feos // not since eb63fa5a9 (before 2.3.3) --yoshi + // type: type, + // text: mnemonic)); + // } + + // var columnsToHide = tasView.AllColumns + // .Where(c => + // // todo: make a proper user editable list? + // c.Name == "Power" + // || c.Name == "Reset" + // || c.Name == "Light Sensor" + // || c.Name == "Disc Select" + // || c.Name == "Disk Index" + // || c.Name == "Next Drive" + // || c.Name == "Next Slot" + // || c.Name == "Insert Disk" + // || c.Name == "Eject Disk" + // || c.Name.StartsWithOrdinal("Tilt") + // || c.Name.StartsWithOrdinal("Key ") + // || c.Name.StartsWithOrdinal("Open") + // || c.Name.StartsWithOrdinal("Close") + // || c.Name.EndsWithOrdinal("Tape") + // || c.Name.EndsWithOrdinal("Disk") + // || c.Name.EndsWithOrdinal("Block") + // || c.Name.EndsWithOrdinal("Status")); + + // if (Emulator.SystemId is VSystemID.Raw.N64) + // { + // var fakeAnalogControls = tasView.AllColumns + // .Where(c => + // c.Name.EndsWithOrdinal("A Up") + // || c.Name.EndsWithOrdinal("A Down") + // || c.Name.EndsWithOrdinal("A Left") + // || c.Name.EndsWithOrdinal("A Right")); + + // columnsToHide = columnsToHide.Concat(fakeAnalogControls); + // } + + // foreach (var column in columnsToHide) + // { + // column.Visible = false; + // } + + // foreach (var column in tasView.VisibleColumns) + // { + // if (InputManager.StickyHoldController.IsSticky(column.Name) || InputManager.StickyAutofireController.IsSticky(column.Name)) + // { + // column.Emphasis = true; + // } + // } + + // tasView.AllColumns.ColumnsChanged(); + // } + //} private void SetUpColumnsPerControl(int viewIndex) { InputRoll tasView = TasViews[viewIndex]; From f84512f750537dd0178ebc3c6b26de23e2129997 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sat, 8 Feb 2025 00:39:07 -0500 Subject: [PATCH 17/65] Fixed Right click Context menu not opening on first tasview --- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 238 +++++++++--------- 1 file changed, 121 insertions(+), 117 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 6bb96618c6d..a96628d3c10 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -1,5 +1,6 @@ using System.IO; using System.Linq; +using System.Runtime.InteropServices.WindowsRuntime; using System.Text; using System.Windows.Forms; @@ -1191,165 +1192,165 @@ private void WheelScrollSpeedMenuItem_Click(object sender, EventArgs e) private void SetUpToolStripColumns() { - ColumnsSubMenu.DropDownItems.Clear(); + ColumnsSubMenu.DropDownItems.Clear(); - var columns = TasView1.AllColumns - .Where(static c => !string.IsNullOrWhiteSpace(c.Text) && c.Name is not "FrameColumn") - .ToList(); + var columns = TasView1.AllColumns + .Where(static c => !string.IsNullOrWhiteSpace(c.Text) && c.Name is not "FrameColumn") + .ToList(); - int workingHeight = Screen.FromControl(this).WorkingArea.Height; - int rowHeight = ColumnsSubMenu.Height + 4; - int maxRows = workingHeight / rowHeight; - int keyCount = columns.Count(c => c.Name.StartsWithOrdinal("Key ")); - int keysMenusCount = (int) Math.Ceiling((double) keyCount / maxRows); + int workingHeight = Screen.FromControl(this).WorkingArea.Height; + int rowHeight = ColumnsSubMenu.Height + 4; + int maxRows = workingHeight / rowHeight; + int keyCount = columns.Count(c => c.Name.StartsWithOrdinal("Key ")); + int keysMenusCount = (int) Math.Ceiling((double) keyCount / maxRows); - var keysMenus = new ToolStripMenuItem[keysMenusCount]; + var keysMenus = new ToolStripMenuItem[keysMenusCount]; - for (int i = 0; i < keysMenus.Length; i++) - { - keysMenus[i] = new ToolStripMenuItem(); - } + for (int i = 0; i < keysMenus.Length; i++) + { + keysMenus[i] = new ToolStripMenuItem(); + } - var playerMenus = new ToolStripMenuItem[Emulator.ControllerDefinition.PlayerCount + 1]; - playerMenus[0] = ColumnsSubMenu; + var playerMenus = new ToolStripMenuItem[Emulator.ControllerDefinition.PlayerCount + 1]; + playerMenus[0] = ColumnsSubMenu; - for (int i = 1; i < playerMenus.Length; i++) - { - playerMenus[i] = new ToolStripMenuItem($"Player {i}"); - } + for (int i = 1; i < playerMenus.Length; i++) + { + playerMenus[i] = new ToolStripMenuItem($"Player {i}"); + } - foreach (var column in columns) + foreach (var column in columns) + { + var menuItem = new ToolStripMenuItem { - var menuItem = new ToolStripMenuItem - { - Text = $"{column.Text} ({column.Name})", - Checked = column.Visible, - CheckOnClick = true, - Tag = column.Name - }; + Text = $"{column.Text} ({column.Name})", + Checked = column.Visible, + CheckOnClick = true, + Tag = column.Name + }; - menuItem.CheckedChanged += (o, ev) => - { - ToolStripMenuItem sender = (ToolStripMenuItem) o; - TasView1.AllColumns.Find(c => c.Name == (string) sender.Tag).Visible = sender.Checked; - TasView1.AllColumns.ColumnsChanged(); - CurrentTasMovie.FlagChanges(); - TasView1.Refresh(); - ColumnsSubMenu.ShowDropDown(); - ((ToolStripMenuItem) sender.OwnerItem).ShowDropDown(); - }; + menuItem.CheckedChanged += (o, ev) => + { + ToolStripMenuItem sender = (ToolStripMenuItem) o; + TasView1.AllColumns.Find(c => c.Name == (string) sender.Tag).Visible = sender.Checked; + TasView1.AllColumns.ColumnsChanged(); + CurrentTasMovie.FlagChanges(); + TasView1.Refresh(); + ColumnsSubMenu.ShowDropDown(); + ((ToolStripMenuItem) sender.OwnerItem).ShowDropDown(); + }; + + if (column.Name.StartsWithOrdinal("Key ")) + { + keysMenus + .First(m => m.DropDownItems.Count < maxRows) + .DropDownItems + .Add(menuItem); + } + else + { + int player; - if (column.Name.StartsWithOrdinal("Key ")) + if (column.Name.Length >= 2 && column.Name.StartsWith('P') && char.IsNumber(column.Name, 1)) { - keysMenus - .First(m => m.DropDownItems.Count < maxRows) - .DropDownItems - .Add(menuItem); + player = int.Parse(column.Name[1].ToString()); } else { - int player; - - if (column.Name.Length >= 2 && column.Name.StartsWith('P') && char.IsNumber(column.Name, 1)) - { - player = int.Parse(column.Name[1].ToString()); - } - else - { - player = 0; - } - - playerMenus[player].DropDownItems.Add(menuItem); + player = 0; } - } - foreach (var menu in keysMenus) - { - string text = $"Keys ({menu.DropDownItems[0].Tag} - {menu.DropDownItems[menu.DropDownItems.Count - 1].Tag})"; - menu.Text = text.Replace("Key ", ""); - ColumnsSubMenu.DropDownItems.Add(menu); + playerMenus[player].DropDownItems.Add(menuItem); } + } + + foreach (var menu in keysMenus) + { + string text = $"Keys ({menu.DropDownItems[0].Tag} - {menu.DropDownItems[menu.DropDownItems.Count - 1].Tag})"; + menu.Text = text.Replace("Key ", ""); + ColumnsSubMenu.DropDownItems.Add(menu); + } - for (int i = 1; i < playerMenus.Length; i++) + for (int i = 1; i < playerMenus.Length; i++) + { + if (playerMenus[i].HasDropDownItems) { - if (playerMenus[i].HasDropDownItems) - { - ColumnsSubMenu.DropDownItems.Add(playerMenus[i]); - } + ColumnsSubMenu.DropDownItems.Add(playerMenus[i]); } + } - for (int i = 1; i < playerMenus.Length; i++) + for (int i = 1; i < playerMenus.Length; i++) + { + if (playerMenus[i].HasDropDownItems) { - if (playerMenus[i].HasDropDownItems) - { - ColumnsSubMenu.DropDownItems.Add(new ToolStripSeparator()); - break; - } + ColumnsSubMenu.DropDownItems.Add(new ToolStripSeparator()); + break; } + } - if (keysMenus.Length > 0) + if (keysMenus.Length > 0) + { + var item = new ToolStripMenuItem("Show Keys") { - var item = new ToolStripMenuItem("Show Keys") - { - CheckOnClick = true, - Checked = false - }; + CheckOnClick = true, + Checked = false + }; - foreach (var menu in keysMenus) + foreach (var menu in keysMenus) + { + var dummyObject1 = menu; + item.CheckedChanged += (o, ev) => { - var dummyObject1 = menu; - item.CheckedChanged += (o, ev) => + foreach (ToolStripMenuItem menuItem in dummyObject1.DropDownItems) { - foreach (ToolStripMenuItem menuItem in dummyObject1.DropDownItems) - { - menuItem.Checked = !menuItem.Checked; - } + menuItem.Checked = !menuItem.Checked; + } - CurrentTasMovie.FlagChanges(); - TasView1.AllColumns.ColumnsChanged(); - TasView1.Refresh(); - }; + CurrentTasMovie.FlagChanges(); + TasView1.AllColumns.ColumnsChanged(); + TasView1.Refresh(); + }; - ColumnsSubMenu.DropDownItems.Add(item); - } + ColumnsSubMenu.DropDownItems.Add(item); } + } - for (int i = 1; i < playerMenus.Length; i++) + for (int i = 1; i < playerMenus.Length; i++) + { + if (playerMenus[i].HasDropDownItems) { - if (playerMenus[i].HasDropDownItems) + var item = new ToolStripMenuItem($"Show Player {i}") { - var item = new ToolStripMenuItem($"Show Player {i}") - { - CheckOnClick = true, - Checked = playerMenus[i].DropDownItems.OfType().Any(mi => mi.Checked) - }; + CheckOnClick = true, + Checked = playerMenus[i].DropDownItems.OfType().Any(mi => mi.Checked) + }; - ToolStripMenuItem dummyObject = playerMenus[i]; - item.CheckedChanged += (o, ev) => + ToolStripMenuItem dummyObject = playerMenus[i]; + item.CheckedChanged += (o, ev) => + { + // TODO: preserve underlying button checked state and make this a master visibility control + foreach (ToolStripMenuItem menuItem in dummyObject.DropDownItems) { - // TODO: preserve underlying button checked state and make this a master visibility control - foreach (ToolStripMenuItem menuItem in dummyObject.DropDownItems) - { - menuItem.Checked = item.Checked; - } - dummyObject.Visible = item.Checked; + menuItem.Checked = item.Checked; + } + dummyObject.Visible = item.Checked; - CurrentTasMovie.FlagChanges(); - TasView1.AllColumns.ColumnsChanged(); - TasView1.Refresh(); - }; + CurrentTasMovie.FlagChanges(); + TasView1.AllColumns.ColumnsChanged(); + TasView1.Refresh(); + }; - ColumnsSubMenu.DropDownItems.Add(item); - } + ColumnsSubMenu.DropDownItems.Add(item); } } - + } + // ReSharper disable once UnusedMember.Local [RestoreDefaults] private void RestoreDefaults() //changed top three function order. test for bugs - { + { SetUpToolStripColumns(); - for(int i=0; i < TasViews.Count;i++) + for (int i = 0; i < TasViews.Count; i++) { SetUpColumnsPerControl(i); TasViews[i].Refresh(); @@ -1361,7 +1362,9 @@ private void SetUpToolStripColumns() private void RightClickMenu_Opened(object sender, EventArgs e) { - if (TasView1.Focused && TasView1.AnyRowsSelected) + foreach (InputRoll tasView in TasViews) + { + if (tasView.Focused && tasView.AnyRowsSelected) { SetMarkersContextMenuItem.Enabled = SelectBetweenMarkersContextMenuItem.Enabled = @@ -1406,7 +1409,8 @@ private void RightClickMenu_Opened(object sender, EventArgs e) CloneXTimesContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clone # Times"]; } } - + } + private void CancelSeekContextMenuItem_Click(object sender, EventArgs e) { MainForm.PauseOnFrame = null; From 5ec85b52b22dd049705c4b2ea320905e1dcbfad9 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sat, 8 Feb 2025 02:49:38 -0500 Subject: [PATCH 18/65] Trying to implement an Insert an empty frame only affecting one controller wip --- .../movie/interfaces/ITasMovie.cs | 4 + .../movie/tasproj/TasMovie.Editing.cs | 76 ++++++++++++++++++- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 45 +++++++++-- 3 files changed, 114 insertions(+), 11 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs index 4a551990632..a88391b1b68 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs @@ -42,6 +42,10 @@ public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable void InsertInput(int frame, IEnumerable inputLog); void InsertInput(int frame, IEnumerable inputStates); + void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLength, int count = 1); + + + void InsertEmptyFrame(int frame, int count = 1); int CopyOverInput(int frame, IEnumerable inputStates); diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 9aecad60a47..d656e3e1531 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -1,8 +1,9 @@ using System.Collections.Generic; using System.Linq; - +using System.Text; using BizHawk.Common.CollectionExtensions; using BizHawk.Emulation.Common; +using SharpCompress; namespace BizHawk.Client.Common { @@ -197,7 +198,7 @@ public void InsertInput(int frame, IEnumerable inputLog) Changes = true; InvalidateAfter(frame); - + ChangeLog.AddInsertInput(frame, inputLog.ToList(), $"Insert {inputLog.Count()} frame(s) at {frame}"); } @@ -218,7 +219,7 @@ public int CopyOverInput(int frame, IEnumerable inputStates) { int firstChangedFrame = -1; ChangeLog.BeginNewBatch($"Copy Over Input: {frame}"); - + var states = inputStates.ToList(); if (Log.Count < states.Count + frame) @@ -266,6 +267,75 @@ public void InsertEmptyFrame(int frame, int count = 1) ChangeLog.AddInsertFrames(frame, count, $"Insert {count} empty frame(s) at {frame}"); } + public void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLength, int count = 1) + { + frame = Math.Min(frame, Log.Count); + + //insert it at end since the inputs have to shift + + //damn this is disgusting. + Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); + + StringBuilder tempLog = new StringBuilder(); + List lines = new List(); + lines.Add(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController)); + string framePrevious = string.Empty; + char[] frameNext; + //for (int i = Log.Count - 1; i >= frame; i--) + //{ + // if (Log[i - 1].Substring(startOffset, currentControlLength) == Log[i].Substring(startOffset, currentControlLength)) + // { + // tempLog.AppendLine(Log[i]); + // lines.Add(Log[i]); + // //continue; + // } + // else + // { + // framePrevious = Log[i - 1]; + // frameNext = Log[i].ToCharArray(); + // for (int j = startOffset; j < startOffset + currentControlLength; j++) + // { + // frameNext[j] = framePrevious[j]; + // } + // tempLog.AppendLine(new string(frameNext)); + // lines.Add(new string(frameNext)); + // } + //} + + for (int i = frame ; i < Log.Count-1; i++) + { + if (Log[i].Substring(startOffset, currentControlLength) == Log[i+1].Substring(startOffset, currentControlLength)) + { + tempLog.AppendLine(Log[i]); + lines.Add(Log[i]); + //continue; + } + else + { + framePrevious = Log[i]; + frameNext = Log[i+1].ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + frameNext[j] = framePrevious[j]; + } + tempLog.AppendLine(new string(frameNext)); + lines.Add(new string(frameNext)); + } + } + + //string a = Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController),count).ToString(); + + Log.InsertRange(frame, lines); + //Log.InsertRange(frame, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); + + ShiftBindedMarkers(frame, count); + + Changes = true; + InvalidateAfter(frame); + + ChangeLog.AddInsertFrames(frame, count, $"Insert {count} empty frame(s) at {frame}"); + } + private void ExtendMovieForEdit(int numFrames) { bool endBatch = ChangeLog.BeginNewBatch("Auto-Extend Movie", true); diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index a96628d3c10..a932413df8e 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -635,20 +635,39 @@ private void CloneFramesXTimesMenuItem_Click(object sender, EventArgs e) private void CloneFramesXTimes(int timesToClone) { - foreach (InputRoll tasView in TasViews) + for (int i = 0; i < TasViews.Count; i++) { - for (int i = 0; i < timesToClone; i++) + if (TasViews[i].Focused && TasViews[i].AnyRowsSelected) //moving out of for loop to only have the currently focused tasview cloned { - if (tasView.Focused && tasView.AnyRowsSelected) + int startOffset = 1; //starts with "|" + //for (int k = i; k >= 0; k--) + for (int k = 0; k < i; k++) //add up inputs to get start string offset { - var framesToInsert = tasView.SelectedRows; + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[i].Count; + + for (int j = 0; j < timesToClone; j++) + { + + var framesToInsert = TasViews[i].SelectedRows; var insertionFrame = Math.Min((TasView1.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); - var needsToRollback = TasView1.SelectionStartIndex < Emulator.Frame; + var needsToRollback = TasViews[i].SelectionStartIndex < Emulator.Frame; var inputLog = framesToInsert .Select(frame => CurrentTasMovie.GetInputLogEntry(frame)) .ToList(); + //i don't know wtf i am doingn. come back after sleeping. + //i only want to clone the selected control group. + //A clone operation will insert the selected stuff AFTER the currently selected frames. + //All the other inputs besides the current controls need to stay the same. + //the current controller group need to shift down with the clone. + var inputLog2 = framesToInsert + .Select(frame => CurrentTasMovie.GetInputLogEntry(frame).Remove(startOffset, currentControlLength)) + .ToList(); + CurrentTasMovie.InsertInput(insertionFrame, inputLog); if (needsToRollback) @@ -665,15 +684,24 @@ private void CloneFramesXTimes(int timesToClone) private void InsertFrameMenuItem_Click(object sender, EventArgs e) { - foreach (InputRoll tasView in TasViews) + for (int i = 0; i < TasViews.Count; i++) { - if (tasView.Focused && tasView.AnyRowsSelected) + if (TasViews[i].Focused && TasViews[i].AnyRowsSelected) //moving out of for loop to only have the currently focused tasview cloned { + int startOffset = 1; //starts with "|" + //for (int k = i; k >= 0; k--) + for (int k = 0; k < i; k++) //add up inputs to get start string offset + { + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[i].Count; + var selectionStart = TasView1.SelectionStartIndex; var insertionFrame = selectionStart ?? 0; var needsToRollback = selectionStart < Emulator.Frame; - CurrentTasMovie.InsertEmptyFrame(insertionFrame); + CurrentTasMovie.InsertEmptyFrameMPR(insertionFrame, startOffset, currentControlLength); if (needsToRollback) { @@ -684,6 +712,7 @@ private void InsertFrameMenuItem_Click(object sender, EventArgs e) FullRefresh(); } } + } private void InsertNumFramesMenuItem_Click(object sender, EventArgs e) { From 0aa7dcf2cd6dceea9d9560e527f0edc307189cd1 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sat, 8 Feb 2025 04:08:14 -0500 Subject: [PATCH 19/65] Insert working slow though --- .../movie/tasproj/TasMovie.Editing.cs | 79 +++++++++---------- 1 file changed, 36 insertions(+), 43 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index d656e3e1531..580043f2a3f 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -271,60 +271,53 @@ public void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLe { frame = Math.Min(frame, Log.Count); - //insert it at end since the inputs have to shift - //damn this is disgusting. + + //insert it at end since the inputs have to shift Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); StringBuilder tempLog = new StringBuilder(); - List lines = new List(); - lines.Add(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController)); + List lines = new List(); string framePrevious = string.Empty; - char[] frameNext; - //for (int i = Log.Count - 1; i >= frame; i--) - //{ - // if (Log[i - 1].Substring(startOffset, currentControlLength) == Log[i].Substring(startOffset, currentControlLength)) - // { - // tempLog.AppendLine(Log[i]); - // lines.Add(Log[i]); - // //continue; - // } - // else - // { - // framePrevious = Log[i - 1]; - // frameNext = Log[i].ToCharArray(); - // for (int j = startOffset; j < startOffset + currentControlLength; j++) - // { - // frameNext[j] = framePrevious[j]; - // } - // tempLog.AppendLine(new string(frameNext)); - // lines.Add(new string(frameNext)); - // } - //} - - for (int i = frame ; i < Log.Count-1; i++) + char[] frameNext = Log[frame].ToCharArray(); + + + //damn this is disgustingly lengthy. + //inserted empty controller first + for (int j = startOffset; j < startOffset + currentControlLength; j++) { - if (Log[i].Substring(startOffset, currentControlLength) == Log[i+1].Substring(startOffset, currentControlLength)) - { - tempLog.AppendLine(Log[i]); - lines.Add(Log[i]); - //continue; - } - else + frameNext[j] = '.'; + } + + lines.Add(new string(frameNext)); + + for (int i = frame; i < Log.Count; i++) + { + //do not assign characters from one frame to another if same { - framePrevious = Log[i]; - frameNext = Log[i+1].ToCharArray(); - for (int j = startOffset; j < startOffset + currentControlLength; j++) + if (i + 1 == Log.Count) + { + lines.Add(Log[i]); + //continue; + } + //else if (Log[i].Substring(startOffset, currentControlLength) == Log[i + 1].Substring(startOffset, currentControlLength)) + //{ + // lines.Add(Log[i]); + //} + else { - frameNext[j] = framePrevious[j]; + //takes characters from the controller and shifts then, leaving other controllers alone. + framePrevious = Log[i]; + frameNext = Log[i + 1].ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + frameNext[j] = framePrevious[j]; + } + lines.Add(new string(frameNext)); } - tempLog.AppendLine(new string(frameNext)); - lines.Add(new string(frameNext)); } } - - //string a = Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController),count).ToString(); - + Log.RemoveRange(frame, Log.Count - frame ); Log.InsertRange(frame, lines); //Log.InsertRange(frame, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); From cb2f161a38d2473e59296383a320c689016825cb Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sat, 8 Feb 2025 06:06:10 -0500 Subject: [PATCH 20/65] fix for Insert Had a stray hardcoded TasView1 that was causing some bizarre problems in Insert --- src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs | 2 +- .../tools/TAStudioMPR/TAStudioMPR.MenuItems.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 580043f2a3f..5e27b162d86 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -317,7 +317,7 @@ public void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLe } } } - Log.RemoveRange(frame, Log.Count - frame ); + Log.RemoveRange(frame, Log.Count - frame -1); Log.InsertRange(frame, lines); //Log.InsertRange(frame, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index a932413df8e..493ded61e38 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -697,7 +697,7 @@ private void InsertFrameMenuItem_Click(object sender, EventArgs e) } int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[i].Count; - var selectionStart = TasView1.SelectionStartIndex; + var selectionStart = TasViews[i].SelectionStartIndex; var insertionFrame = selectionStart ?? 0; var needsToRollback = selectionStart < Emulator.Frame; From 852a5c1b09d586953a6e78eaf6f1452085759cad Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sat, 8 Feb 2025 19:25:12 -0500 Subject: [PATCH 21/65] Delete single frame works multiple does not work though --- .../movie/interfaces/ITasMovie.cs | 4 + .../movie/tasproj/TasMovie.Editing.cs | 194 +++++++++++++++++- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 19 +- 3 files changed, 208 insertions(+), 9 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs index a88391b1b68..aef560120f7 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs @@ -52,6 +52,10 @@ public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable void RemoveFrame(int frame); void RemoveFrames(ICollection frames); void RemoveFrames(int removeStart, int removeUpTo); + void RemoveFramesMPR(ICollection frames, int startOffset, int currentControlLength); + + //void RemoveFrameMPR(int frame, int startOffset, int currentControlLength); + void SetFrame(int frame, string source); void LoadBranch(TasBranch branch); diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 5e27b162d86..b0753df0a1d 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using System.Linq; +using System.Runtime.InteropServices.ComTypes; using System.Text; using BizHawk.Common.CollectionExtensions; using BizHawk.Emulation.Common; @@ -133,6 +134,15 @@ public void RemoveFrames(ICollection frames) } prevFrame = frame; } + + + + + + + + + // Each block is logged as an individual ChangeLog entry RemoveFrames(startFrame - numDeleted, prevFrame + 1 - numDeleted); numDeleted += prevFrame + 1 - startFrame; @@ -140,6 +150,95 @@ public void RemoveFrames(ICollection frames) } } + public void RemoveFramesMPR(ICollection frames, int startOffset, int currentControlLength) + { + if (frames.Any()) + { + // Separate the given frames into contiguous blocks + // and process each block independently + List framesToDelete = frames + .Where(fr => fr >= 0 && fr < InputLogLength) + .Order().ToList(); + // f is the current index for framesToDelete + int f = 0; + int numDeleted = 0; + while (numDeleted != framesToDelete.Count) + { + int startFrame; + var prevFrame = startFrame = framesToDelete[f]; + f++; + for (; f < framesToDelete.Count; f++) + { + var frame = framesToDelete[f]; + if (frame - 1 != prevFrame) + { + f--; + break; + } + prevFrame = frame; + } + + + //StringBuilder tempLog = new StringBuilder(); + List lines = new List(); + char[] framePrevious = Log[prevFrame].ToCharArray(); + string frameNext = string.Empty; + + + for (int i = startFrame; i < Log.Count; i++) + { + //do not assign characters from one frame to another if same + + if (i + 1 == Log.Count) + { + //add an blank section for that frame of the controller + framePrevious = Log[i].ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + framePrevious[j] = '.'; + } + lines.Add(new string(framePrevious)); + } + //if (i + 1 == Log.Count) + //{ + // lines.Add(Log[i]); + // //continue; + //} + //else if (Log[i].Substring(startOffset, currentControlLength) == Log[i + 1].Substring(startOffset, currentControlLength)) + //{ + // lines.Add(Log[i]); + //} + else + { + //takes characters from the controller and shifts then, leaving other controllers alone. + framePrevious = Log[i].ToCharArray(); + frameNext = Log[i + 1]; + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + framePrevious[j] = frameNext[j]; + } + lines.Add(new string(framePrevious)); + } + + } + //replace from inital delete frame to end + Log.RemoveRange(startFrame, Log.Count - startFrame); //check -1 + Log.InsertRange(startFrame, lines); + + + + // Each block is logged as an individual ChangeLog entry + //RemoveFrames(startFrame - numDeleted, prevFrame + 1 - numDeleted); + numDeleted += prevFrame + 1 - startFrame; + } + } + } + + + + + + /// /// Remove all frames between removeStart and removeUpTo (excluding removeUpTo). /// @@ -184,6 +283,94 @@ public void RemoveFrames(int removeStart, int removeUpTo) ); } + ///// + ///// Remove all frames between removeStart and removeUpTo (excluding removeUpTo). + ///// + ///// The first frame to remove. + ///// The frame after the last frame to remove. + //public void RemoveFramesMPR(int removeStart, int removeUpTo, int startOffset, int currentControlLength) + //{ + // // Log.GetRange() might be preferrable, but Log's type complicates that. + // string[] removedInputs = new string[removeUpTo - removeStart]; + // Log.CopyTo(removeStart, removedInputs, 0, removedInputs.Length); + + // // Pre-process removed markers for the ChangeLog. + // List removedMarkers = new List(); + // if (BindMarkersToInput) + // { + // bool wasRecording = ChangeLog.IsRecording; + // ChangeLog.IsRecording = false; + + // // O(n^2) removal time, but removing many binded markers in a deleted section is probably rare. + // removedMarkers = Markers.Where(m => m.Frame >= removeStart && m.Frame < removeUpTo).ToList(); + // foreach (var marker in removedMarkers) + // { + // Markers.Remove(marker); + // } + + // ChangeLog.IsRecording = wasRecording; + // } + + // //ok right here start doing the shuffle dance + + // //StringBuilder tempLog = new StringBuilder(); + // List lines = new List(); + // char[] framePrevious = Log[removeStart].ToCharArray(); + // string frameNext = string.Empty; + + + // for (int i = removeStart; i < Log.Count; i++) + // { + // //do not assign characters from one frame to another if same + // { + // if (i + 1 == Log.Count) + // { + // lines.Add(Log[i]); + // //continue; + // } + // else if (Log[i].Substring(startOffset, currentControlLength) == Log[i + 1].Substring(startOffset, currentControlLength)) + // { + // lines.Add(Log[i]); + // } + // else + // { + // //takes characters from the controller and shifts then, leaving other controllers alone. + // framePrevious = Log[i].ToCharArray(); + // frameNext = Log[i + 1]; + // for (int j = startOffset; j < startOffset + currentControlLength; j++) + // { + // framePrevious[j] = frameNext[j]; + // } + // lines.Add(new string(framePrevious)); + // } + // } + // } + // Log.RemoveRange(removeStart, Log.Count - removeStart-1); //check -1 + // Log.InsertRange(removeStart, lines); + + + // //og + // Log.RemoveRange(removeStart, removeUpTo - removeStart); + + // ShiftBindedMarkers(removeUpTo, removeStart - removeUpTo); + + // Changes = true; + // InvalidateAfter(removeStart); + + // ChangeLog.AddRemoveFrames( + // removeStart, + // removeUpTo, + // removedInputs.ToList(), + // removedMarkers, + // $"Remove frames {removeStart}-{removeUpTo - 1}" + // ); + //} + + //public void RemoveFrameMPR(int frame, int startOffset, int currentControlLength) + //{ + // RemoveFramesMPR(frame, frame + 1, startOffset, currentControlLength); + //} + public void InsertInput(int frame, string inputState) { var inputLog = new List { inputState }; @@ -271,17 +458,14 @@ public void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLe { frame = Math.Min(frame, Log.Count); - - //insert it at end since the inputs have to shift Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); - StringBuilder tempLog = new StringBuilder(); + //StringBuilder tempLog = new StringBuilder(); List lines = new List(); string framePrevious = string.Empty; char[] frameNext = Log[frame].ToCharArray(); - //damn this is disgustingly lengthy. //inserted empty controller first for (int j = startOffset; j < startOffset + currentControlLength; j++) @@ -317,7 +501,7 @@ public void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLe } } } - Log.RemoveRange(frame, Log.Count - frame -1); + Log.RemoveRange(frame, Log.Count - frame - 1); Log.InsertRange(frame, lines); //Log.InsertRange(frame, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 493ded61e38..24e8aebbb21 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -590,11 +590,22 @@ private void ClearFramesMenuItem_Click(object sender, EventArgs e) private void DeleteFramesMenuItem_Click(object sender, EventArgs e) { - foreach (InputRoll tasView in TasViews) + for (int i = 0; i < TasViews.Count; i++) { - if (tasView.Focused && tasView.AnyRowsSelected) + if (TasViews[i].Focused && TasViews[i].AnyRowsSelected) //moving out of for loop to only have the currently focused tasview cloned { - var selectionStart = TasView1.SelectionStartIndex; + + int startOffset = 1; //starts with "|" + //for (int k = i; k >= 0; k--) + for (int k = 0; k < i; k++) //add up inputs to get start string offset + { + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[i].Count; + + + var selectionStart = TasViews[i].SelectionStartIndex; var needsToRollback = selectionStart < Emulator.Frame; var rollBackFrame = selectionStart ?? 0; if (rollBackFrame >= CurrentTasMovie.InputLogLength) @@ -604,7 +615,7 @@ private void DeleteFramesMenuItem_Click(object sender, EventArgs e) return; } - CurrentTasMovie.RemoveFrames(tasView.SelectedRows.ToArray()); + CurrentTasMovie.RemoveFramesMPR(TasViews[i].SelectedRows.ToArray(), startOffset, currentControlLength); SetTasViewRowCount(); SetSplicer(); From fae7755133a216814e6786ff9d0e390611009e5b Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sat, 8 Feb 2025 19:38:52 -0500 Subject: [PATCH 22/65] Fixed Right context menu not working initially on some tasviews right context menu setup had some stray hardcoded tasview refs --- .../tools/TAStudioMPR/TAStudioMPR.Designer.cs | 8 ++++---- .../tools/TAStudioMPR/TAStudioMPR.MenuItems.cs | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs index 0cf39de13a7..868c7e4b31e 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs @@ -936,7 +936,7 @@ private void InitializeComponent() // toolStripStatusLabel2 // this.toolStripStatusLabel2.Name = "toolStripStatusLabel2"; - this.toolStripStatusLabel2.Size = new System.Drawing.Size(545, 17); + this.toolStripStatusLabel2.Size = new System.Drawing.Size(821, 17); this.toolStripStatusLabel2.Spring = true; // // SplicerStatusLabel @@ -1158,8 +1158,8 @@ private void InitializeComponent() // this.MainVertialSplit.Panel2.Controls.Add(this.TasPlaybackBoxMPR); this.MainVertialSplit.Panel2.Controls.Add(this.BranchesMarkersSplit); - this.MainVertialSplit.Size = new System.Drawing.Size(783, 590); - this.MainVertialSplit.SplitterDistance = 571; + this.MainVertialSplit.Size = new System.Drawing.Size(1059, 590); + this.MainVertialSplit.SplitterDistance = 847; this.MainVertialSplit.TabIndex = 10; this.MainVertialSplit.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.MainVerticalSplit_SplitterMoved); // @@ -1168,7 +1168,7 @@ private void InitializeComponent() this.AllowDrop = true; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(785, 638); + this.ClientSize = new System.Drawing.Size(1061, 638); this.Controls.Add(this.MainVertialSplit); this.Controls.Add(this.TasStatusStrip); this.Controls.Add(this.TASMenu); diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 24e8aebbb21..8038d9149c3 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -1417,17 +1417,17 @@ private void RightClickMenu_Opened(object sender, EventArgs e) InsertFrameContextMenuItem.Enabled = InsertNumFramesContextMenuItem.Enabled = TruncateContextMenuItem.Enabled = - TasView1.AnyRowsSelected; + tasView.AnyRowsSelected; pasteToolStripMenuItem.Enabled = pasteInsertToolStripMenuItem.Enabled = (Clipboard.GetDataObject()?.GetDataPresent(DataFormats.StringFormat) ?? false) - && TasView1.AnyRowsSelected; + && tasView.AnyRowsSelected; - var selectionIsSingleRow = TasView1.SelectedRows.CountIsExactly(1); + var selectionIsSingleRow = tasView.SelectedRows.CountIsExactly(1); StartNewProjectFromNowMenuItem.Visible = selectionIsSingleRow - && TasView1.IsRowSelected(Emulator.Frame) + && tasView.IsRowSelected(Emulator.Frame) && !CurrentTasMovie.StartsFromSaveRam; StartANewProjectFromSaveRamMenuItem.Visible = @@ -1436,9 +1436,9 @@ private void RightClickMenu_Opened(object sender, EventArgs e) && !CurrentTasMovie.StartsFromSavestate; StartFromNowSeparator.Visible = StartNewProjectFromNowMenuItem.Visible || StartANewProjectFromSaveRamMenuItem.Visible; - RemoveMarkersContextMenuItem.Enabled = CurrentTasMovie.Markers.Any(m => TasView1.IsRowSelected(m.Frame)); // Disable the option to remove markers if no markers are selected (FCEUX does this). + RemoveMarkersContextMenuItem.Enabled = CurrentTasMovie.Markers.Any(m => tasView.IsRowSelected(m.Frame)); // Disable the option to remove markers if no markers are selected (FCEUX does this). CancelSeekContextMenuItem.Enabled = MainForm.PauseOnFrame.HasValue; - BranchContextMenuItem.Visible = TasView1.CurrentCell?.RowIndex == Emulator.Frame; + BranchContextMenuItem.Visible = tasView.CurrentCell?.RowIndex == Emulator.Frame; SelectBetweenMarkersContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Sel. bet. Markers"]; ClearContextMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Clear Frames"]; From 239ce4481ad846a123bdb93ae7ddc6da8fd1a53b Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sat, 8 Feb 2025 22:30:29 -0500 Subject: [PATCH 23/65] Delete with multiple rows works. Works for multiple rows in a single group. However there is are bugs if there are multiple groups selected with CTRL such as not deleting properly. If multiple groups are selected right near frame 0, you can get a negative row index and error too. --- .../movie/tasproj/TasMovie.Editing.cs | 263 +++++++++--------- 1 file changed, 138 insertions(+), 125 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index b0753df0a1d..613b69a4a3a 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using System.Diagnostics; using System.Linq; using System.Runtime.InteropServices.ComTypes; using System.Text; @@ -179,56 +180,61 @@ public void RemoveFramesMPR(ICollection frames, int startOffset, int curren } - //StringBuilder tempLog = new StringBuilder(); - List lines = new List(); - char[] framePrevious = Log[prevFrame].ToCharArray(); - string frameNext = string.Empty; + ////StringBuilder tempLog = new StringBuilder(); + //List lines = new List(); + //char[] framePrevious = Log[prevFrame].ToCharArray(); + //string frameNext = string.Empty; - for (int i = startFrame; i < Log.Count; i++) - { - //do not assign characters from one frame to another if same - - if (i + 1 == Log.Count) - { - //add an blank section for that frame of the controller - framePrevious = Log[i].ToCharArray(); - for (int j = startOffset; j < startOffset + currentControlLength; j++) - { - framePrevious[j] = '.'; - } - lines.Add(new string(framePrevious)); - } - //if (i + 1 == Log.Count) - //{ - // lines.Add(Log[i]); - // //continue; - //} - //else if (Log[i].Substring(startOffset, currentControlLength) == Log[i + 1].Substring(startOffset, currentControlLength)) - //{ - // lines.Add(Log[i]); - //} - else - { - //takes characters from the controller and shifts then, leaving other controllers alone. - framePrevious = Log[i].ToCharArray(); - frameNext = Log[i + 1]; - for (int j = startOffset; j < startOffset + currentControlLength; j++) - { - framePrevious[j] = frameNext[j]; - } - lines.Add(new string(framePrevious)); - } - - } + //for (int i = startFrame; i < Log.Count; i++) + //{ + // //do not assign characters from one frame to another if same + + // if (i + 1 == Log.Count) + // { + // //add an blank section for that frame of the controller + // framePrevious = Log[i].ToCharArray(); + // for (int j = startOffset; j < startOffset + currentControlLength; j++) + // { + // framePrevious[j] = '.'; + // } + // lines.Add(new string(framePrevious)); + // } + // //if (i + 1 == Log.Count) + // //{ + // // lines.Add(Log[i]); + // // //continue; + // //} + // //else if (Log[i].Substring(startOffset, currentControlLength) == Log[i + 1].Substring(startOffset, currentControlLength)) + // //{ + // // lines.Add(Log[i]); + // //} + // else + // { + // //takes characters from the controller and shifts then, leaving other controllers alone. + // framePrevious = Log[i].ToCharArray(); + // frameNext = Log[i + 1]; + // for (int j = startOffset; j < startOffset + currentControlLength; j++) + // { + // framePrevious[j] = frameNext[j]; + // } + // lines.Add(new string(framePrevious)); + // } + + //} //replace from inital delete frame to end - Log.RemoveRange(startFrame, Log.Count - startFrame); //check -1 - Log.InsertRange(startFrame, lines); + //Log.RemoveRange(startFrame, Log.Count - startFrame); //check -1 + //Log.InsertRange(startFrame, lines); // Each block is logged as an individual ChangeLog entry //RemoveFrames(startFrame - numDeleted, prevFrame + 1 - numDeleted); + + //RemoveFramesMPR(startFrame - numDeleted >= 0 ? startFrame - numDeleted : 0, prevFrame + 1 - numDeleted, startOffset, currentControlLength); + + RemoveFramesMPR(startFrame - numDeleted, prevFrame + 1 - numDeleted, startOffset, currentControlLength); + numDeleted += prevFrame + 1 - startFrame; } } @@ -236,6 +242,95 @@ public void RemoveFramesMPR(ICollection frames, int startOffset, int curren +/// + /// Remove all frames between removeStart and removeUpTo (excluding removeUpTo). + /// + /// The first frame to remove. + /// The frame after the last frame to remove. + public void RemoveFramesMPR(int removeStart, int removeUpTo, int startOffset, int currentControlLength) + { + // Log.GetRange() might be preferrable, but Log's type complicates that. + string[] removedInputs = new string[removeUpTo - removeStart]; + //Log.CopyTo(removeStart, removedInputs, 0, removedInputs.Length); + + // Pre-process removed markers for the ChangeLog. + List removedMarkers = new List(); + if (BindMarkersToInput) + { + bool wasRecording = ChangeLog.IsRecording; + ChangeLog.IsRecording = false; + + // O(n^2) removal time, but removing many binded markers in a deleted section is probably rare. + removedMarkers = Markers.Where(m => m.Frame >= removeStart && m.Frame < removeUpTo).ToList(); + foreach (var marker in removedMarkers) + { + Markers.Remove(marker); + } + + ChangeLog.IsRecording = wasRecording; + } + + //ok right here start doing the shuffle dance + + //StringBuilder tempLog = new StringBuilder(); + List lines = new List(); + char[] framePrevious = Log[removeStart].ToCharArray(); + string frameNext = string.Empty; + + int removeNum = removeUpTo - removeStart; + + //so this is a bit more complicated. Here it will remove a range. + //if two frames to be deleted then need to get the chracters from the row two down from the startFrame. + //if beyond the range of the current Log.Count then just use empty inputs. + for (int i = removeStart; i < Log.Count; i++) + { + //do not assign characters from one frame to another if same + + if (i + removeNum >= Log.Count) + { + //add an blank section for that frame of the controller + //framePrevious = Log[i].ToCharArray(); + //for (int j = startOffset; j < startOffset + currentControlLength; j++) + //{ + // framePrevious[j] = '.'; + //} + //lines.Add(new string(framePrevious)); + lines.Add(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController)); + } + else + { + //takes characters from the controller and shifts then, leaving other controllers alone. + framePrevious = Log[i].ToCharArray(); + frameNext = Log[i + removeNum]; + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + framePrevious[j] = frameNext[j]; + } + lines.Add(new string(framePrevious)); + } + + } + + //replace from inital delete frame to end + Log.RemoveRange(removeStart, Log.Count - removeStart); //check -1 + Log.InsertRange(removeStart, lines); + + //og + //Log.RemoveRange(removeStart, removeUpTo - removeStart); + + ShiftBindedMarkers(removeUpTo, removeStart - removeUpTo); + + Changes = true; + InvalidateAfter(removeStart); + + ChangeLog.AddRemoveFrames( + removeStart, + removeUpTo, + removedInputs.ToList(), + removedMarkers, + $"Remove frames {removeStart}-{removeUpTo - 1}" + ); + } @@ -283,89 +378,7 @@ public void RemoveFrames(int removeStart, int removeUpTo) ); } - ///// - ///// Remove all frames between removeStart and removeUpTo (excluding removeUpTo). - ///// - ///// The first frame to remove. - ///// The frame after the last frame to remove. - //public void RemoveFramesMPR(int removeStart, int removeUpTo, int startOffset, int currentControlLength) - //{ - // // Log.GetRange() might be preferrable, but Log's type complicates that. - // string[] removedInputs = new string[removeUpTo - removeStart]; - // Log.CopyTo(removeStart, removedInputs, 0, removedInputs.Length); - - // // Pre-process removed markers for the ChangeLog. - // List removedMarkers = new List(); - // if (BindMarkersToInput) - // { - // bool wasRecording = ChangeLog.IsRecording; - // ChangeLog.IsRecording = false; - - // // O(n^2) removal time, but removing many binded markers in a deleted section is probably rare. - // removedMarkers = Markers.Where(m => m.Frame >= removeStart && m.Frame < removeUpTo).ToList(); - // foreach (var marker in removedMarkers) - // { - // Markers.Remove(marker); - // } - - // ChangeLog.IsRecording = wasRecording; - // } - - // //ok right here start doing the shuffle dance - - // //StringBuilder tempLog = new StringBuilder(); - // List lines = new List(); - // char[] framePrevious = Log[removeStart].ToCharArray(); - // string frameNext = string.Empty; - - - // for (int i = removeStart; i < Log.Count; i++) - // { - // //do not assign characters from one frame to another if same - // { - // if (i + 1 == Log.Count) - // { - // lines.Add(Log[i]); - // //continue; - // } - // else if (Log[i].Substring(startOffset, currentControlLength) == Log[i + 1].Substring(startOffset, currentControlLength)) - // { - // lines.Add(Log[i]); - // } - // else - // { - // //takes characters from the controller and shifts then, leaving other controllers alone. - // framePrevious = Log[i].ToCharArray(); - // frameNext = Log[i + 1]; - // for (int j = startOffset; j < startOffset + currentControlLength; j++) - // { - // framePrevious[j] = frameNext[j]; - // } - // lines.Add(new string(framePrevious)); - // } - // } - // } - // Log.RemoveRange(removeStart, Log.Count - removeStart-1); //check -1 - // Log.InsertRange(removeStart, lines); - - - // //og - // Log.RemoveRange(removeStart, removeUpTo - removeStart); - - // ShiftBindedMarkers(removeUpTo, removeStart - removeUpTo); - - // Changes = true; - // InvalidateAfter(removeStart); - - // ChangeLog.AddRemoveFrames( - // removeStart, - // removeUpTo, - // removedInputs.ToList(), - // removedMarkers, - // $"Remove frames {removeStart}-{removeUpTo - 1}" - // ); - //} - + //public void RemoveFrameMPR(int frame, int startOffset, int currentControlLength) //{ // RemoveFramesMPR(frame, frame + 1, startOffset, currentControlLength); From b0803394c19af901c039f0dc712dc445eb7b7907 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sat, 8 Feb 2025 22:34:02 -0500 Subject: [PATCH 24/65] Little comment cleanup Little comment cleanup --- .../movie/tasproj/TasMovie.Editing.cs | 57 +------------------ 1 file changed, 1 insertion(+), 56 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 613b69a4a3a..a9555d4054f 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -179,55 +179,6 @@ public void RemoveFramesMPR(ICollection frames, int startOffset, int curren prevFrame = frame; } - - ////StringBuilder tempLog = new StringBuilder(); - //List lines = new List(); - //char[] framePrevious = Log[prevFrame].ToCharArray(); - //string frameNext = string.Empty; - - - //for (int i = startFrame; i < Log.Count; i++) - //{ - // //do not assign characters from one frame to another if same - - // if (i + 1 == Log.Count) - // { - // //add an blank section for that frame of the controller - // framePrevious = Log[i].ToCharArray(); - // for (int j = startOffset; j < startOffset + currentControlLength; j++) - // { - // framePrevious[j] = '.'; - // } - // lines.Add(new string(framePrevious)); - // } - // //if (i + 1 == Log.Count) - // //{ - // // lines.Add(Log[i]); - // // //continue; - // //} - // //else if (Log[i].Substring(startOffset, currentControlLength) == Log[i + 1].Substring(startOffset, currentControlLength)) - // //{ - // // lines.Add(Log[i]); - // //} - // else - // { - // //takes characters from the controller and shifts then, leaving other controllers alone. - // framePrevious = Log[i].ToCharArray(); - // frameNext = Log[i + 1]; - // for (int j = startOffset; j < startOffset + currentControlLength; j++) - // { - // framePrevious[j] = frameNext[j]; - // } - // lines.Add(new string(framePrevious)); - // } - - //} - //replace from inital delete frame to end - //Log.RemoveRange(startFrame, Log.Count - startFrame); //check -1 - //Log.InsertRange(startFrame, lines); - - - // Each block is logged as an individual ChangeLog entry //RemoveFrames(startFrame - numDeleted, prevFrame + 1 - numDeleted); @@ -280,7 +231,7 @@ public void RemoveFramesMPR(int removeStart, int removeUpTo, int startOffset, in int removeNum = removeUpTo - removeStart; //so this is a bit more complicated. Here it will remove a range. - //if two frames to be deleted then need to get the chracters from the row two down from the startFrame. + //if two frames to be deleted then need to get the characters from the row two down from the startFrame. //if beyond the range of the current Log.Count then just use empty inputs. for (int i = removeStart; i < Log.Count; i++) { @@ -289,12 +240,6 @@ public void RemoveFramesMPR(int removeStart, int removeUpTo, int startOffset, in if (i + removeNum >= Log.Count) { //add an blank section for that frame of the controller - //framePrevious = Log[i].ToCharArray(); - //for (int j = startOffset; j < startOffset + currentControlLength; j++) - //{ - // framePrevious[j] = '.'; - //} - //lines.Add(new string(framePrevious)); lines.Add(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController)); } else From aba71120e41f25ffc3c9340181ddb3743d18c223 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sat, 8 Feb 2025 23:30:34 -0500 Subject: [PATCH 25/65] Clear works from Context Menu --- .../movie/interfaces/ITasMovie.cs | 4 ++- .../movie/tasproj/TasMovie.Editing.cs | 26 ++++++++++++++----- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 23 ++++++++++------ 3 files changed, 37 insertions(+), 16 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs index aef560120f7..980ac3708b8 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs @@ -30,7 +30,9 @@ public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable /// /// Replaces the given frame's input with an empty frame /// - void ClearFrame(int frame); + void ClearFrame(int frame); + + void ClearFrameMPR(int frame, int startOffset, int currentControlLength); void GreenzoneCurrentFrame(); void ToggleBoolState(int frame, string buttonName); diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index a9555d4054f..edc943dc33d 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -95,6 +95,23 @@ public void ClearFrame(int frame) ChangeLog.SetGeneralRedo(); } + public void ClearFrameMPR(int frame, int startOffset, int currentControlLength) + { + ChangeLog.AddGeneralUndo(frame, frame, $"Clear Frame: {frame}"); + + char[] curFrame = Log[frame].ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + curFrame[j] = '.'; + } + + SetFrameAt(frame, new string(curFrame)); + Changes = true; + + InvalidateAfter(frame); + ChangeLog.SetGeneralRedo(); + } + private void ShiftBindedMarkers(int frame, int offset) { if (BindMarkersToInput) @@ -322,12 +339,7 @@ public void RemoveFrames(int removeStart, int removeUpTo) $"Remove frames {removeStart}-{removeUpTo - 1}" ); } - - - //public void RemoveFrameMPR(int frame, int startOffset, int currentControlLength) - //{ - // RemoveFramesMPR(frame, frame + 1, startOffset, currentControlLength); - //} + public void InsertInput(int frame, string inputState) { @@ -424,7 +436,7 @@ public void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLe string framePrevious = string.Empty; char[] frameNext = Log[frame].ToCharArray(); - //damn this is disgustingly lengthy. + //inserted empty controller first for (int j = startOffset; j < startOffset + currentControlLength; j++) { diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 8038d9149c3..7db32ca7757 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -561,18 +561,26 @@ private void CutMenuItem_Click(object sender, EventArgs e) private void ClearFramesMenuItem_Click(object sender, EventArgs e) { //will have to get the current tasview - foreach (InputRoll tasView in TasViews) + for (int i = 0; i < TasViews.Count; i++) { - if (tasView.Focused && tasView.AnyRowsSelected) + if (TasViews[i].Focused && TasViews[i].AnyRowsSelected) //moving out of for loop to only have the currently focused tasview cloned { + int startOffset = 1; //starts with "|" + for (int k = 0; k < i; k++) //add up inputs to get start string offset + { + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[i].Count; + var firstWithInput = FirstNonEmptySelectedFrame; bool needsToRollback = firstWithInput.HasValue && firstWithInput < Emulator.Frame; - var rollBackFrame = TasView1.SelectionStartIndex ?? 0; + var rollBackFrame = TasViews[i].SelectionStartIndex ?? 0; - CurrentTasMovie.ChangeLog.BeginNewBatch($"Clear frames {TasView1.SelectionStartIndex}-{TasView1.SelectionEndIndex}"); - foreach (int frame in tasView.SelectedRows) + CurrentTasMovie.ChangeLog.BeginNewBatch($"Clear frames {TasViews[i].SelectionStartIndex}-{TasViews[i].SelectionEndIndex}"); + foreach (int frame in TasViews[i].SelectedRows) { - CurrentTasMovie.ClearFrame(frame); + CurrentTasMovie.ClearFrameMPR(frame, startOffset, currentControlLength); } CurrentTasMovie.ChangeLog.EndBatch(); @@ -596,7 +604,6 @@ private void DeleteFramesMenuItem_Click(object sender, EventArgs e) { int startOffset = 1; //starts with "|" - //for (int k = i; k >= 0; k--) for (int k = 0; k < i; k++) //add up inputs to get start string offset { startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; @@ -615,7 +622,7 @@ private void DeleteFramesMenuItem_Click(object sender, EventArgs e) return; } - CurrentTasMovie.RemoveFramesMPR(TasViews[i].SelectedRows.ToArray(), startOffset, currentControlLength); + CurrentTasMovie.RemoveFramesMPR(TasViews[i].SelectedRows.ToArray(), startOffset, currentControlLength); SetTasViewRowCount(); SetSplicer(); From 5680c6d0ddb2d6cefa8416435d2393c65694ac7e Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sat, 8 Feb 2025 23:51:55 -0500 Subject: [PATCH 26/65] Clear Works There is an issue with how I am checking the focus. Works fine for ContextMenu, but if you select, hover over a different tasview, then use the Menu at the top of the form then it can select the wrong tasview to do an edit. Try MouseUp or a SelectedItem event to set a variable for focused tasview. --- .../tools/TAStudioMPR/TAStudioMPR.cs | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index e92f90191a8..029c642335f 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -1274,17 +1274,25 @@ public void DeleteFrames(int beginningFrame, int numberOfFrames) } public void ClearFrames(int beginningFrame, int numberOfFrames) { - foreach (InputRoll tasView in TasViews) + for (int i = 0; i < TasViews.Count; i++) { - if (tasView.Focused && tasView.AnyRowsSelected) + if (TasViews[i].Focused && TasViews[i].AnyRowsSelected) //moving out of for loop to only have the currently focused tasview cloned { if (beginningFrame < CurrentTasMovie.InputLogLength) { - var needsToRollback = tasView.SelectionStartIndex < Emulator.Frame; + int startOffset = 1; //starts with "|" + for (int k = 0; k < i; k++) //add up inputs to get start string offset + { + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[i].Count; + + var needsToRollback = TasViews[i].SelectionStartIndex < Emulator.Frame; int last = Math.Min(beginningFrame + numberOfFrames, CurrentTasMovie.InputLogLength); - for (int i = beginningFrame; i < last; i++) + foreach (int frame in TasViews[i].SelectedRows) { - CurrentTasMovie.ClearFrame(i); + CurrentTasMovie.ClearFrameMPR(frame, startOffset, currentControlLength); } if (needsToRollback) From 230aa6e260cb047e9d6126b6f0dae65a308cf51a Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sun, 9 Feb 2025 00:35:19 -0500 Subject: [PATCH 27/65] using SelectedIndexChanged instead of Focus This fixes issues of the wrong tasView being selected for functions like Clear() --- .../tools/TAStudioMPR/TAStudioMPR.ListView.cs | 1 + .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 50 +++++++++---------- .../tools/TAStudioMPR/TAStudioMPR.cs | 1 + 3 files changed, 26 insertions(+), 26 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs index 74d3db10017..5b671adc831 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs @@ -1223,6 +1223,7 @@ private void TasView_MouseMove(object sender, MouseEventArgs e) private void TasView_SelectedIndexChanged(object sender, EventArgs e) { SetSplicer(); + CurrentTasView = sender as InputRoll; } public void AnalogIncrementByOne() diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 7db32ca7757..30dd2a07922 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -560,39 +560,37 @@ private void CutMenuItem_Click(object sender, EventArgs e) private void ClearFramesMenuItem_Click(object sender, EventArgs e) { - //will have to get the current tasview - for (int i = 0; i < TasViews.Count; i++) + int tasViewIndex = TasViews.IndexOf(CurrentTasView); + + if (CurrentTasView.AnyRowsSelected) //moving out of for loop to only have the currently focused tasview cloned { - if (TasViews[i].Focused && TasViews[i].AnyRowsSelected) //moving out of for loop to only have the currently focused tasview cloned + int startOffset = 1; //starts with "|" + for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset { - int startOffset = 1; //starts with "|" - for (int k = 0; k < i; k++) //add up inputs to get start string offset - { - startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; - startOffset += 1; //add 1 for pipe - } - int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[i].Count; - - var firstWithInput = FirstNonEmptySelectedFrame; - bool needsToRollback = firstWithInput.HasValue && firstWithInput < Emulator.Frame; - var rollBackFrame = TasViews[i].SelectionStartIndex ?? 0; + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; - CurrentTasMovie.ChangeLog.BeginNewBatch($"Clear frames {TasViews[i].SelectionStartIndex}-{TasViews[i].SelectionEndIndex}"); - foreach (int frame in TasViews[i].SelectedRows) - { - CurrentTasMovie.ClearFrameMPR(frame, startOffset, currentControlLength); - } + var firstWithInput = FirstNonEmptySelectedFrame; + bool needsToRollback = firstWithInput.HasValue && firstWithInput < Emulator.Frame; + var rollBackFrame = TasViews[tasViewIndex].SelectionStartIndex ?? 0; - CurrentTasMovie.ChangeLog.EndBatch(); + CurrentTasMovie.ChangeLog.BeginNewBatch($"Clear frames {TasViews[tasViewIndex].SelectionStartIndex}-{TasViews[tasViewIndex].SelectionEndIndex}"); + foreach (int frame in TasViews[tasViewIndex].SelectedRows) + { + CurrentTasMovie.ClearFrameMPR(frame, startOffset, currentControlLength); + } - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(rollBackFrame); - DoAutoRestore(); - } + CurrentTasMovie.ChangeLog.EndBatch(); - FullRefresh(); + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(rollBackFrame); + DoAutoRestore(); } + + FullRefresh(); } } diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 029c642335f..95bca2bb8f3 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -62,6 +62,7 @@ public static Icon ToolIcon public Font TasViewFont { get; set; } = new Font("Arial", 8.25F, FontStyle.Bold, GraphicsUnit.Point, 0); public List TasViews = new List(); + public InputRoll CurrentTasView = new InputRoll(); //For various events. Set in TasView_SelectedIndexChanged public class TAStudioSettingsMPR { public TAStudioSettingsMPR() From 182d028c13fbef3ddc5bca3d20365a3c7274e299 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sun, 9 Feb 2025 01:03:00 -0500 Subject: [PATCH 28/65] Menu Items Progress. Clear, Insert, Delete work with no incorrect tasview selection --- .../movie/interfaces/ITasMovie.cs | 1 + .../movie/tasproj/TasMovie.Editing.cs | 61 +++++++++ .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 117 +++++++++--------- .../tools/TAStudioMPR/TAStudioMPR.cs | 68 +++++++--- 4 files changed, 170 insertions(+), 77 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs index 980ac3708b8..08c3edd44b2 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs @@ -45,6 +45,7 @@ public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable void InsertInput(int frame, IEnumerable inputStates); void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLength, int count = 1); + void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlLength, int count = 1); diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index edc943dc33d..f7ad2c55709 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -482,6 +482,67 @@ public void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLe ChangeLog.AddInsertFrames(frame, count, $"Insert {count} empty frame(s) at {frame}"); } + + //For multiple Frame Inputs. Complex enough to have a separate func and make it faster. + public void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlLength, int count = 1) + { + frame = Math.Min(frame, Log.Count); + + //insert it at end since the inputs have to shift + Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); + + //StringBuilder tempLog = new StringBuilder(); + List lines = new List(); + string framePrevious = string.Empty; + char[] frameNext = Log[frame].ToCharArray(); + + + //inserted empty controller first + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + frameNext[j] = '.'; + } + + lines.Add(new string(frameNext)); + + for (int i = frame; i < Log.Count; i++) + { + //do not assign characters from one frame to another if same + { + if (i + 1 == Log.Count) + { + lines.Add(Log[i]); + //continue; + } + //else if (Log[i].Substring(startOffset, currentControlLength) == Log[i + 1].Substring(startOffset, currentControlLength)) + //{ + // lines.Add(Log[i]); + //} + else + { + //takes characters from the controller and shifts then, leaving other controllers alone. + framePrevious = Log[i]; + frameNext = Log[i + 1].ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + frameNext[j] = framePrevious[j]; + } + lines.Add(new string(frameNext)); + } + } + } + Log.RemoveRange(frame, Log.Count - frame - 1); + Log.InsertRange(frame, lines); + //Log.InsertRange(frame, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); + + ShiftBindedMarkers(frame, count); + + Changes = true; + InvalidateAfter(frame); + + ChangeLog.AddInsertFrames(frame, count, $"Insert {count} empty frame(s) at {frame}"); + } + private void ExtendMovieForEdit(int numFrames) { diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 30dd2a07922..8bba96ca614 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -562,7 +562,7 @@ private void ClearFramesMenuItem_Click(object sender, EventArgs e) { int tasViewIndex = TasViews.IndexOf(CurrentTasView); - if (CurrentTasView.AnyRowsSelected) //moving out of for loop to only have the currently focused tasview cloned + if (CurrentTasView.AnyRowsSelected) { int startOffset = 1; //starts with "|" for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset @@ -596,45 +596,43 @@ private void ClearFramesMenuItem_Click(object sender, EventArgs e) private void DeleteFramesMenuItem_Click(object sender, EventArgs e) { - for (int i = 0; i < TasViews.Count; i++) + int tasViewIndex = TasViews.IndexOf(CurrentTasView); + + if (CurrentTasView.AnyRowsSelected) { - if (TasViews[i].Focused && TasViews[i].AnyRowsSelected) //moving out of for loop to only have the currently focused tasview cloned + int startOffset = 1; //starts with "|" + for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset { + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; - int startOffset = 1; //starts with "|" - for (int k = 0; k < i; k++) //add up inputs to get start string offset - { - startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; - startOffset += 1; //add 1 for pipe - } - int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[i].Count; - - - var selectionStart = TasViews[i].SelectionStartIndex; - var needsToRollback = selectionStart < Emulator.Frame; - var rollBackFrame = selectionStart ?? 0; - if (rollBackFrame >= CurrentTasMovie.InputLogLength) - { - // Cannot delete non-existent frames - FullRefresh(); - return; - } - - CurrentTasMovie.RemoveFramesMPR(TasViews[i].SelectedRows.ToArray(), startOffset, currentControlLength); - SetTasViewRowCount(); - SetSplicer(); + var selectionStart = CurrentTasView.SelectionStartIndex; + var needsToRollback = selectionStart < Emulator.Frame; + var rollBackFrame = selectionStart ?? 0; + if (rollBackFrame >= CurrentTasMovie.InputLogLength) + { + // Cannot delete non-existent frames + FullRefresh(); + return; + } - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(rollBackFrame); - DoAutoRestore(); - } + CurrentTasMovie.RemoveFramesMPR(CurrentTasView.SelectedRows.ToArray(), startOffset, currentControlLength); + SetTasViewRowCount(); + SetSplicer(); - FullRefresh(); + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(rollBackFrame); + DoAutoRestore(); } + + FullRefresh(); } } + private void CloneFramesMenuItem_Click(object sender, EventArgs e) { CloneFramesXTimes(1); @@ -700,48 +698,47 @@ private void CloneFramesXTimes(int timesToClone) private void InsertFrameMenuItem_Click(object sender, EventArgs e) { - for (int i = 0; i < TasViews.Count; i++) + int tasViewIndex = TasViews.IndexOf(CurrentTasView); + + if (CurrentTasView.AnyRowsSelected) { - if (TasViews[i].Focused && TasViews[i].AnyRowsSelected) //moving out of for loop to only have the currently focused tasview cloned + int startOffset = 1; //starts with "|" + //for (int k = i; k >= 0; k--) + for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset { - int startOffset = 1; //starts with "|" - //for (int k = i; k >= 0; k--) - for (int k = 0; k < i; k++) //add up inputs to get start string offset - { - startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; - startOffset += 1; //add 1 for pipe - } - int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[i].Count; - - var selectionStart = TasViews[i].SelectionStartIndex; - var insertionFrame = selectionStart ?? 0; - var needsToRollback = selectionStart < Emulator.Frame; + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; - CurrentTasMovie.InsertEmptyFrameMPR(insertionFrame, startOffset, currentControlLength); + var selectionStart = CurrentTasView.SelectionStartIndex; + var insertionFrame = selectionStart ?? 0; + var needsToRollback = selectionStart < Emulator.Frame; - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(insertionFrame); - DoAutoRestore(); - } + CurrentTasMovie.InsertEmptyFrameMPR(insertionFrame, startOffset, currentControlLength); - FullRefresh(); + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(insertionFrame); + DoAutoRestore(); } + + FullRefresh(); + } } private void InsertNumFramesMenuItem_Click(object sender, EventArgs e) { - foreach (InputRoll tasView in TasViews) + int tasViewIndex = TasViews.IndexOf(CurrentTasView); + + if (CurrentTasView.AnyRowsSelected) { - if (tasView.Focused && tasView.AnyRowsSelected) + var insertionFrame = CurrentTasView.SelectionStartIndex ?? 0; + using var framesPrompt = new FramesPrompt(); + if (framesPrompt.ShowDialogOnScreen().IsOk()) { - var insertionFrame = TasView1.SelectionStartIndex ?? 0; - using var framesPrompt = new FramesPrompt(); - if (framesPrompt.ShowDialogOnScreen().IsOk()) - { - InsertNumFrames(insertionFrame, framesPrompt.Frames); - } + InsertNumFramesMPR(insertionFrame, framesPrompt.Frames); } } } diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 95bca2bb8f3..7b4205adc2b 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -278,7 +278,7 @@ private void Tastudio_Load(object sender, EventArgs e) Close(); return; } - + if (TasViews[1].Rotatable) { RightClickMenu.Items.AddRange(TasViews[1].GenerateContextMenuItems() @@ -1221,27 +1221,61 @@ private void DoTriggeredAutoRestoreIfNeeded() } } - public void InsertNumFrames(int insertionFrame, int numberOfFrames) + //public void InsertNumFrames(int insertionFrame, int numberOfFrames) + //{ + // foreach (InputRoll tasView in TasViews) + // { + // if (tasView.Focused && tasView.AnyRowsSelected) + // { + // if (insertionFrame <= CurrentTasMovie.InputLogLength) + // { + // var needsToRollback = tasView.SelectionStartIndex < Emulator.Frame; + + // CurrentTasMovie.InsertEmptyFrame(insertionFrame, numberOfFrames); + + // if (needsToRollback) + // { + // GoToLastEmulatedFrameIfNecessary(insertionFrame); + // DoAutoRestore(); + // } + // else + // { + // RefreshForInputChange(insertionFrame); + // } + // } + // } + // } + //} + + public void InsertNumFramesMPR(int insertionFrame, int numberOfFrames) { - foreach (InputRoll tasView in TasViews) + int tasViewIndex = TasViews.IndexOf(CurrentTasView); + + if (CurrentTasView.AnyRowsSelected) { - if (tasView.Focused && tasView.AnyRowsSelected) + int startOffset = 1; //starts with "|" + //for (int k = i; k >= 0; k--) + for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset { - if (insertionFrame <= CurrentTasMovie.InputLogLength) - { - var needsToRollback = tasView.SelectionStartIndex < Emulator.Frame; + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; - CurrentTasMovie.InsertEmptyFrame(insertionFrame, numberOfFrames); + if (insertionFrame <= CurrentTasMovie.InputLogLength) + { + var needsToRollback = CurrentTasView.SelectionStartIndex < Emulator.Frame; - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(insertionFrame); - DoAutoRestore(); - } - else - { - RefreshForInputChange(insertionFrame); - } + CurrentTasMovie.InsertEmptyFramesMPR(insertionFrame, startOffset, currentControlLength, numberOfFrames); + + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(insertionFrame); + DoAutoRestore(); + } + else + { + RefreshForInputChange(insertionFrame); } } } From 7145cb272f982958d2b41ed4145a28cd82e137e1 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sun, 9 Feb 2025 03:07:45 -0500 Subject: [PATCH 29/65] Insert multiple has a bug somewhere --- .../movie/tasproj/TasMovie.Editing.cs | 86 +++++++++++-------- 1 file changed, 50 insertions(+), 36 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index f7ad2c55709..e3e9f4b8c60 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -99,7 +99,7 @@ public void ClearFrameMPR(int frame, int startOffset, int currentControlLength) { ChangeLog.AddGeneralUndo(frame, frame, $"Clear Frame: {frame}"); - char[] curFrame = Log[frame].ToCharArray(); + char[] curFrame = Log[frame].ToCharArray(); for (int j = startOffset; j < startOffset + currentControlLength; j++) { curFrame[j] = '.'; @@ -210,7 +210,7 @@ public void RemoveFramesMPR(ICollection frames, int startOffset, int curren -/// + /// /// Remove all frames between removeStart and removeUpTo (excluding removeUpTo). /// /// The first frame to remove. @@ -258,7 +258,7 @@ public void RemoveFramesMPR(int removeStart, int removeUpTo, int startOffset, in { //add an blank section for that frame of the controller lines.Add(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController)); - } + } else { //takes characters from the controller and shifts then, leaving other controllers alone. @@ -339,7 +339,7 @@ public void RemoveFrames(int removeStart, int removeUpTo) $"Remove frames {removeStart}-{removeUpTo - 1}" ); } - + public void InsertInput(int frame, string inputState) { @@ -436,7 +436,7 @@ public void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLe string framePrevious = string.Empty; char[] frameNext = Log[frame].ToCharArray(); - + //inserted empty controller first for (int j = startOffset; j < startOffset + currentControlLength; j++) { @@ -482,65 +482,79 @@ public void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLe ChangeLog.AddInsertFrames(frame, count, $"Insert {count} empty frame(s) at {frame}"); } - + //For multiple Frame Inputs. Complex enough to have a separate func and make it faster. - public void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlLength, int count = 1) + public void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlLength, int addNewCount = 1) { frame = Math.Min(frame, Log.Count); //insert it at end since the inputs have to shift - Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); + Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), addNewCount)); //StringBuilder tempLog = new StringBuilder(); List lines = new List(); string framePrevious = string.Empty; char[] frameNext = Log[frame].ToCharArray(); - - //inserted empty controller first - for (int j = startOffset; j < startOffset + currentControlLength; j++) - { - frameNext[j] = '.'; - } - - lines.Add(new string(frameNext)); - + //initial empty frames + //for (int i=0; i < addNewCount; i++) + //{ + // //inserted empty controller first + // for (int j = startOffset; j < startOffset + currentControlLength; j++) + // { + // frameNext[j] = '.'; + // } + // lines.Add(new string(frameNext)); + //} + + int tempEmptyFramesCount = addNewCount; for (int i = frame; i < Log.Count; i++) { //do not assign characters from one frame to another if same + if (tempEmptyFramesCount > 0) { - if (i + 1 == Log.Count) + frameNext = Log[i].ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) { - lines.Add(Log[i]); - //continue; + frameNext[j] = '.'; } - //else if (Log[i].Substring(startOffset, currentControlLength) == Log[i + 1].Substring(startOffset, currentControlLength)) - //{ - // lines.Add(Log[i]); - //} - else + lines.Add(new string(frameNext)); + tempEmptyFramesCount--; + } + if (i + addNewCount >= Log.Count) + { + //lines.Add(Log[i]); + //continue; + } + //else if (Log[i].Substring(startOffset, currentControlLength) == Log[i + 1].Substring(startOffset, currentControlLength)) + //{ + // lines.Add(Log[i]); + //} + else + { + //takes characters from the controller and shifts then, leaving other controllers alone. + framePrevious = Log[i]; + frameNext = Log[i + addNewCount].ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) { - //takes characters from the controller and shifts then, leaving other controllers alone. - framePrevious = Log[i]; - frameNext = Log[i + 1].ToCharArray(); - for (int j = startOffset; j < startOffset + currentControlLength; j++) - { - frameNext[j] = framePrevious[j]; - } - lines.Add(new string(frameNext)); + frameNext[j] = framePrevious[j]; } + lines.Add(new string(frameNext)); } + + } - Log.RemoveRange(frame, Log.Count - frame - 1); + //Log.RemoveRange(frame, Log.Count - frame - 1); + Log.RemoveRange(frame, Log.Count - frame ); Log.InsertRange(frame, lines); //Log.InsertRange(frame, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); - ShiftBindedMarkers(frame, count); + ShiftBindedMarkers(frame, addNewCount); Changes = true; InvalidateAfter(frame); - ChangeLog.AddInsertFrames(frame, count, $"Insert {count} empty frame(s) at {frame}"); + ChangeLog.AddInsertFrames(frame, addNewCount, $"Insert {addNewCount} empty frame(s) at {frame}"); } From e98dfe269728fe6ce5376fb79d5bb9ed561cfe54 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sun, 9 Feb 2025 03:41:06 -0500 Subject: [PATCH 30/65] Multiple insert bug progress? Seems to only happen when the insert amount is greater than Log.Count()? --- .../movie/tasproj/TasMovie.Editing.cs | 46 ++++++++++--------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index e3e9f4b8c60..b45adc5abfe 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -505,33 +505,35 @@ public void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlL // frameNext[j] = '.'; // } // lines.Add(new string(frameNext)); - //} - - int tempEmptyFramesCount = addNewCount; - for (int i = frame; i < Log.Count; i++) + //} + + //this loops for number of empty frames to be added + //int tempEmptyFramesCount = addNewCount; + for (int i = 0; i < addNewCount; i++) { - //do not assign characters from one frame to another if same - if (tempEmptyFramesCount > 0) - { - frameNext = Log[i].ToCharArray(); + //if (tempEmptyFramesCount > 0) + //{ + frameNext = Log[i + frame].ToCharArray(); for (int j = startOffset; j < startOffset + currentControlLength; j++) { frameNext[j] = '.'; } lines.Add(new string(frameNext)); - tempEmptyFramesCount--; - } - if (i + addNewCount >= Log.Count) - { - //lines.Add(Log[i]); - //continue; - } - //else if (Log[i].Substring(startOffset, currentControlLength) == Log[i + 1].Substring(startOffset, currentControlLength)) - //{ - // lines.Add(Log[i]); + //tempEmptyFramesCount--; //} - else - { + } + + + for (int i = frame; i < Log.Count; i++) + { + //do not assign characters from one frame to another if same + + //else + //{ + if (i + addNewCount >= Log.Count) + { + break; + } //takes characters from the controller and shifts then, leaving other controllers alone. framePrevious = Log[i]; frameNext = Log[i + addNewCount].ToCharArray(); @@ -540,12 +542,12 @@ public void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlL frameNext[j] = framePrevious[j]; } lines.Add(new string(frameNext)); - } + //} } //Log.RemoveRange(frame, Log.Count - frame - 1); - Log.RemoveRange(frame, Log.Count - frame ); + Log.RemoveRange(frame, Log.Count - frame -1); Log.InsertRange(frame, lines); //Log.InsertRange(frame, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); From 03c2951ce2dac550d21f0c2b03da07ac6d2cc869 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sun, 9 Feb 2025 03:50:11 -0500 Subject: [PATCH 31/65] Fixed Multiple Insert Not sure why that fixed it, when I am certain I tried that before. Maybe the code had not updated. --- src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index b45adc5abfe..9a72fa4e3e7 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -532,7 +532,9 @@ public void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlL //{ if (i + addNewCount >= Log.Count) { - break; + + + break; } //takes characters from the controller and shifts then, leaving other controllers alone. framePrevious = Log[i]; @@ -547,7 +549,7 @@ public void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlL } //Log.RemoveRange(frame, Log.Count - frame - 1); - Log.RemoveRange(frame, Log.Count - frame -1); + Log.RemoveRange(frame, Log.Count - frame); Log.InsertRange(frame, lines); //Log.InsertRange(frame, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); From 6f47c48eab6f615c2dc2c1861a387099a2b317a1 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sun, 9 Feb 2025 03:51:55 -0500 Subject: [PATCH 32/65] slight cleanup in InsertEmptyFramesMPR --- .../movie/tasproj/TasMovie.Editing.cs | 33 ++----------------- 1 file changed, 3 insertions(+), 30 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 9a72fa4e3e7..264f7903647 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -495,44 +495,21 @@ public void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlL List lines = new List(); string framePrevious = string.Empty; char[] frameNext = Log[frame].ToCharArray(); - - //initial empty frames - //for (int i=0; i < addNewCount; i++) - //{ - // //inserted empty controller first - // for (int j = startOffset; j < startOffset + currentControlLength; j++) - // { - // frameNext[j] = '.'; - // } - // lines.Add(new string(frameNext)); - //} - - //this loops for number of empty frames to be added - //int tempEmptyFramesCount = addNewCount; + for (int i = 0; i < addNewCount; i++) { - //if (tempEmptyFramesCount > 0) - //{ frameNext = Log[i + frame].ToCharArray(); for (int j = startOffset; j < startOffset + currentControlLength; j++) { frameNext[j] = '.'; } lines.Add(new string(frameNext)); - //tempEmptyFramesCount--; - //} } - for (int i = frame; i < Log.Count; i++) { - //do not assign characters from one frame to another if same - - //else - //{ if (i + addNewCount >= Log.Count) - { - + { break; } @@ -543,15 +520,11 @@ public void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlL { frameNext[j] = framePrevious[j]; } - lines.Add(new string(frameNext)); - //} - + lines.Add(new string(frameNext)); } - //Log.RemoveRange(frame, Log.Count - frame - 1); Log.RemoveRange(frame, Log.Count - frame); Log.InsertRange(frame, lines); - //Log.InsertRange(frame, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); ShiftBindedMarkers(frame, addNewCount); From 3325170f7706867e5943d7c489949e18f9c34892 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sun, 9 Feb 2025 12:46:57 -0500 Subject: [PATCH 33/65] Truncate() works for a controller truncates from frame to end of movie, but then finds last frame with no input and truncates whole movie at that point. --- .../movie/interfaces/ITasMovie.cs | 2 +- .../movie/tasproj/TasMovie.Editing.cs | 96 +++++++++++++++---- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 39 +++++--- 3 files changed, 103 insertions(+), 34 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs index 08c3edd44b2..badce41b9e1 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs @@ -57,7 +57,7 @@ public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable void RemoveFrames(int removeStart, int removeUpTo); void RemoveFramesMPR(ICollection frames, int startOffset, int currentControlLength); - //void RemoveFrameMPR(int frame, int startOffset, int currentControlLength); + void TruncateFramesMPR(int frame, int startOffset, int currentControlLength); void SetFrame(int frame, string source); diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 264f7903647..fac59cc5961 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -64,6 +64,63 @@ public override void Truncate(int frame) } } + public void TruncateFramesMPR(int frame, int startOffset, int currentControlLength) + { + bool endBatch = ChangeLog.BeginNewBatch($"Truncate Movie: {frame}", true); + ChangeLog.AddGeneralUndo(frame, InputLogLength - 1); + + char[] curFrame; + + //if (frame < Log.Count - 1) + //{ + // Changes = true; + //} + + if (frame < Log.Count) + { + //clear inputs for that controller until end of movie. + for (int i = frame; i < Log.Count; i++) + { + curFrame = Log[i].ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + curFrame[j] = '.'; + } + SetFrameAt(i, new string(curFrame)); + } + + + //Find last row with empty input + //Then remove Range then + int lastEmptyFrame = Log.Count - 1; + string noInput = Bk2LogEntryGenerator.EmptyEntry(Session.MovieController); + for (int i = Log.Count - 1; i >= frame; i--) + { + if(noInput == Log[i]) + { + lastEmptyFrame = i; + } + } + //truncate if there is empty input across all controllers past the frame selected for truncation + if (lastEmptyFrame >= frame) + { + Log.RemoveRange(lastEmptyFrame, Log.Count - lastEmptyFrame); + } + Changes = true; + } + + LagLog.RemoveFrom(frame); + TasStateManager.InvalidateAfter(frame); + GreenzoneInvalidated(frame); + Markers.TruncateAt(frame); + + ChangeLog.SetGeneralRedo(); + if (endBatch) + { + ChangeLog.EndBatch(); + } + } + public override void PokeFrame(int frame, IController source) { ChangeLog.AddGeneralUndo(frame, frame, $"Set Frame At: {frame}"); @@ -495,32 +552,31 @@ public void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlL List lines = new List(); string framePrevious = string.Empty; char[] frameNext = Log[frame].ToCharArray(); - + for (int i = 0; i < addNewCount; i++) { - frameNext = Log[i + frame].ToCharArray(); - for (int j = startOffset; j < startOffset + currentControlLength; j++) - { - frameNext[j] = '.'; - } - lines.Add(new string(frameNext)); + frameNext = Log[i + frame].ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + frameNext[j] = '.'; + } + lines.Add(new string(frameNext)); } - + for (int i = frame; i < Log.Count; i++) { - if (i + addNewCount >= Log.Count) - { - + if (i + addNewCount >= Log.Count) + { break; - } - //takes characters from the controller and shifts then, leaving other controllers alone. - framePrevious = Log[i]; - frameNext = Log[i + addNewCount].ToCharArray(); - for (int j = startOffset; j < startOffset + currentControlLength; j++) - { - frameNext[j] = framePrevious[j]; - } - lines.Add(new string(frameNext)); + } + //takes characters from the controller and shifts then, leaving other controllers alone. + framePrevious = Log[i]; + frameNext = Log[i + addNewCount].ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + frameNext[j] = framePrevious[j]; + } + lines.Add(new string(frameNext)); } Log.RemoveRange(frame, Log.Count - frame); diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 8bba96ca614..72c7bab3377 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -654,7 +654,6 @@ private void CloneFramesXTimes(int timesToClone) if (TasViews[i].Focused && TasViews[i].AnyRowsSelected) //moving out of for loop to only have the currently focused tasview cloned { int startOffset = 1; //starts with "|" - //for (int k = i; k >= 0; k--) for (int k = 0; k < i; k++) //add up inputs to get start string offset { startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; @@ -703,7 +702,6 @@ private void InsertFrameMenuItem_Click(object sender, EventArgs e) if (CurrentTasView.AnyRowsSelected) { int startOffset = 1; //starts with "|" - //for (int k = i; k >= 0; k--) for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset { startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; @@ -734,6 +732,14 @@ private void InsertNumFramesMenuItem_Click(object sender, EventArgs e) if (CurrentTasView.AnyRowsSelected) { + int startOffset = 1; //starts with "|" + for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset + { + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; + var insertionFrame = CurrentTasView.SelectionStartIndex ?? 0; using var framesPrompt = new FramesPrompt(); if (framesPrompt.ShowDialogOnScreen().IsOk()) @@ -745,23 +751,30 @@ private void InsertNumFramesMenuItem_Click(object sender, EventArgs e) private void TruncateMenuItem_Click(object sender, EventArgs e) { - foreach (InputRoll tasView in TasViews) + int tasViewIndex = TasViews.IndexOf(CurrentTasView); + + if (CurrentTasView.AnyRowsSelected) { - if (tasView.Focused && tasView.AnyRowsSelected) + int startOffset = 1; //starts with "|" + for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset { - var rollbackFrame = tasView.SelectionEndIndex ?? 0; - var needsToRollback = tasView.SelectionStartIndex < Emulator.Frame; + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; - CurrentTasMovie.Truncate(rollbackFrame); - MarkerControlMPR.MarkerInputRoll.TruncateSelection(CurrentTasMovie.Markers.Count - 1); + var rollbackFrame = CurrentTasView.SelectionEndIndex ?? 0; + var needsToRollback = CurrentTasView.SelectionStartIndex < Emulator.Frame; - if (needsToRollback) - { - GoToFrame(rollbackFrame); - } + CurrentTasMovie.TruncateFramesMPR(rollbackFrame,startOffset, currentControlLength); + MarkerControlMPR.MarkerInputRoll.TruncateSelection(CurrentTasMovie.Markers.Count - 1); - FullRefresh(); + if (needsToRollback) + { + GoToFrame(rollbackFrame); } + + FullRefresh(); } } From 988cef11f3e02ba377b83d4968f9fae97b234744 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sun, 9 Feb 2025 13:23:25 -0500 Subject: [PATCH 34/65] Clone() looks to be working might adjust to check the multiple clone for optimization --- .../movie/interfaces/ITasMovie.cs | 3 +- .../movie/tasproj/TasMovie.Editing.cs | 55 +++++++++++++++++ .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 61 ++++++++----------- 3 files changed, 84 insertions(+), 35 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs index badce41b9e1..a3fe14649c5 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs @@ -43,7 +43,8 @@ public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable void InsertInput(int frame, string inputState); void InsertInput(int frame, IEnumerable inputLog); void InsertInput(int frame, IEnumerable inputStates); - + void InsertInputMPR(int frame, IEnumerable inputLog, int startOffset, int currentControlLength); + void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLength, int count = 1); void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlLength, int count = 1); diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index fac59cc5961..1dff89fd08b 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -416,6 +416,61 @@ public void InsertInput(int frame, IEnumerable inputLog) ChangeLog.AddInsertInput(frame, inputLog.ToList(), $"Insert {inputLog.Count()} frame(s) at {frame}"); } + public void InsertInputMPR(int frame, IEnumerable inputLog, int startOffset, int currentControlLength) + { + + //insert it at end since the inputs have to shift + Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), inputLog.Count())); + + //StringBuilder tempLog = new StringBuilder(); + List lines = new List(); + string framePrevious = string.Empty; + char[] frameNext = Log[frame].ToCharArray(); + int addNewCount = inputLog.Count(); + int index = 0; + + + foreach (string newInputs in inputLog.ToList()) + { + frameNext = Log[index + frame].ToCharArray(); + + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + frameNext[j] = newInputs[j]; + } + lines.Add(new string(frameNext)); + index++; + } + + for (int i = frame; i < Log.Count; i++) + { + if (i + addNewCount >= Log.Count) + { + break; + } + //takes characters from the controller and shifts then, leaving other controllers alone. + framePrevious = Log[i]; + frameNext = Log[i + addNewCount].ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + frameNext[j] = framePrevious[j]; + } + lines.Add(new string(frameNext)); + + } + + Log.RemoveRange(frame, Log.Count - frame); + Log.InsertRange(frame, lines); + + + ShiftBindedMarkers(frame, inputLog.Count()); + + Changes = true; + InvalidateAfter(frame); + + ChangeLog.AddInsertInput(frame, inputLog.ToList(), $"Insert {inputLog.Count()} frame(s) at {frame}"); + } + public void InsertInput(int frame, IEnumerable inputStates) { // ChangeLog is done in the InsertInput call. diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 72c7bab3377..85f2e3b25e9 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -649,48 +649,41 @@ private void CloneFramesXTimesMenuItem_Click(object sender, EventArgs e) private void CloneFramesXTimes(int timesToClone) { - for (int i = 0; i < TasViews.Count; i++) + int tasViewIndex = TasViews.IndexOf(CurrentTasView); + + if (CurrentTasView.AnyRowsSelected) { - if (TasViews[i].Focused && TasViews[i].AnyRowsSelected) //moving out of for loop to only have the currently focused tasview cloned + int startOffset = 1; //starts with "|" + for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset { - int startOffset = 1; //starts with "|" - for (int k = 0; k < i; k++) //add up inputs to get start string offset - { - startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; - startOffset += 1; //add 1 for pipe - } - int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[i].Count; + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; - for (int j = 0; j < timesToClone; j++) - { + for (int j = 0; j < timesToClone; j++) + { + var framesToInsert = CurrentTasView.SelectedRows; + var insertionFrame = Math.Min((CurrentTasView.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); + var needsToRollback = CurrentTasView.SelectionStartIndex < Emulator.Frame; - var framesToInsert = TasViews[i].SelectedRows; - var insertionFrame = Math.Min((TasView1.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); - var needsToRollback = TasViews[i].SelectionStartIndex < Emulator.Frame; - - var inputLog = framesToInsert - .Select(frame => CurrentTasMovie.GetInputLogEntry(frame)) - .ToList(); - - //i don't know wtf i am doingn. come back after sleeping. - //i only want to clone the selected control group. - //A clone operation will insert the selected stuff AFTER the currently selected frames. - //All the other inputs besides the current controls need to stay the same. - //the current controller group need to shift down with the clone. - var inputLog2 = framesToInsert - .Select(frame => CurrentTasMovie.GetInputLogEntry(frame).Remove(startOffset, currentControlLength)) + var inputLog = framesToInsert + .Select(frame => CurrentTasMovie.GetInputLogEntry(frame)) .ToList(); - CurrentTasMovie.InsertInput(insertionFrame, inputLog); + //A clone operation will insert the selected stuff for currently selected frames. + //All the other inputs besides the current controls need to stay the same. + //the current controller group need to shift down with the clone. - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(insertionFrame); - DoAutoRestore(); - } + CurrentTasMovie.InsertInputMPR(insertionFrame, inputLog, startOffset, currentControlLength); - FullRefresh(); + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(insertionFrame); + DoAutoRestore(); } + + FullRefresh(); } } } @@ -766,7 +759,7 @@ private void TruncateMenuItem_Click(object sender, EventArgs e) var rollbackFrame = CurrentTasView.SelectionEndIndex ?? 0; var needsToRollback = CurrentTasView.SelectionStartIndex < Emulator.Frame; - CurrentTasMovie.TruncateFramesMPR(rollbackFrame,startOffset, currentControlLength); + CurrentTasMovie.TruncateFramesMPR(rollbackFrame, startOffset, currentControlLength); MarkerControlMPR.MarkerInputRoll.TruncateSelection(CurrentTasMovie.Markers.Count - 1); if (needsToRollback) From aed38b54e9cf9161fd0a4bf1f843f1ffd17ffbe8 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sun, 9 Feb 2025 13:56:24 -0500 Subject: [PATCH 35/65] working on Copy Paste --- .../movie/interfaces/ITasMovie.cs | 2 + .../movie/tasproj/TasMovie.Editing.cs | 41 ++++- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 165 ++++++++++++------ .../tools/TAStudioMPR/TAStudioMPR.cs | 4 +- 4 files changed, 159 insertions(+), 53 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs index a3fe14649c5..c3faff656f0 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs @@ -52,6 +52,8 @@ public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable void InsertEmptyFrame(int frame, int count = 1); int CopyOverInput(int frame, IEnumerable inputStates); + int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength); + void RemoveFrame(int frame); void RemoveFrames(ICollection frames); diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 1dff89fd08b..58c2561570d 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -417,8 +417,7 @@ public void InsertInput(int frame, IEnumerable inputLog) } public void InsertInputMPR(int frame, IEnumerable inputLog, int startOffset, int currentControlLength) - { - + { //insert it at end since the inputs have to shift Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), inputLog.Count())); @@ -522,6 +521,44 @@ public int CopyOverInput(int frame, IEnumerable inputStates) return firstChangedFrame; } + public int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength) + { + int firstChangedFrame = -1; + ChangeLog.BeginNewBatch($"Copy Over Input: {frame}"); + + var states = inputStates.ToList(); + + if (Log.Count < states.Count + frame) + { + ExtendMovieForEdit(states.Count + frame - Log.Count); + } + + ChangeLog.AddGeneralUndo(frame, frame + states.Count - 1, $"Copy Over Input: {frame}"); + + for (int i = 0; i < states.Count; i++) + { + if (Log.Count <= frame + i) + { + break; + } + + var entry = Bk2LogEntryGenerator.GenerateLogEntry(states[i]); + if (firstChangedFrame == -1 && Log[frame + i] != entry) + { + firstChangedFrame = frame + i; + } + + Log[frame + i] = entry; + } + + ChangeLog.EndBatch(); + Changes = true; + InvalidateAfter(frame); + + ChangeLog.SetGeneralRedo(); + return firstChangedFrame; + } + public void InsertEmptyFrame(int frame, int count = 1) { frame = Math.Min(frame, Log.Count); diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 85f2e3b25e9..0ab17bce52d 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -393,78 +393,143 @@ private void ReselectClipboardMenuItem_Click(object sender, EventArgs e) private void CopyMenuItem_Click(object sender, EventArgs e) { - foreach (InputRoll tasView in TasViews) + int tasViewIndex = TasViews.IndexOf(CurrentTasView); + + if (CurrentTasView.AnyRowsSelected) { - if (tasView.Focused && tasView.AnyRowsSelected) - { - _tasClipboard.Clear(); - var list = tasView.SelectedRows.ToArray(); - var sb = new StringBuilder(); + _tasClipboard.Clear(); + var list = CurrentTasView.SelectedRows.ToArray(); + var sb = new StringBuilder(); - foreach (var index in list) + foreach (var index in list) + { + var input = CurrentTasMovie.GetInputState(index); + if (input == null) { - var input = CurrentTasMovie.GetInputState(index); - if (input == null) - { - break; - } - - _tasClipboard.Add(new TasClipboardEntry(index, input)); - var logEntry = Bk2LogEntryGenerator.GenerateLogEntry(input); - sb.AppendLine(Settings.CopyIncludesFrameNo ? $"{FrameToStringPadded(index)} {logEntry}" : logEntry); + break; } - Clipboard.SetDataObject(sb.ToString()); - SetSplicer(); + _tasClipboard.Add(new TasClipboardEntry(index, input)); + var logEntry = Bk2LogEntryGenerator.GenerateLogEntry(input); + sb.AppendLine(Settings.CopyIncludesFrameNo ? $"{FrameToStringPadded(index)} {logEntry}" : logEntry); } + Clipboard.SetDataObject(sb.ToString()); + SetSplicer(); } - - } + //private void PasteMenuItem_Click(object sender, EventArgs e) + //{ + // int tasViewIndex = TasViews.IndexOf(CurrentTasView); + + // if (CurrentTasView.AnyRowsSelected) + // { + // // TODO: if highlighting 2 rows and pasting 3, only paste 2 of them + // // FCEUX Taseditor doesn't do this, but I think it is the expected behavior in editor programs + + // // TODO: copy paste from PasteInsertMenuItem_Click! + // IDataObject data = Clipboard.GetDataObject(); + // if (data != null && data.GetDataPresent(DataFormats.StringFormat)) + // { + // string input = (string) data.GetData(DataFormats.StringFormat); + // if (!string.IsNullOrWhiteSpace(input)) + // { + // string[] lines = input.Split('\n'); + // if (lines.Length > 0) + // { + // _tasClipboard.Clear(); + // int linesToPaste = lines.Length; + // if (lines[lines.Length - 1].Length is 0) linesToPaste--; + // for (int i = 0; i < linesToPaste; i++) + // { + // var line = ControllerFromMnemonicStr(lines[i]); + // if (line == null) + // { + // return; + // } + + // _tasClipboard.Add(new TasClipboardEntry(i, line)); + // } + + // var rollbackFrame = CurrentTasMovie.CopyOverInput(CurrentTasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState)); + // if (rollbackFrame > 0) + // { + // GoToLastEmulatedFrameIfNecessary(rollbackFrame); + // DoAutoRestore(); + // } + + // FullRefresh(); + // } + // } + // } + // } + //} private void PasteMenuItem_Click(object sender, EventArgs e) { - foreach (InputRoll tasView in TasViews) + int tasViewIndex = TasViews.IndexOf(CurrentTasView); + + if (CurrentTasView.AnyRowsSelected) { - if (tasView.Focused && tasView.AnyRowsSelected) - { - // TODO: if highlighting 2 rows and pasting 3, only paste 2 of them - // FCEUX Taseditor doesn't do this, but I think it is the expected behavior in editor programs + // TODO: if highlighting 2 rows and pasting 3, only paste 2 of them + // FCEUX Taseditor doesn't do this, but I think it is the expected behavior in editor programs - // TODO: copy paste from PasteInsertMenuItem_Click! - IDataObject data = Clipboard.GetDataObject(); - if (data != null && data.GetDataPresent(DataFormats.StringFormat)) + // TODO: copy paste from PasteInsertMenuItem_Click! + IDataObject data = Clipboard.GetDataObject(); + if (data != null && data.GetDataPresent(DataFormats.StringFormat)) + { + string input = (string) data.GetData(DataFormats.StringFormat); + if (!string.IsNullOrWhiteSpace(input)) { - string input = (string) data.GetData(DataFormats.StringFormat); - if (!string.IsNullOrWhiteSpace(input)) + string[] lines = input.Split('\n'); + if (lines.Length > 0) { - string[] lines = input.Split('\n'); - if (lines.Length > 0) + _tasClipboard.Clear(); + int linesToPaste = lines.Length; + if (lines[lines.Length - 1].Length is 0) linesToPaste--; + for (int i = 0; i < linesToPaste; i++) { - _tasClipboard.Clear(); - int linesToPaste = lines.Length; - if (lines[lines.Length - 1].Length is 0) linesToPaste--; - for (int i = 0; i < linesToPaste; i++) + var line = ControllerFromMnemonicStr(lines[i]); + if (line == null) { - var line = ControllerFromMnemonicStr(lines[i]); - if (line == null) - { - return; - } - - _tasClipboard.Add(new TasClipboardEntry(i, line)); + return; } - var rollbackFrame = CurrentTasMovie.CopyOverInput(tasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState)); - if (rollbackFrame > 0) - { - GoToLastEmulatedFrameIfNecessary(rollbackFrame); - DoAutoRestore(); - } + _tasClipboard.Add(new TasClipboardEntry(i, line)); + } - FullRefresh(); + + int startOffset = 1; //starts with "|" + for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset + { + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; + + var framesToInsert = CurrentTasView.SelectedRows; + var insertionFrame = Math.Min((CurrentTasView.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); + var needsToRollback = CurrentTasView.SelectionStartIndex < Emulator.Frame; + + var inputLog = framesToInsert + .Select(frame => CurrentTasMovie.GetInputLogEntry(frame)) + .ToList(); + + //A clone operation will insert the selected stuff for currently selected frames. + //All the other inputs besides the current controls need to stay the same. + //the current controller group need to shift down with the clone. + + //CurrentTasMovie.InsertInputMPR(insertionFrame, inputLog, startOffset, currentControlLength); + var rollbackFrame = CurrentTasMovie.CopyOverInputMPR(CurrentTasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState), startOffset, currentControlLength); + + + if (rollbackFrame > 0) + { + GoToLastEmulatedFrameIfNecessary(rollbackFrame); + DoAutoRestore(); + } + + FullRefresh(); } } } diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 7b4205adc2b..f1147d3400f 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -4,12 +4,14 @@ using System.Linq; using System.Windows.Forms; using System.ComponentModel; +using System.Runtime.Remoting.Channels; using BizHawk.Client.Common; using BizHawk.Client.EmuHawk.ToolExtensions; using BizHawk.Client.EmuHawk.Properties; + using BizHawk.Common.StringExtensions; using BizHawk.Emulation.Common; -using System.Runtime.Remoting.Channels; + namespace BizHawk.Client.EmuHawk { From ade34e237852bc94b88c9ed02ea71f76dcbc1dfc Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Sun, 9 Feb 2025 17:47:32 -0500 Subject: [PATCH 36/65] Copy and Paste Over Existing Input Works Atm cannot copy and paste from one input grid to another with the same number of inputs. Only copy and past within same input grid. --- .../movie/tasproj/TasMovie.Editing.cs | 36 ++++++++++++++++--- 1 file changed, 31 insertions(+), 5 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 58c2561570d..b304164cffd 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -96,7 +96,7 @@ public void TruncateFramesMPR(int frame, int startOffset, int currentControlLeng string noInput = Bk2LogEntryGenerator.EmptyEntry(Session.MovieController); for (int i = Log.Count - 1; i >= frame; i--) { - if(noInput == Log[i]) + if (noInput == Log[i]) { lastEmptyFrame = i; } @@ -108,7 +108,7 @@ public void TruncateFramesMPR(int frame, int startOffset, int currentControlLeng } Changes = true; } - + LagLog.RemoveFrom(frame); TasStateManager.InvalidateAfter(frame); GreenzoneInvalidated(frame); @@ -417,7 +417,7 @@ public void InsertInput(int frame, IEnumerable inputLog) } public void InsertInputMPR(int frame, IEnumerable inputLog, int startOffset, int currentControlLength) - { + { //insert it at end since the inputs have to shift Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), inputLog.Count())); @@ -428,7 +428,7 @@ public void InsertInputMPR(int frame, IEnumerable inputLog, int startOff int addNewCount = inputLog.Count(); int index = 0; - + foreach (string newInputs in inputLog.ToList()) { frameNext = Log[index + frame].ToCharArray(); @@ -532,9 +532,16 @@ public int CopyOverInputMPR(int frame, IEnumerable inputStates, int { ExtendMovieForEdit(states.Count + frame - Log.Count); } + int addNewCount = inputStates.Count(); + //Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), addNewCount)); + ChangeLog.AddGeneralUndo(frame, frame + states.Count - 1, $"Copy Over Input: {frame}"); + + char[] inputFrame; + char[] logFrame; + List lines = new List(); for (int i = 0; i < states.Count; i++) { if (Log.Count <= frame + i) @@ -548,8 +555,27 @@ public int CopyOverInputMPR(int frame, IEnumerable inputStates, int firstChangedFrame = frame + i; } - Log[frame + i] = entry; + logFrame = Log[frame + i].ToCharArray(); + inputFrame = entry.ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + logFrame[j] = inputFrame[j]; + } + //.Add(new string(logFrame)); + + Log[frame + i] = new string(logFrame); } + ////do for rest for of movie + //for(int i=frame+addNewCount;i Date: Sun, 9 Feb 2025 23:24:28 -0500 Subject: [PATCH 37/65] increased form size to 1050 still need a good way to resize the tasviews --- src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index f1147d3400f..45f21333acd 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -152,7 +152,7 @@ public TAStudioMPR() private void Tastudio_Load(object sender, EventArgs e) { - + this.Width = 1050; TasView1.QueryItemText += TasView_QueryItemText; TasView1.QueryItemBkColor += TasView_QueryItemBkColor; TasView1.QueryRowBkColor += TasView_QueryRowBkColor; @@ -294,9 +294,6 @@ private void Tastudio_Load(object sender, EventArgs e) for (int i = 0; i < TasViews.Count; i++) { - - - TasViews[i].ScrollSpeed = Settings.ScrollSpeed; TasViews[i].AlwaysScroll = Settings.FollowCursorAlwaysScroll; TasViews[i].ScrollMethod = Settings.FollowCursorScrollMethod; From 44985e6f8c17cbebbd6ea2f9cec336b4afc3fe3d Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Mon, 10 Feb 2025 00:39:49 -0500 Subject: [PATCH 38/65] Made Number of TasViews Dynamic Also there is a bug with delete when a different tasview has an input on the final Log.Count-1 frame. --- .../tools/TAStudioMPR/TAStudioMPR.cs | 254 +++++++++++------- 1 file changed, 157 insertions(+), 97 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 45f21333acd..bdd23ed77b6 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -11,6 +11,7 @@ using BizHawk.Common.StringExtensions; using BizHawk.Emulation.Common; +using Silk.NET.OpenGL; namespace BizHawk.Client.EmuHawk @@ -173,107 +174,166 @@ private void Tastudio_Load(object sender, EventArgs e) //get number of controllers MnemonicMapPlayerController + int controllersCount = Emulator.ControllerDefinition.ControlsOrdered.Count; + var startLocation = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); + + //start from "2" since first TasView1 is already defined in designer. + for (int i = 2; i < controllersCount + 1; i++) + { + InputRoll tasView = new InputRoll(); + tasView.Name = "TasView" + i.ToString(); + tasView.Parent = MainVertialSplit.Panel1; + tasView.Width = 250; + tasView.Height = TasView1.Height; + tasView.Location = startLocation; + startLocation.X += tasView.Width + 10; //for next tasView + + tasView.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left); + + tasView.CellHeightPadding = 0; + tasView.ChangeSelectionWhenPaging = false; + tasView.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0))); + tasView.FullRowSelect = true; + tasView.InputPaintingMode = true; + tasView.LetKeysModifySelection = true; + tasView.Rotatable = true; + tasView.ScrollMethod = "near"; + tasView.ScrollSpeed = 1; + + tasView.QueryItemText += TasView_QueryItemText; + tasView.QueryItemBkColor += TasView_QueryItemBkColor; + tasView.QueryRowBkColor += TasView_QueryRowBkColor; + tasView.QueryItemIcon += TasView_QueryItemIcon; + tasView.QueryFrameLag += TasView_QueryFrameLag; + tasView.PointedCellChanged += TasView_PointedCellChanged; + tasView.MouseLeave += TAStudio_MouseLeave; + + tasView.CellDropped += TasView_CellDropped; + tasView.ColumnClick += TasView_ColumnClick; + tasView.ColumnReordered += TasView_ColumnReordered; + tasView.ColumnRightClick += TasView_ColumnRightClick; + tasView.KeyDown += TasView_KeyDown; + tasView.MouseDoubleClick += TasView_MouseDoubleClick; + tasView.MouseDown += TasView_MouseDown; + tasView.MouseEnter += TasView_MouseEnter; + tasView.MouseMove += TasView_MouseMove; + tasView.MouseUp += TasView_MouseUp; + tasView.RightMouseScrolled += TasView_MouseWheel; + tasView.SelectedIndexChanged += TasView_SelectedIndexChanged; + + tasView.CellHovered += (_, e) => + { + if (e.NewCell.RowIndex is null) + { + toolTip1.Show(e.NewCell.Column!.Name, tasView, PointToClient(Cursor.Position)); + } + }; + TasViews.Add(tasView); + } + var a = TasViews.Count; + //foreach (InputRoll tasView in TasViews) //{ - InputRoll TasView2 = new InputRoll(); - TasView2.Name = "TasView2"; - TasView2.Parent = MainVertialSplit.Panel1; - TasView2.Width = 250; - TasView2.Height = 550; - TasView2.Location = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); - TasView2.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left); - - TasView2.CellHeightPadding = 0; - TasView2.ChangeSelectionWhenPaging = false; - TasView2.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0))); - TasView2.FullRowSelect = true; - TasView2.InputPaintingMode = true; - TasView2.LetKeysModifySelection = true; - TasView2.Rotatable = true; - TasView2.ScrollMethod = "near"; - TasView2.ScrollSpeed = 1; - - TasView2.QueryItemText += TasView_QueryItemText; - TasView2.QueryItemBkColor += TasView_QueryItemBkColor; - TasView2.QueryRowBkColor += TasView_QueryRowBkColor; - TasView2.QueryItemIcon += TasView_QueryItemIcon; - TasView2.QueryFrameLag += TasView_QueryFrameLag; - TasView2.PointedCellChanged += TasView_PointedCellChanged; - TasView2.MouseLeave += TAStudio_MouseLeave; - - TasView2.CellDropped += TasView_CellDropped; - TasView2.ColumnClick += TasView_ColumnClick; - TasView2.ColumnReordered += TasView_ColumnReordered; - TasView2.ColumnRightClick += TasView_ColumnRightClick; - TasView2.KeyDown += TasView_KeyDown; - TasView2.MouseDoubleClick += TasView_MouseDoubleClick; - TasView2.MouseDown += TasView_MouseDown; - TasView2.MouseEnter += TasView_MouseEnter; - TasView2.MouseMove += TasView_MouseMove; - TasView2.MouseUp += TasView_MouseUp; - TasView2.RightMouseScrolled += TasView_MouseWheel; - TasView2.SelectedIndexChanged += TasView_SelectedIndexChanged; - - TasView2.CellHovered += (_, e) => - { - if (e.NewCell.RowIndex is null) - { - toolTip1.Show(e.NewCell.Column!.Name, TasView2, PointToClient(Cursor.Position)); - } - }; - TasViews.Add(TasView2); - - InputRoll TasView3 = new InputRoll(); - TasView3.Name = "TasView3"; - TasView3.Parent = MainVertialSplit.Panel1; - TasView3.Width = 250; - TasView3.Height = 550; - TasView3.Location = new System.Drawing.Point(TasView2.Location.X + TasView2.Width + 10, 20); - TasView3.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left); - - TasView3.CellHeightPadding = 0; - TasView3.ChangeSelectionWhenPaging = false; - TasView3.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0))); - TasView3.FullRowSelect = true; - TasView3.InputPaintingMode = true; - TasView3.LetKeysModifySelection = true; - TasView3.Rotatable = true; - TasView3.ScrollMethod = "near"; - TasView3.ScrollSpeed = 1; - - TasView3.QueryItemText += TasView_QueryItemText; - TasView3.QueryItemBkColor += TasView_QueryItemBkColor; - TasView3.QueryRowBkColor += TasView_QueryRowBkColor; - TasView3.QueryItemIcon += TasView_QueryItemIcon; - TasView3.QueryFrameLag += TasView_QueryFrameLag; - TasView3.PointedCellChanged += TasView_PointedCellChanged; - TasView3.MouseLeave += TAStudio_MouseLeave; - - TasView3.CellDropped += TasView_CellDropped; - TasView3.ColumnClick += TasView_ColumnClick; - TasView3.ColumnReordered += TasView_ColumnReordered; - TasView3.ColumnRightClick += TasView_ColumnRightClick; - TasView3.KeyDown += TasView_KeyDown; - TasView3.MouseDoubleClick += TasView_MouseDoubleClick; - TasView3.MouseDown += TasView_MouseDown; - TasView3.MouseEnter += TasView_MouseEnter; - TasView3.MouseMove += TasView_MouseMove; - TasView3.MouseUp += TasView_MouseUp; - TasView3.RightMouseScrolled += TasView_MouseWheel; - TasView3.SelectedIndexChanged += TasView_SelectedIndexChanged; - - TasView3.CellHovered += (_, e) => - { - if (e.NewCell.RowIndex is null) - { - toolTip1.Show(e.NewCell.Column!.Name, TasView3, PointToClient(Cursor.Position)); - } - }; - TasViews.Add(TasView3); + //InputRoll TasView2 = new InputRoll(); + //TasView2.Name = "TasView2"; + //TasView2.Parent = MainVertialSplit.Panel1; + //TasView2.Width = 250; + //TasView2.Height = 550; + //TasView2.Location = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); + //TasView2.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + //| System.Windows.Forms.AnchorStyles.Left); + + //TasView2.CellHeightPadding = 0; + //TasView2.ChangeSelectionWhenPaging = false; + //TasView2.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0))); + //TasView2.FullRowSelect = true; + //TasView2.InputPaintingMode = true; + //TasView2.LetKeysModifySelection = true; + //TasView2.Rotatable = true; + //TasView2.ScrollMethod = "near"; + //TasView2.ScrollSpeed = 1; + + //TasView2.QueryItemText += TasView_QueryItemText; + //TasView2.QueryItemBkColor += TasView_QueryItemBkColor; + //TasView2.QueryRowBkColor += TasView_QueryRowBkColor; + //TasView2.QueryItemIcon += TasView_QueryItemIcon; + //TasView2.QueryFrameLag += TasView_QueryFrameLag; + //TasView2.PointedCellChanged += TasView_PointedCellChanged; + //TasView2.MouseLeave += TAStudio_MouseLeave; + + //TasView2.CellDropped += TasView_CellDropped; + //TasView2.ColumnClick += TasView_ColumnClick; + //TasView2.ColumnReordered += TasView_ColumnReordered; + //TasView2.ColumnRightClick += TasView_ColumnRightClick; + //TasView2.KeyDown += TasView_KeyDown; + //TasView2.MouseDoubleClick += TasView_MouseDoubleClick; + //TasView2.MouseDown += TasView_MouseDown; + //TasView2.MouseEnter += TasView_MouseEnter; + //TasView2.MouseMove += TasView_MouseMove; + //TasView2.MouseUp += TasView_MouseUp; + //TasView2.RightMouseScrolled += TasView_MouseWheel; + //TasView2.SelectedIndexChanged += TasView_SelectedIndexChanged; + + //TasView2.CellHovered += (_, e) => + //{ + // if (e.NewCell.RowIndex is null) + // { + // toolTip1.Show(e.NewCell.Column!.Name, TasView2, PointToClient(Cursor.Position)); + // } + //}; + //TasViews.Add(TasView2); + + //InputRoll TasView3 = new InputRoll(); + //TasView3.Name = "TasView3"; + //TasView3.Parent = MainVertialSplit.Panel1; + //TasView3.Width = 250; + //TasView3.Height = 550; + //TasView3.Location = new System.Drawing.Point(TasView2.Location.X + TasView2.Width + 10, 20); + //TasView3.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + //| System.Windows.Forms.AnchorStyles.Left); + + //TasView3.CellHeightPadding = 0; + //TasView3.ChangeSelectionWhenPaging = false; + //TasView3.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0))); + //TasView3.FullRowSelect = true; + //TasView3.InputPaintingMode = true; + //TasView3.LetKeysModifySelection = true; + //TasView3.Rotatable = true; + //TasView3.ScrollMethod = "near"; + //TasView3.ScrollSpeed = 1; + + //TasView3.QueryItemText += TasView_QueryItemText; + //TasView3.QueryItemBkColor += TasView_QueryItemBkColor; + //TasView3.QueryRowBkColor += TasView_QueryRowBkColor; + //TasView3.QueryItemIcon += TasView_QueryItemIcon; + //TasView3.QueryFrameLag += TasView_QueryFrameLag; + //TasView3.PointedCellChanged += TasView_PointedCellChanged; + //TasView3.MouseLeave += TAStudio_MouseLeave; + + //TasView3.CellDropped += TasView_CellDropped; + //TasView3.ColumnClick += TasView_ColumnClick; + //TasView3.ColumnReordered += TasView_ColumnReordered; + //TasView3.ColumnRightClick += TasView_ColumnRightClick; + //TasView3.KeyDown += TasView_KeyDown; + //TasView3.MouseDoubleClick += TasView_MouseDoubleClick; + //TasView3.MouseDown += TasView_MouseDown; + //TasView3.MouseEnter += TasView_MouseEnter; + //TasView3.MouseMove += TasView_MouseMove; + //TasView3.MouseUp += TasView_MouseUp; + //TasView3.RightMouseScrolled += TasView_MouseWheel; + //TasView3.SelectedIndexChanged += TasView_SelectedIndexChanged; + + //TasView3.CellHovered += (_, e) => + //{ + // if (e.NewCell.RowIndex is null) + // { + // toolTip1.Show(e.NewCell.Column!.Name, TasView3, PointToClient(Cursor.Position)); + // } + //}; + //TasViews.Add(TasView3); if (!Engage()) { From 47aca1f47c054dd58820c10f1930943dc40b2373 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Mon, 10 Feb 2025 00:45:01 -0500 Subject: [PATCH 39/65] removed incorrectly added event --- .../tools/TAStudioMPR/TAStudioMPR.Designer.cs | 1 - src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs | 6 ------ 2 files changed, 7 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs index 868c7e4b31e..fed6a031519 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs @@ -903,7 +903,6 @@ private void InitializeComponent() this.TasView1.RightMouseScrolled += new BizHawk.Client.EmuHawk.InputRoll.RightMouseScrollEventHandler(this.TasView_MouseWheel); this.TasView1.ColumnReordered += new BizHawk.Client.EmuHawk.InputRoll.ColumnReorderedEventHandler(this.TasView_ColumnReordered); this.TasView1.CellDropped += new BizHawk.Client.EmuHawk.InputRoll.CellDroppedEvent(this.TasView_CellDropped); - this.TasView1.Enter += new System.EventHandler(this.TasView1_Enter); this.TasView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TasView_KeyDown); this.TasView1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseDoubleClick); this.TasView1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TasView_MouseDown); diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index bdd23ed77b6..958f46b169b 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -1649,11 +1649,5 @@ private IMovieController ControllerFromMnemonicStr(string inputLogEntry) } //} } - - - private void TasView1_Enter(object sender, EventArgs e) - { - var a = TasView1.Focused; - } } } From 0d96aff5b5e61bf18abeaaf8022f92ba2a44e6cb Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Mon, 10 Feb 2025 01:07:41 -0500 Subject: [PATCH 40/65] Fixed off by 1 in Delete when an input was at end of log --- .../movie/tasproj/TasMovie.Editing.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index b304164cffd..68b168884f9 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -311,10 +311,14 @@ public void RemoveFramesMPR(int removeStart, int removeUpTo, int startOffset, in { //do not assign characters from one frame to another if same - if (i + removeNum >= Log.Count) + if (i + removeNum == Log.Count) { - //add an blank section for that frame of the controller - lines.Add(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController)); + + lines.Add(Log[i]); + } + else if (i + removeNum > Log.Count) + {//add an blank section for that frame of the controller + //lines.Add(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController)); } else { From f19ce95581753affc131ad73316ecaf0b097c80e Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Mon, 10 Feb 2025 03:24:52 -0500 Subject: [PATCH 41/65] HotKeys Added Needed to add unique keys to Bindings and MainForm.Hotkeys. Added TAStudioMPR to ToolManager .these are throwing out of scope errors for some reason so commented them out. //case "Toggle Follow Cursor (For MPR)": // if (!Tools.IsLoaded()) return false; // var playbackBox = Tools.TAStudioMPR.TasPlaybackBoxMPR; // playbackBox.FollowCursor = !playbackBox.FollowCursor; // break; //case "Toggle Auto-Restore (For MPR)": // if (!Tools.IsLoaded()) return false; // var playbackBox1 = Tools.TAStudioMPR.TasPlaybackBoxMPR; // playbackBox1.AutoRestore = !playbackBox1.AutoRestore; // break; //case "Toggle Turbo Seek (For MPR)": // if (!Tools.IsLoaded()) return false; // var playbackBox2 = Tools.TAStudioMPR.TasPlaybackBoxMPR; // playbackBox2.TurboSeek = !playbackBox2.TurboSeek; // break; --- src/BizHawk.Client.Common/config/Binding.cs | 25 ++++ src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs | 99 +++++++++++++++ .../tools/TAStudioMPR/TAStudioMPR.Designer.cs | 12 +- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 2 +- .../tools/TAStudioMPR/TAStudioMPR.cs | 114 ++---------------- .../tools/ToolManager.cs | 2 + 6 files changed, 146 insertions(+), 108 deletions(-) diff --git a/src/BizHawk.Client.Common/config/Binding.cs b/src/BizHawk.Client.Common/config/Binding.cs index 41df4767924..cbfa6c291af 100644 --- a/src/BizHawk.Client.Common/config/Binding.cs +++ b/src/BizHawk.Client.Common/config/Binding.cs @@ -152,6 +152,31 @@ void Bind(string tabGroup, string displayName, string defaultBinding = "", strin Bind("TAStudio", "Analog Maximum", "Right"); Bind("TAStudio", "Analog Minimum", "Left"); + //TAStudioMPR + Bind("TAStudioMPR", "Add Branch (For MPR)", "Alt+Insert"); + Bind("TAStudioMPR", "Delete Branch (For MPR)", "Alt+Delete"); + Bind("TAStudioMPR", "Show Cursor (For MPR)"); + Bind("TAStudioMPR", "Toggle Follow Cursor (For MPR)", "Shift+F"); + Bind("TAStudioMPR", "Toggle Auto-Restore (For MPR)", "Shift+R"); + Bind("TAStudioMPR", "Toggle Turbo Seek (For MPR)", "Shift+S"); + Bind("TAStudioMPR", "Undo (For MPR)", "Ctrl+Z"); // TODO: these are getting not unique enough + Bind("TAStudioMPR", "Redo (For MPR)", "Ctrl+Y"); + Bind("TAStudioMPR", "Sel. bet. Markers (For MPR)", "Ctrl+A"); + Bind("TAStudioMPR", "Select All (For MPR)", "Ctrl+Shift+A"); + Bind("TAStudioMPR", "Reselect Clip. (For MPR)", "Ctrl+B"); + Bind("TAStudioMPR", "Clear Frames (For MPR)", "Delete"); + Bind("TAStudioMPR", "Delete Frames (For MPR)", "Ctrl+Delete"); + Bind("TAStudioMPR", "Insert Frame (For MPR)", "Insert"); + Bind("TAStudioMPR", "Insert # Frames (For MPR)", "Shift+Insert"); + Bind("TAStudioMPR", "Clone Frames (For MPR)", "Ctrl+Insert"); + Bind("TAStudioMPR", "Clone # Times (For MPR)", "Ctrl+Shift+Insert"); + Bind("TAStudioMPR", "Analog Increment (For MPR)", "Up"); + Bind("TAStudioMPR", "Analog Decrement (For MPR)", "Down"); + Bind("TAStudioMPR", "Analog Incr. by 10 (For MPR)", "Shift+Up"); + Bind("TAStudioMPR", "Analog Decr. by 10 (For MPR)", "Shift+Down"); + Bind("TAStudioMPR", "Analog Maximum (For MPR)", "Right"); + Bind("TAStudioMPR", "Analog Minimum (For MPR)", "Left"); + Bind("SNES", "Toggle BG 1"); Bind("SNES", "Toggle BG 2"); Bind("SNES", "Toggle BG 3"); diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs b/src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs index fe016b73092..dc063866f48 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs @@ -446,6 +446,105 @@ void SelectAndLoadFromSlot(int slot) Tools.TAStudio.AnalogMin(); break; + // TAStudioMPR + case "Add Branch (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.AddBranchExternal(); + break; + case "Delete Branch (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.RemoveBranchExternal(); + break; + case "Show Cursor (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.SetVisibleFrame(); + Tools.TAStudioMPR.RefreshDialog(); + break; + //case "Toggle Follow Cursor (For MPR)": + // if (!Tools.IsLoaded()) return false; + // var playbackBox = Tools.TAStudioMPR.TasPlaybackBoxMPR; + // playbackBox.FollowCursor = !playbackBox.FollowCursor; + // break; + //case "Toggle Auto-Restore (For MPR)": + // if (!Tools.IsLoaded()) return false; + // var playbackBox1 = Tools.TAStudioMPR.TasPlaybackBoxMPR; + // playbackBox1.AutoRestore = !playbackBox1.AutoRestore; + // break; + //case "Toggle Turbo Seek (For MPR)": + // if (!Tools.IsLoaded()) return false; + // var playbackBox2 = Tools.TAStudioMPR.TasPlaybackBoxMPR; + // playbackBox2.TurboSeek = !playbackBox2.TurboSeek; + // break; + case "Undo (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.UndoExternal(); + break; + case "Redo (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.RedoExternal(); + break; + case "Sel. bet. Markers (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.SelectBetweenMarkersExternal(); + break; + case "Select All (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.SelectAllExternal(); + break; + case "Reselect Clip. (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.ReselectClipboardExternal(); + break; + case "Clear Frames (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.ClearFramesExternal(); + break; + case "Insert Frame (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.InsertFrameExternal(); + break; + case "Insert # Frames (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.InsertNumFramesExternal(); + break; + case "Delete Frames (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.DeleteFramesExternal(); + break; + case "Clone Frames (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.CloneFramesExternal(); + break; + case "Clone # Times (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.CloneFramesXTimesExternal(); + break; + case "Analog Increment (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.AnalogIncrementByOne(); + break; + case "Analog Decrement (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.AnalogDecrementByOne(); + break; + case "Analog Incr. by 10 (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.AnalogIncrementByTen(); + break; + case "Analog Decr. by 10 (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.AnalogDecrementByTen(); + break; + case "Analog Maximum (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.AnalogMax(); + break; + case "Analog Minimum (For MPR)": + if (!Tools.IsLoaded()) return false; + Tools.TAStudioMPR.AnalogMin(); + break; + + // SNES case "Toggle BG 1": SNES_ToggleBg(1); diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs index fed6a031519..40b1949fd09 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs @@ -191,6 +191,7 @@ private void InitializeComponent() this.BranchesMarkersSplit = new System.Windows.Forms.SplitContainer(); this.MainVertialSplit = new System.Windows.Forms.SplitContainer(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); + this.disableTasViewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.TASMenu.SuspendLayout(); this.TasStatusStrip.SuspendLayout(); this.RightClickMenu.SuspendLayout(); @@ -497,7 +498,8 @@ private void InitializeComponent() this.AutopauseAtEndOfMovieMenuItem, this.sepToolStripMenuItem, this.autoHoldFireToolStripMenuItem, - this.SetFontMenuItem}); + this.SetFontMenuItem, + this.disableTasViewToolStripMenuItem}); this.ConfigSubMenu.Text = "&Config"; this.ConfigSubMenu.DropDownOpened += new System.EventHandler(this.ConfigSubMenu_DropDownOpened); // @@ -1162,6 +1164,13 @@ private void InitializeComponent() this.MainVertialSplit.TabIndex = 10; this.MainVertialSplit.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.MainVerticalSplit_SplitterMoved); // + // disableTasViewToolStripMenuItem + // + this.disableTasViewToolStripMenuItem.Name = "disableTasViewToolStripMenuItem"; + this.disableTasViewToolStripMenuItem.Size = new System.Drawing.Size(272, 22); + this.disableTasViewToolStripMenuItem.Text = "Disable TasView"; + this.disableTasViewToolStripMenuItem.Click += new System.EventHandler(this.disableTasViewToolStripMenuItem_Click); + // // TAStudioMPR // this.AllowDrop = true; @@ -1360,5 +1369,6 @@ private void InitializeComponent() private BizHawk.WinForms.Controls.ToolStripMenuItemEx SetFontMenuItem; private BizHawk.WinForms.Controls.ToolStripMenuItemEx CopyIncludesFrameNoMenuItem; private System.Windows.Forms.ToolTip toolTip1; + private System.Windows.Forms.ToolStripMenuItem disableTasViewToolStripMenuItem; } } \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 0ab17bce52d..fa03cbab9a3 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -185,7 +185,7 @@ private void SaveSelectionToMacroMenuItem_Click(object sender, EventArgs e) private void PlaceMacroAtSelectionMenuItem_Click(object sender, EventArgs e) { - if (!TasView1.Focused && TasView1.AnyRowsSelected) + if (!CurrentTasView.Focused && CurrentTasView.AnyRowsSelected) { return; } diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 958f46b169b..27bbc45a909 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -170,10 +170,8 @@ private void Tastudio_Load(object sender, EventArgs e) }; TasViews.Add(TasView1); - //get number of controllers MnemonicMapPlayerController - int controllersCount = Emulator.ControllerDefinition.ControlsOrdered.Count; var startLocation = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); @@ -230,110 +228,8 @@ private void Tastudio_Load(object sender, EventArgs e) } }; TasViews.Add(tasView); - - } - var a = TasViews.Count; - - //foreach (InputRoll tasView in TasViews) - //{ - //InputRoll TasView2 = new InputRoll(); - //TasView2.Name = "TasView2"; - //TasView2.Parent = MainVertialSplit.Panel1; - //TasView2.Width = 250; - //TasView2.Height = 550; - //TasView2.Location = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); - //TasView2.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - //| System.Windows.Forms.AnchorStyles.Left); - - //TasView2.CellHeightPadding = 0; - //TasView2.ChangeSelectionWhenPaging = false; - //TasView2.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0))); - //TasView2.FullRowSelect = true; - //TasView2.InputPaintingMode = true; - //TasView2.LetKeysModifySelection = true; - //TasView2.Rotatable = true; - //TasView2.ScrollMethod = "near"; - //TasView2.ScrollSpeed = 1; - - //TasView2.QueryItemText += TasView_QueryItemText; - //TasView2.QueryItemBkColor += TasView_QueryItemBkColor; - //TasView2.QueryRowBkColor += TasView_QueryRowBkColor; - //TasView2.QueryItemIcon += TasView_QueryItemIcon; - //TasView2.QueryFrameLag += TasView_QueryFrameLag; - //TasView2.PointedCellChanged += TasView_PointedCellChanged; - //TasView2.MouseLeave += TAStudio_MouseLeave; - - //TasView2.CellDropped += TasView_CellDropped; - //TasView2.ColumnClick += TasView_ColumnClick; - //TasView2.ColumnReordered += TasView_ColumnReordered; - //TasView2.ColumnRightClick += TasView_ColumnRightClick; - //TasView2.KeyDown += TasView_KeyDown; - //TasView2.MouseDoubleClick += TasView_MouseDoubleClick; - //TasView2.MouseDown += TasView_MouseDown; - //TasView2.MouseEnter += TasView_MouseEnter; - //TasView2.MouseMove += TasView_MouseMove; - //TasView2.MouseUp += TasView_MouseUp; - //TasView2.RightMouseScrolled += TasView_MouseWheel; - //TasView2.SelectedIndexChanged += TasView_SelectedIndexChanged; - - //TasView2.CellHovered += (_, e) => - //{ - // if (e.NewCell.RowIndex is null) - // { - // toolTip1.Show(e.NewCell.Column!.Name, TasView2, PointToClient(Cursor.Position)); - // } - //}; - //TasViews.Add(TasView2); - - //InputRoll TasView3 = new InputRoll(); - //TasView3.Name = "TasView3"; - //TasView3.Parent = MainVertialSplit.Panel1; - //TasView3.Width = 250; - //TasView3.Height = 550; - //TasView3.Location = new System.Drawing.Point(TasView2.Location.X + TasView2.Width + 10, 20); - //TasView3.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - //| System.Windows.Forms.AnchorStyles.Left); - - //TasView3.CellHeightPadding = 0; - //TasView3.ChangeSelectionWhenPaging = false; - //TasView3.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0))); - //TasView3.FullRowSelect = true; - //TasView3.InputPaintingMode = true; - //TasView3.LetKeysModifySelection = true; - //TasView3.Rotatable = true; - //TasView3.ScrollMethod = "near"; - //TasView3.ScrollSpeed = 1; - - //TasView3.QueryItemText += TasView_QueryItemText; - //TasView3.QueryItemBkColor += TasView_QueryItemBkColor; - //TasView3.QueryRowBkColor += TasView_QueryRowBkColor; - //TasView3.QueryItemIcon += TasView_QueryItemIcon; - //TasView3.QueryFrameLag += TasView_QueryFrameLag; - //TasView3.PointedCellChanged += TasView_PointedCellChanged; - //TasView3.MouseLeave += TAStudio_MouseLeave; - - //TasView3.CellDropped += TasView_CellDropped; - //TasView3.ColumnClick += TasView_ColumnClick; - //TasView3.ColumnReordered += TasView_ColumnReordered; - //TasView3.ColumnRightClick += TasView_ColumnRightClick; - //TasView3.KeyDown += TasView_KeyDown; - //TasView3.MouseDoubleClick += TasView_MouseDoubleClick; - //TasView3.MouseDown += TasView_MouseDown; - //TasView3.MouseEnter += TasView_MouseEnter; - //TasView3.MouseMove += TasView_MouseMove; - //TasView3.MouseUp += TasView_MouseUp; - //TasView3.RightMouseScrolled += TasView_MouseWheel; - //TasView3.SelectedIndexChanged += TasView_SelectedIndexChanged; - - //TasView3.CellHovered += (_, e) => - //{ - // if (e.NewCell.RowIndex is null) - // { - // toolTip1.Show(e.NewCell.Column!.Name, TasView3, PointToClient(Cursor.Position)); - // } - //}; - //TasViews.Add(TasView3); + if (!Engage()) { @@ -686,7 +582,7 @@ public void AddColumn(string name, string text, int widthUnscaled) public void ClearFramesExternal() => ClearFramesMenuItem_Click(null, null); public void InsertFrameExternal() => InsertFrameMenuItem_Click(null, null); public void InsertNumFramesExternal() => InsertNumFramesMenuItem_Click(null, null); - public void DeleteFramesExternal(object sender) => DeleteFramesMenuItem_Click(null, null); + public void DeleteFramesExternal() => DeleteFramesMenuItem_Click(null, null); public void CloneFramesExternal() => CloneFramesMenuItem_Click(null, null); public void CloneFramesXTimesExternal() => CloneFramesXTimesMenuItem_Click(null, null); public void UndoExternal() => UndoMenuItem_Click(null, null); @@ -1649,5 +1545,11 @@ private IMovieController ControllerFromMnemonicStr(string inputLogEntry) } //} } + + private void disableTasViewToolStripMenuItem_Click(object sender, EventArgs e) + { + //TasViews[0].Enabled = false; + TasViews[0].Visible = false; + } } } diff --git a/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs b/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs index e4c112499d9..5ab787f0ca7 100644 --- a/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs +++ b/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs @@ -851,6 +851,8 @@ public bool IsAvailable(Type tool) public TAStudio TAStudio => GetTool(); + public TAStudioMPR TAStudioMPR => GetTool(); + public void LoadRamWatch(bool loadDialog) { if (IsLoaded() && !_config.DisplayRamWatch) From 4cfa79b5efa71bf579e413688ce6efcb19615848 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Mon, 10 Feb 2025 03:35:17 -0500 Subject: [PATCH 42/65] fixed missing entries in Hotkeys needed unique names since variables in case statements do not go out of scope --- src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs b/src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs index dc063866f48..6ef9aa40ccc 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs @@ -460,21 +460,21 @@ void SelectAndLoadFromSlot(int slot) Tools.TAStudioMPR.SetVisibleFrame(); Tools.TAStudioMPR.RefreshDialog(); break; - //case "Toggle Follow Cursor (For MPR)": - // if (!Tools.IsLoaded()) return false; - // var playbackBox = Tools.TAStudioMPR.TasPlaybackBoxMPR; - // playbackBox.FollowCursor = !playbackBox.FollowCursor; - // break; - //case "Toggle Auto-Restore (For MPR)": - // if (!Tools.IsLoaded()) return false; - // var playbackBox1 = Tools.TAStudioMPR.TasPlaybackBoxMPR; - // playbackBox1.AutoRestore = !playbackBox1.AutoRestore; - // break; - //case "Toggle Turbo Seek (For MPR)": - // if (!Tools.IsLoaded()) return false; - // var playbackBox2 = Tools.TAStudioMPR.TasPlaybackBoxMPR; - // playbackBox2.TurboSeek = !playbackBox2.TurboSeek; - // break; + case "Toggle Follow Cursor (For MPR)": + if (!Tools.IsLoaded()) return false; + var playbackBox3 = Tools.TAStudioMPR.TasPlaybackBoxMPR; + playbackBox3.FollowCursor = !playbackBox3.FollowCursor; + break; + case "Toggle Auto-Restore (For MPR)": + if (!Tools.IsLoaded()) return false; + var playbackBox4 = Tools.TAStudioMPR.TasPlaybackBoxMPR; + playbackBox4.AutoRestore = !playbackBox4.AutoRestore; + break; + case "Toggle Turbo Seek (For MPR)": + if (!Tools.IsLoaded()) return false; + var playbackBox5 = Tools.TAStudioMPR.TasPlaybackBoxMPR; + playbackBox5.TurboSeek = !playbackBox5.TurboSeek; + break; case "Undo (For MPR)": if (!Tools.IsLoaded()) return false; Tools.TAStudioMPR.UndoExternal(); From 6430837248ce44fce49ed85ac741418266c8d4dc Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Mon, 10 Feb 2025 04:24:57 -0500 Subject: [PATCH 43/65] Experimental feature to hide a tasView in the Config menu --- .../movie/tasproj/TasMovie.Editing.cs | 1 - .../tools/TAStudioMPR/TAStudioMPR.Designer.cs | 16 +++++++------- .../tools/TAStudioMPR/TAStudioMPR.cs | 22 +++++++++++-------- 3 files changed, 21 insertions(+), 18 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 68b168884f9..a1baac94a75 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -331,7 +331,6 @@ public void RemoveFramesMPR(int removeStart, int removeUpTo, int startOffset, in } lines.Add(new string(framePrevious)); } - } //replace from inital delete frame to end diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs index 40b1949fd09..abeab61b00c 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs @@ -111,6 +111,7 @@ private void InitializeComponent() this.setpToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); this.setCustomsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); this.SetFontMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.disableTasViewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.MetaSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); this.HeaderMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); this.StateHistorySettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); @@ -191,7 +192,6 @@ private void InitializeComponent() this.BranchesMarkersSplit = new System.Windows.Forms.SplitContainer(); this.MainVertialSplit = new System.Windows.Forms.SplitContainer(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); - this.disableTasViewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.TASMenu.SuspendLayout(); this.TasStatusStrip.SuspendLayout(); this.RightClickMenu.SuspendLayout(); @@ -650,6 +650,13 @@ private void InitializeComponent() this.SetFontMenuItem.Text = "Set Font"; this.SetFontMenuItem.Click += new System.EventHandler(this.SetFontMenuItem_Click); // + // disableTasViewToolStripMenuItem + // + this.disableTasViewToolStripMenuItem.Name = "disableTasViewToolStripMenuItem"; + this.disableTasViewToolStripMenuItem.Size = new System.Drawing.Size(272, 22); + this.disableTasViewToolStripMenuItem.Text = "Toggle Disable TasView1"; + this.disableTasViewToolStripMenuItem.Click += new System.EventHandler(this.disableTasViewToolStripMenuItem_Click); + // // MetaSubMenu // this.MetaSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { @@ -1164,13 +1171,6 @@ private void InitializeComponent() this.MainVertialSplit.TabIndex = 10; this.MainVertialSplit.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.MainVerticalSplit_SplitterMoved); // - // disableTasViewToolStripMenuItem - // - this.disableTasViewToolStripMenuItem.Name = "disableTasViewToolStripMenuItem"; - this.disableTasViewToolStripMenuItem.Size = new System.Drawing.Size(272, 22); - this.disableTasViewToolStripMenuItem.Text = "Disable TasView"; - this.disableTasViewToolStripMenuItem.Click += new System.EventHandler(this.disableTasViewToolStripMenuItem_Click); - // // TAStudioMPR // this.AllowDrop = true; diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 27bbc45a909..c1b88bb8655 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -227,9 +227,16 @@ private void Tastudio_Load(object sender, EventArgs e) toolTip1.Show(e.NewCell.Column!.Name, tasView, PointToClient(Cursor.Position)); } }; + this.ConfigSubMenu.DropDownItems.Add( + new ToolStripMenuItem( + "Toggle Disable " + tasView.Name, + null, + disableTasViewToolStripMenuItem_Click) + ); TasViews.Add(tasView); } - + + if (!Engage()) { @@ -722,12 +729,6 @@ private bool StartNewMovieWrapper(ITasMovie movie, bool isNew) if (CurrentTasMovie.InputRollSettings != null) { - //loads the same settings for all views - //foreach (InputRoll tasView in TasViews) - //{ - //TasViews[1].LoadSettingsSerialized(CurrentTasMovie.InputRollSettings); - //} - for (int i = 0; i < TasViews.Count; i++) { TasViews[i].LoadSettingsSerialized(CurrentTasMovie.InputRollSettings); //not sure if this is necessary with multiple InputRolls @@ -1546,10 +1547,13 @@ private IMovieController ControllerFromMnemonicStr(string inputLogEntry) //} } + //experimental feature. See if this makes a difference at all. private void disableTasViewToolStripMenuItem_Click(object sender, EventArgs e) { - //TasViews[0].Enabled = false; - TasViews[0].Visible = false; + var tasViewToToggleDisable = sender.ToString().Substring(15); + InputRoll tasView = TasViews.Find(t => t.Name == tasViewToToggleDisable); + tasView.Enabled = !tasView.Enabled; + tasView.Visible = !tasView.Visible; } } } From c2c183c3fc3c8766e3a6fbf6e73df7b5cb9f7c63 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Mon, 10 Feb 2025 22:35:01 -0500 Subject: [PATCH 44/65] Using the Paste Selected From is working Double check the names that they make sense --- .../movie/interfaces/ITasMovie.cs | 1 + .../movie/tasproj/TasMovie.Editing.cs | 66 +++++++++-- .../tools/TAStudioMPR/TAStudioMPR.Designer.cs | 13 ++- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 108 ++++++++++++++++-- .../tools/TAStudioMPR/TAStudioMPR.cs | 18 ++- 5 files changed, 182 insertions(+), 24 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs index c3faff656f0..6b2e939c20c 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs @@ -53,6 +53,7 @@ public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable void InsertEmptyFrame(int frame, int count = 1); int CopyOverInput(int frame, IEnumerable inputStates); int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength); + int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength, int destStartOffset, int destCurrentControlLength); void RemoveFrame(int frame); diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index a1baac94a75..290b5f2c905 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -313,12 +313,12 @@ public void RemoveFramesMPR(int removeStart, int removeUpTo, int startOffset, in if (i + removeNum == Log.Count) { - + lines.Add(Log[i]); } else if (i + removeNum > Log.Count) {//add an blank section for that frame of the controller - //lines.Add(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController)); + //lines.Add(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController)); } else { @@ -568,17 +568,59 @@ public int CopyOverInputMPR(int frame, IEnumerable inputStates, int Log[frame + i] = new string(logFrame); } - ////do for rest for of movie - //for(int i=frame+addNewCount;i inputStates, int startOffset, int currentControlLength, int destStartOffset, int destCurrentControlLength) + { + int firstChangedFrame = -1; + ChangeLog.BeginNewBatch($"Copy Over Input: {frame}"); + + var states = inputStates.ToList(); + + if (Log.Count < states.Count + frame) + { + ExtendMovieForEdit(states.Count + frame - Log.Count); + } + int addNewCount = inputStates.Count(); + //Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), addNewCount)); + + ChangeLog.AddGeneralUndo(frame, frame + states.Count - 1, $"Copy Over Input: {frame}"); + + char[] inputFrame; + char[] logFrame; + List lines = new List(); + + int offsetDifference = destStartOffset - startOffset ; + for (int i = 0; i < states.Count; i++) + { + if (Log.Count <= frame + i) + { + break; + } + + var entry = Bk2LogEntryGenerator.GenerateLogEntry(states[i]); + if (firstChangedFrame == -1 && Log[frame + i] != entry) + { + firstChangedFrame = frame + i; + } + + logFrame = Log[frame + i].ToCharArray(); + inputFrame = entry.ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + logFrame[j] = inputFrame[j+offsetDifference]; + } + //.Add(new string(logFrame)); + + Log[frame + i] = new string(logFrame); + } ChangeLog.EndBatch(); Changes = true; diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs index abeab61b00c..9bcbe5dacf0 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs @@ -192,6 +192,7 @@ private void InitializeComponent() this.BranchesMarkersSplit = new System.Windows.Forms.SplitContainer(); this.MainVertialSplit = new System.Windows.Forms.SplitContainer(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); + this.pasteSelectedRowsFromToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.TASMenu.SuspendLayout(); this.TasStatusStrip.SuspendLayout(); this.RightClickMenu.SuspendLayout(); @@ -1001,9 +1002,10 @@ private void InitializeComponent() this.BranchContextMenuItem, this.StartFromNowSeparator, this.StartNewProjectFromNowMenuItem, - this.StartANewProjectFromSaveRamMenuItem}); + this.StartANewProjectFromSaveRamMenuItem, + this.pasteSelectedRowsFromToolStripMenuItem}); this.RightClickMenu.Name = "RightClickMenu"; - this.RightClickMenu.Size = new System.Drawing.Size(253, 502); + this.RightClickMenu.Size = new System.Drawing.Size(253, 546); this.RightClickMenu.Opened += new System.EventHandler(this.RightClickMenu_Opened); // // SetMarkersContextMenuItem @@ -1171,6 +1173,12 @@ private void InitializeComponent() this.MainVertialSplit.TabIndex = 10; this.MainVertialSplit.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.MainVerticalSplit_SplitterMoved); // + // pasteSelectedRowsFromToolStripMenuItem + // + this.pasteSelectedRowsFromToolStripMenuItem.Name = "pasteSelectedRowsFromToolStripMenuItem"; + this.pasteSelectedRowsFromToolStripMenuItem.Size = new System.Drawing.Size(252, 22); + this.pasteSelectedRowsFromToolStripMenuItem.Text = "Paste Selected Rows From"; + // // TAStudioMPR // this.AllowDrop = true; @@ -1370,5 +1378,6 @@ private void InitializeComponent() private BizHawk.WinForms.Controls.ToolStripMenuItemEx CopyIncludesFrameNoMenuItem; private System.Windows.Forms.ToolTip toolTip1; private System.Windows.Forms.ToolStripMenuItem disableTasViewToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem pasteSelectedRowsFromToolStripMenuItem; } } \ No newline at end of file diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index fa03cbab9a3..0678d153bd6 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -10,6 +10,7 @@ using BizHawk.Common.CollectionExtensions; using BizHawk.Common.StringExtensions; using BizHawk.Emulation.Common; +using BizHawk.WinForms.Controls; namespace BizHawk.Client.EmuHawk { @@ -498,7 +499,6 @@ private void PasteMenuItem_Click(object sender, EventArgs e) _tasClipboard.Add(new TasClipboardEntry(i, line)); } - int startOffset = 1; //starts with "|" for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset { @@ -515,14 +515,107 @@ private void PasteMenuItem_Click(object sender, EventArgs e) .Select(frame => CurrentTasMovie.GetInputLogEntry(frame)) .ToList(); - //A clone operation will insert the selected stuff for currently selected frames. - //All the other inputs besides the current controls need to stay the same. - //the current controller group need to shift down with the clone. + var rollbackFrame = 0; + //CurrentTasMovie.InsertInputMPR(insertionFrame, inputLog, startOffset, currentControlLength); + rollbackFrame = CurrentTasMovie.CopyOverInputMPR(CurrentTasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState), startOffset, currentControlLength); + + + if (rollbackFrame > 0) + { + GoToLastEmulatedFrameIfNecessary(rollbackFrame); + DoAutoRestore(); + } + + FullRefresh(); + } + } + } + } + } + + private void PasteToDestMenuItem_Click(object sender, EventArgs e) + { + var tasViewDestName = sender.ToString(); + InputRoll dest = TasViews.Find(t => t.Name == tasViewDestName); + //var dest = TasViews.Find(t => t.ContainsFocus); + var tasViewDestinationIndex = TasViews.IndexOf(dest); //also used to identify controller controller + + int tasViewIndex = TasViews.IndexOf(CurrentTasView); + if (CurrentTasView.AnyRowsSelected) + { + // TODO: if highlighting 2 rows and pasting 3, only paste 2 of them + // FCEUX Taseditor doesn't do this, but I think it is the expected behavior in editor programs + + // TODO: copy paste from PasteInsertMenuItem_Click! + IDataObject data = Clipboard.GetDataObject(); + if (data != null && data.GetDataPresent(DataFormats.StringFormat)) + { + string input = (string) data.GetData(DataFormats.StringFormat); + if (!string.IsNullOrWhiteSpace(input)) + { + string[] lines = input.Split('\n'); + if (lines.Length > 0) + { + _tasClipboard.Clear(); + int linesToPaste = lines.Length; + if (lines[lines.Length - 1].Length is 0) linesToPaste--; + for (int i = 0; i < linesToPaste; i++) + { + var line = ControllerFromMnemonicStr(lines[i]); + if (line == null) + { + return; + } + + _tasClipboard.Add(new TasClipboardEntry(i, line)); + } + + int startOffset = 1; //starts with "|" + for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset + { + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; + + var framesToInsert = CurrentTasView.SelectedRows; + var insertionFrame = Math.Min((CurrentTasView.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); + var needsToRollback = CurrentTasView.SelectionStartIndex < Emulator.Frame; + + var inputLog = framesToInsert + .Select(frame => CurrentTasMovie.GetInputLogEntry(frame)) + .ToList(); + + var rollbackFrame = 0; //CurrentTasMovie.InsertInputMPR(insertionFrame, inputLog, startOffset, currentControlLength); - var rollbackFrame = CurrentTasMovie.CopyOverInputMPR(CurrentTasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState), startOffset, currentControlLength); - - + if (tasViewIndex == tasViewDestinationIndex) + { + rollbackFrame = CurrentTasMovie.CopyOverInputMPR(CurrentTasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState), startOffset, currentControlLength); + } + else + { + int destStartOffset = 1; //starts with "|" + for (int k = 0; k < tasViewDestinationIndex; k++) //add up inputs to get start string offset + { + destStartOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + destStartOffset += 1; //add 1 for pipe + } + int destCurrentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; + + if (currentControlLength != destCurrentControlLength) + { + throw new Exception("Cannot copy to another TasView where the number of inputs do not equal"); + //return; + } + + rollbackFrame = CurrentTasMovie.CopyOverInputMPR(CurrentTasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState), + startOffset, + currentControlLength, + destStartOffset, + destCurrentControlLength); + } + if (rollbackFrame > 0) { GoToLastEmulatedFrameIfNecessary(rollbackFrame); @@ -535,6 +628,7 @@ private void PasteMenuItem_Click(object sender, EventArgs e) } } } + private void PasteInsertMenuItem_Click(object sender, EventArgs e) { foreach (InputRoll tasView in TasViews) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index c1b88bb8655..1077909397e 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -168,10 +168,15 @@ private void Tastudio_Load(object sender, EventArgs e) toolTip1.Show(e.NewCell.Column!.Name, TasView1, PointToClient(Cursor.Position)); } }; + this.pasteSelectedRowsFromToolStripMenuItem.DropDownItems.Add( + new ToolStripMenuItem( + TasView1.Name, + null, + PasteToDestMenuItem_Click) + ); TasViews.Add(TasView1); //get number of controllers MnemonicMapPlayerController - int controllersCount = Emulator.ControllerDefinition.ControlsOrdered.Count; var startLocation = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); @@ -229,10 +234,17 @@ private void Tastudio_Load(object sender, EventArgs e) }; this.ConfigSubMenu.DropDownItems.Add( new ToolStripMenuItem( - "Toggle Disable " + tasView.Name, - null, + "Toggle Disable " + tasView.Name, + null, disableTasViewToolStripMenuItem_Click) ); + this.pasteSelectedRowsFromToolStripMenuItem.DropDownItems.Add( + new ToolStripMenuItem( + tasView.Name, + null, + PasteToDestMenuItem_Click) + ); + TasViews.Add(tasView); } From c45a37097c051f7ae5a96cdfce29ba961cbc48e4 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Mon, 10 Feb 2025 22:41:28 -0500 Subject: [PATCH 45/65] for paste selected from func Renamed got rid of unneeded parameter get rid of clipboard --- .../movie/interfaces/ITasMovie.cs | 2 +- .../movie/tasproj/TasMovie.Editing.cs | 2 +- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 23 +++++++++---------- 3 files changed, 13 insertions(+), 14 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs index 6b2e939c20c..33e37b183a5 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs @@ -53,7 +53,7 @@ public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable void InsertEmptyFrame(int frame, int count = 1); int CopyOverInput(int frame, IEnumerable inputStates); int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength); - int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength, int destStartOffset, int destCurrentControlLength); + int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength, int sourceStartOffset); void RemoveFrame(int frame); diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 290b5f2c905..fb990713ad8 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -577,7 +577,7 @@ public int CopyOverInputMPR(int frame, IEnumerable inputStates, int return firstChangedFrame; } - public int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength, int destStartOffset, int destCurrentControlLength) + public int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength, int destStartOffset) { int firstChangedFrame = -1; ChangeLog.BeginNewBatch($"Copy Over Input: {frame}"); diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 0678d153bd6..ab4ba723bdf 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -535,10 +535,10 @@ private void PasteMenuItem_Click(object sender, EventArgs e) private void PasteToDestMenuItem_Click(object sender, EventArgs e) { - var tasViewDestName = sender.ToString(); - InputRoll dest = TasViews.Find(t => t.Name == tasViewDestName); + var tasViewSourceName = sender.ToString(); + InputRoll source = TasViews.Find(t => t.Name == tasViewSourceName); //var dest = TasViews.Find(t => t.ContainsFocus); - var tasViewDestinationIndex = TasViews.IndexOf(dest); //also used to identify controller controller + var tasViewSourceIndex = TasViews.IndexOf(source); //also used to identify controller controller int tasViewIndex = TasViews.IndexOf(CurrentTasView); @@ -589,21 +589,21 @@ private void PasteToDestMenuItem_Click(object sender, EventArgs e) var rollbackFrame = 0; //CurrentTasMovie.InsertInputMPR(insertionFrame, inputLog, startOffset, currentControlLength); - if (tasViewIndex == tasViewDestinationIndex) + if (tasViewIndex == tasViewSourceIndex) { rollbackFrame = CurrentTasMovie.CopyOverInputMPR(CurrentTasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState), startOffset, currentControlLength); } else { - int destStartOffset = 1; //starts with "|" - for (int k = 0; k < tasViewDestinationIndex; k++) //add up inputs to get start string offset + int sourceStartOffset = 1; //starts with "|" + for (int k = 0; k < tasViewSourceIndex; k++) //add up inputs to get start string offset { - destStartOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; - destStartOffset += 1; //add 1 for pipe + sourceStartOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + sourceStartOffset += 1; //add 1 for pipe } - int destCurrentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; + int sourceCurrentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; - if (currentControlLength != destCurrentControlLength) + if (currentControlLength != sourceCurrentControlLength) { throw new Exception("Cannot copy to another TasView where the number of inputs do not equal"); //return; @@ -612,8 +612,7 @@ private void PasteToDestMenuItem_Click(object sender, EventArgs e) rollbackFrame = CurrentTasMovie.CopyOverInputMPR(CurrentTasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState), startOffset, currentControlLength, - destStartOffset, - destCurrentControlLength); + sourceStartOffset); } if (rollbackFrame > 0) From 9a3fca2ade7f45481c4b85fd2392b4c346d4d7a9 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Mon, 10 Feb 2025 23:12:06 -0500 Subject: [PATCH 46/65] Made that Paste Selected more intuitive --- .../movie/interfaces/ITasMovie.cs | 2 +- .../movie/tasproj/TasMovie.Editing.cs | 6 +- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 118 ++++++------------ 3 files changed, 46 insertions(+), 80 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs index 33e37b183a5..c46674cb529 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs @@ -53,7 +53,7 @@ public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable void InsertEmptyFrame(int frame, int count = 1); int CopyOverInput(int frame, IEnumerable inputStates); int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength); - int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength, int sourceStartOffset); + int CopyOverDestInputMPR(int frame, IEnumerable frames, int startOffset, int currentControlLength, int sourceStartOffset); void RemoveFrame(int frame); diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index fb990713ad8..3a5e283fded 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -577,7 +577,8 @@ public int CopyOverInputMPR(int frame, IEnumerable inputStates, int return firstChangedFrame; } - public int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength, int destStartOffset) + + public int CopyOverDestInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength, int destStartOffset) { int firstChangedFrame = -1; ChangeLog.BeginNewBatch($"Copy Over Input: {frame}"); @@ -605,7 +606,8 @@ public int CopyOverInputMPR(int frame, IEnumerable inputStates, int break; } - var entry = Bk2LogEntryGenerator.GenerateLogEntry(states[i]); + //var entry = Bk2LogEntryGenerator.GenerateLogEntry(states[i]); + var entry = states[i]; if (firstChangedFrame == -1 && Log[frame + i] != entry) { firstChangedFrame = frame + i; diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index ab4ba723bdf..3e9c28d4eb9 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -536,95 +536,59 @@ private void PasteMenuItem_Click(object sender, EventArgs e) private void PasteToDestMenuItem_Click(object sender, EventArgs e) { var tasViewSourceName = sender.ToString(); - InputRoll source = TasViews.Find(t => t.Name == tasViewSourceName); - //var dest = TasViews.Find(t => t.ContainsFocus); - var tasViewSourceIndex = TasViews.IndexOf(source); //also used to identify controller controller + InputRoll sourceTasView = TasViews.Find(t => t.Name == tasViewSourceName); + var tasViewSourceIndex = TasViews.IndexOf(sourceTasView); //also used to identify controller controller - int tasViewIndex = TasViews.IndexOf(CurrentTasView); + int tasViewDestIndex = TasViews.IndexOf(CurrentTasView); - if (CurrentTasView.AnyRowsSelected) + if (CurrentTasView.AnyRowsSelected && sourceTasView.AnyRowsSelected) { - // TODO: if highlighting 2 rows and pasting 3, only paste 2 of them - // FCEUX Taseditor doesn't do this, but I think it is the expected behavior in editor programs - - // TODO: copy paste from PasteInsertMenuItem_Click! - IDataObject data = Clipboard.GetDataObject(); - if (data != null && data.GetDataPresent(DataFormats.StringFormat)) + int startOffset = 1; //starts with "|" + for (int k = 0; k < tasViewDestIndex; k++) //add up inputs to get start string offset { - string input = (string) data.GetData(DataFormats.StringFormat); - if (!string.IsNullOrWhiteSpace(input)) - { - string[] lines = input.Split('\n'); - if (lines.Length > 0) - { - _tasClipboard.Clear(); - int linesToPaste = lines.Length; - if (lines[lines.Length - 1].Length is 0) linesToPaste--; - for (int i = 0; i < linesToPaste; i++) - { - var line = ControllerFromMnemonicStr(lines[i]); - if (line == null) - { - return; - } - - _tasClipboard.Add(new TasClipboardEntry(i, line)); - } - - int startOffset = 1; //starts with "|" - for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset - { - startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; - startOffset += 1; //add 1 for pipe - } - int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewDestIndex].Count; - var framesToInsert = CurrentTasView.SelectedRows; - var insertionFrame = Math.Min((CurrentTasView.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); - var needsToRollback = CurrentTasView.SelectionStartIndex < Emulator.Frame; + var framesToInsert = sourceTasView.SelectedRows; + var insertionFrame = Math.Min((sourceTasView.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); + var needsToRollback = sourceTasView.SelectionStartIndex < Emulator.Frame; - var inputLog = framesToInsert - .Select(frame => CurrentTasMovie.GetInputLogEntry(frame)) - .ToList(); + var inputLog = framesToInsert + .Select(frame => CurrentTasMovie.GetInputLogEntry(frame)) + .ToList(); - var rollbackFrame = 0; - //CurrentTasMovie.InsertInputMPR(insertionFrame, inputLog, startOffset, currentControlLength); - if (tasViewIndex == tasViewSourceIndex) - { - rollbackFrame = CurrentTasMovie.CopyOverInputMPR(CurrentTasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState), startOffset, currentControlLength); - } - else - { - int sourceStartOffset = 1; //starts with "|" - for (int k = 0; k < tasViewSourceIndex; k++) //add up inputs to get start string offset - { - sourceStartOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; - sourceStartOffset += 1; //add 1 for pipe - } - int sourceCurrentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; + var rollbackFrame = 0; - if (currentControlLength != sourceCurrentControlLength) - { - throw new Exception("Cannot copy to another TasView where the number of inputs do not equal"); - //return; - } + int sourceStartOffset = 1; //starts with "|" + for (int k = 0; k < tasViewSourceIndex; k++) //add up inputs to get start string offset + { + sourceStartOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + sourceStartOffset += 1; //add 1 for pipe + } + int sourceCurrentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewDestIndex].Count; - rollbackFrame = CurrentTasMovie.CopyOverInputMPR(CurrentTasView.SelectionStartIndex ?? 0, _tasClipboard.Select(static x => x.ControllerState), - startOffset, - currentControlLength, - sourceStartOffset); - } + if (Emulator.ControllerDefinition.ControlsOrdered[tasViewSourceIndex] != Emulator.ControllerDefinition.ControlsOrdered[tasViewDestIndex]) + { + //("Cannot copy to another TasView where the controller definitions are not equal"); + return; + } - if (rollbackFrame > 0) - { - GoToLastEmulatedFrameIfNecessary(rollbackFrame); - DoAutoRestore(); - } + rollbackFrame = CurrentTasMovie.CopyOverDestInputMPR( + CurrentTasView.SelectionStartIndex ?? 0, + inputLog, + startOffset, + currentControlLength, + sourceStartOffset); - FullRefresh(); - } - } + if (rollbackFrame > 0) + { + GoToLastEmulatedFrameIfNecessary(rollbackFrame); + DoAutoRestore(); } + + FullRefresh(); } } From b4679bebd0a64f3d4ee603e4e58df0eebdbfbe4d Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Mon, 10 Feb 2025 23:30:10 -0500 Subject: [PATCH 47/65] fixed that copy from other tasviews --- .../tools/TAStudioMPR/TAStudioMPR.Designer.cs | 18 +++++++++--------- .../tools/TAStudioMPR/TAStudioMPR.MenuItems.cs | 6 +++--- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs index 9bcbe5dacf0..da0dc339839 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.Designer.cs @@ -188,11 +188,11 @@ private void InitializeComponent() this.StartFromNowSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); this.StartNewProjectFromNowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); this.StartANewProjectFromSaveRamMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.pasteSelectedRowsFromToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.BookMarkControlMPR = new BizHawk.Client.EmuHawk.BookmarksBranchesBoxMPR(); this.BranchesMarkersSplit = new System.Windows.Forms.SplitContainer(); this.MainVertialSplit = new System.Windows.Forms.SplitContainer(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); - this.pasteSelectedRowsFromToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.TASMenu.SuspendLayout(); this.TasStatusStrip.SuspendLayout(); this.RightClickMenu.SuspendLayout(); @@ -990,6 +990,7 @@ private void InitializeComponent() this.pasteToolStripMenuItem, this.pasteInsertToolStripMenuItem, this.cutToolStripMenuItem, + this.pasteSelectedRowsFromToolStripMenuItem, this.separateToolStripMenuItem, this.ClearContextMenuItem, this.DeleteFramesContextMenuItem, @@ -1002,8 +1003,7 @@ private void InitializeComponent() this.BranchContextMenuItem, this.StartFromNowSeparator, this.StartNewProjectFromNowMenuItem, - this.StartANewProjectFromSaveRamMenuItem, - this.pasteSelectedRowsFromToolStripMenuItem}); + this.StartANewProjectFromSaveRamMenuItem}); this.RightClickMenu.Name = "RightClickMenu"; this.RightClickMenu.Size = new System.Drawing.Size(253, 546); this.RightClickMenu.Opened += new System.EventHandler(this.RightClickMenu_Opened); @@ -1117,6 +1117,12 @@ private void InitializeComponent() this.StartANewProjectFromSaveRamMenuItem.Text = "Start a new project from SaveRam"; this.StartANewProjectFromSaveRamMenuItem.Click += new System.EventHandler(this.StartANewProjectFromSaveRamMenuItem_Click); // + // pasteSelectedRowsFromToolStripMenuItem + // + this.pasteSelectedRowsFromToolStripMenuItem.Name = "pasteSelectedRowsFromToolStripMenuItem"; + this.pasteSelectedRowsFromToolStripMenuItem.Size = new System.Drawing.Size(252, 22); + this.pasteSelectedRowsFromToolStripMenuItem.Text = "Paste Selected Rows From"; + // // BookMarkControlMPR // this.BookMarkControlMPR.Dock = System.Windows.Forms.DockStyle.Fill; @@ -1173,12 +1179,6 @@ private void InitializeComponent() this.MainVertialSplit.TabIndex = 10; this.MainVertialSplit.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.MainVerticalSplit_SplitterMoved); // - // pasteSelectedRowsFromToolStripMenuItem - // - this.pasteSelectedRowsFromToolStripMenuItem.Name = "pasteSelectedRowsFromToolStripMenuItem"; - this.pasteSelectedRowsFromToolStripMenuItem.Size = new System.Drawing.Size(252, 22); - this.pasteSelectedRowsFromToolStripMenuItem.Text = "Paste Selected Rows From"; - // // TAStudioMPR // this.AllowDrop = true; diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 3e9c28d4eb9..d6a7dc582c4 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -552,8 +552,8 @@ private void PasteToDestMenuItem_Click(object sender, EventArgs e) int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewDestIndex].Count; var framesToInsert = sourceTasView.SelectedRows; - var insertionFrame = Math.Min((sourceTasView.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); - var needsToRollback = sourceTasView.SelectionStartIndex < Emulator.Frame; + var insertionFrame = Math.Min((CurrentTasView.SelectionEndIndex ?? 0) + 1, CurrentTasMovie.InputLogLength); + var needsToRollback = CurrentTasView.SelectionStartIndex < Emulator.Frame; var inputLog = framesToInsert .Select(frame => CurrentTasMovie.GetInputLogEntry(frame)) @@ -569,7 +569,7 @@ private void PasteToDestMenuItem_Click(object sender, EventArgs e) } int sourceCurrentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewDestIndex].Count; - if (Emulator.ControllerDefinition.ControlsOrdered[tasViewSourceIndex] != Emulator.ControllerDefinition.ControlsOrdered[tasViewDestIndex]) + if (Emulator.ControllerDefinition.ControlsOrdered[tasViewSourceIndex].Count != Emulator.ControllerDefinition.ControlsOrdered[tasViewDestIndex].Count) { //("Cannot copy to another TasView where the controller definitions are not equal"); return; From 78da7dcf7501e8da7b5c7c1ef266e5446e072f17 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Tue, 11 Feb 2025 01:56:29 -0500 Subject: [PATCH 48/65] Fixed another Delete bug Issue was that for the final frames at the very end it was simply setting Log[i], when it needed to be empty out the current controller and leave the other ones alone. --- .../movie/interfaces/ITasMovie.cs | 136 +++++++++--------- .../movie/tasproj/TasMovie.Editing.cs | 31 ++-- 2 files changed, 78 insertions(+), 89 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs index c46674cb529..f6673206bfd 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs @@ -1,72 +1,72 @@ -using System.Collections.Generic; -using System.ComponentModel; -using BizHawk.Emulation.Common; - -namespace BizHawk.Client.Common -{ - public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable - { - bool BindMarkersToInput { get; set; } - bool LastPositionStable { get; set; } - - IMovieChangeLog ChangeLog { get; } - IStateManager TasStateManager { get; } - Func InputRollSettingsForSave { get; set; } - string InputRollSettings { get; } - ITasMovieRecord this[int index] { get; } - ITasSession TasSession { get; } - TasMovieMarkerList Markers { get; } - ITasBranchCollection Branches { get; } - TasLagLog LagLog { get; } - IStringLog VerificationLog { get; } - int LastEditedFrame { get; } - - Action GreenzoneInvalidated { get; set; } - - string DisplayValue(int frame, string buttonName); - void FlagChanges(); - void ClearChanges(); - - /// - /// Replaces the given frame's input with an empty frame - /// +using System.Collections.Generic; +using System.ComponentModel; +using BizHawk.Emulation.Common; + +namespace BizHawk.Client.Common +{ + public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable + { + bool BindMarkersToInput { get; set; } + bool LastPositionStable { get; set; } + + IMovieChangeLog ChangeLog { get; } + IStateManager TasStateManager { get; } + Func InputRollSettingsForSave { get; set; } + string InputRollSettings { get; } + ITasMovieRecord this[int index] { get; } + ITasSession TasSession { get; } + TasMovieMarkerList Markers { get; } + ITasBranchCollection Branches { get; } + TasLagLog LagLog { get; } + IStringLog VerificationLog { get; } + int LastEditedFrame { get; } + + Action GreenzoneInvalidated { get; set; } + + string DisplayValue(int frame, string buttonName); + void FlagChanges(); + void ClearChanges(); + + /// + /// Replaces the given frame's input with an empty frame + /// void ClearFrame(int frame); - void ClearFrameMPR(int frame, int startOffset, int currentControlLength); - - void GreenzoneCurrentFrame(); - void ToggleBoolState(int frame, string buttonName); - void SetAxisState(int frame, string buttonName, int val); - void SetAxisStates(int frame, int count, string buttonName, int val); - void SetBoolState(int frame, string buttonName, bool val); - void SetBoolStates(int frame, int count, string buttonName, bool val); - void InsertInput(int frame, string inputState); - void InsertInput(int frame, IEnumerable inputLog); - void InsertInput(int frame, IEnumerable inputStates); + void ClearFrameMPR(int frame, int startOffset, int currentControlLength); + + void GreenzoneCurrentFrame(); + void ToggleBoolState(int frame, string buttonName); + void SetAxisState(int frame, string buttonName, int val); + void SetAxisStates(int frame, int count, string buttonName, int val); + void SetBoolState(int frame, string buttonName, bool val); + void SetBoolStates(int frame, int count, string buttonName, bool val); + void InsertInput(int frame, string inputState); + void InsertInput(int frame, IEnumerable inputLog); + void InsertInput(int frame, IEnumerable inputStates); void InsertInputMPR(int frame, IEnumerable inputLog, int startOffset, int currentControlLength); - void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLength, int count = 1); - void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlLength, int count = 1); - - - - void InsertEmptyFrame(int frame, int count = 1); - int CopyOverInput(int frame, IEnumerable inputStates); - int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength); - int CopyOverDestInputMPR(int frame, IEnumerable frames, int startOffset, int currentControlLength, int sourceStartOffset); - - - void RemoveFrame(int frame); - void RemoveFrames(ICollection frames); - void RemoveFrames(int removeStart, int removeUpTo); - void RemoveFramesMPR(ICollection frames, int startOffset, int currentControlLength); - - void TruncateFramesMPR(int frame, int startOffset, int currentControlLength); - - void SetFrame(int frame, string source); - - void LoadBranch(TasBranch branch); - - void CopyVerificationLog(IEnumerable log); - } -} + void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLength, int count = 1); + void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlLength, int count = 1); + + + + void InsertEmptyFrame(int frame, int count = 1); + int CopyOverInput(int frame, IEnumerable inputStates); + int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength); + int CopyOverDestInputMPR(int frame, IEnumerable frames, int startOffset, int currentControlLength, int sourceStartOffset); + + + void RemoveFrame(int frame); + void RemoveFrames(ICollection frames); + void RemoveFrames(int removeStart, int removeUpTo); + void RemoveFramesMPR(ICollection frames, int startOffset, int currentControlLength); + + void TruncateFramesMPR(int frame, int startOffset, int currentControlLength); + + void SetFrame(int frame, string source); + + void LoadBranch(TasBranch branch); + + void CopyVerificationLog(IEnumerable log); + } +} diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 3a5e283fded..230db6b6ec7 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -211,13 +211,6 @@ public void RemoveFrames(ICollection frames) } - - - - - - - // Each block is logged as an individual ChangeLog entry RemoveFrames(startFrame - numDeleted, prevFrame + 1 - numDeleted); numDeleted += prevFrame + 1 - startFrame; @@ -254,11 +247,8 @@ public void RemoveFramesMPR(ICollection frames, int startOffset, int curren } // Each block is logged as an individual ChangeLog entry - //RemoveFrames(startFrame - numDeleted, prevFrame + 1 - numDeleted); - - //RemoveFramesMPR(startFrame - numDeleted >= 0 ? startFrame - numDeleted : 0, prevFrame + 1 - numDeleted, startOffset, currentControlLength); - - RemoveFramesMPR(startFrame - numDeleted, prevFrame + 1 - numDeleted, startOffset, currentControlLength); + RemoveFramesMPR(startFrame - numDeleted >= 0 ? startFrame - numDeleted : 0, prevFrame + 1 - numDeleted, startOffset, currentControlLength); + //RemoveFramesMPR(startFrame - numDeleted, prevFrame + 1 - numDeleted, startOffset, currentControlLength); numDeleted += prevFrame + 1 - startFrame; } @@ -309,16 +299,15 @@ public void RemoveFramesMPR(int removeStart, int removeUpTo, int startOffset, in //if beyond the range of the current Log.Count then just use empty inputs. for (int i = removeStart; i < Log.Count; i++) { - //do not assign characters from one frame to another if same - - if (i + removeNum == Log.Count) + if (i + removeNum >= Log.Count) { - - lines.Add(Log[i]); - } - else if (i + removeNum > Log.Count) - {//add an blank section for that frame of the controller - //lines.Add(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController)); + //leave frames from other controllers but leave current one empty. + framePrevious = Log[i].ToCharArray(); + for (int j = startOffset; j < startOffset + currentControlLength; j++) + { + framePrevious[j] = '.'; + } + lines.Add(new string(framePrevious)); } else { From 7df560186cb8dc964a2ee8b776eeabf3946ed229 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Tue, 11 Feb 2025 02:16:13 -0500 Subject: [PATCH 49/65] Cut() func added still only working on same tasView.The Paste From Selected is the way to go from one to another for now. --- .../TAStudioMPR/TAStudioMPR.MenuItems.cs | 105 +++++++++++++----- 1 file changed, 79 insertions(+), 26 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index d6a7dc582c4..8fcf706e9b6 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -639,47 +639,100 @@ private void PasteInsertMenuItem_Click(object sender, EventArgs e) } } + //private void CutMenuItem_Click(object sender, EventArgs e) + //{ + // foreach (InputRoll tasView in TasViews) + // { + // if (tasView.Focused && tasView.AnyRowsSelected) + // { + // var selectionStart = TasView1.SelectionStartIndex; + // var needsToRollback = selectionStart < Emulator.Frame; + // var rollBackFrame = selectionStart ?? 0; + + // _tasClipboard.Clear(); + // var list = TasView1.SelectedRows.ToArray(); + // var sb = new StringBuilder(); + + // foreach (var index in list) // copy of CopyMenuItem_Click() + // { + // var input = CurrentTasMovie.GetInputState(index); + // if (input == null) + // { + // break; + // } + + // _tasClipboard.Add(new TasClipboardEntry(index, input)); + // sb.AppendLine(Bk2LogEntryGenerator.GenerateLogEntry(input)); + // } + + // Clipboard.SetDataObject(sb.ToString()); + // CurrentTasMovie.RemoveFrames(list); + // SetSplicer(); + + // if (needsToRollback) + // { + // GoToLastEmulatedFrameIfNecessary(rollBackFrame); + // DoAutoRestore(); + // } + + // FullRefresh(); + // } + // } + //} + private void CutMenuItem_Click(object sender, EventArgs e) { - foreach (InputRoll tasView in TasViews) + int tasViewIndex = TasViews.IndexOf(CurrentTasView); + + if (CurrentTasView.AnyRowsSelected) { - if (tasView.Focused && tasView.AnyRowsSelected) + int startOffset = 1; //starts with "|" + for (int k = 0; k < tasViewIndex; k++) //add up inputs to get start string offset { - var selectionStart = TasView1.SelectionStartIndex; - var needsToRollback = selectionStart < Emulator.Frame; - var rollBackFrame = selectionStart ?? 0; + startOffset += Emulator.ControllerDefinition.ControlsOrdered[k].Count; + startOffset += 1; //add 1 for pipe + } + int currentControlLength = Emulator.ControllerDefinition.ControlsOrdered[tasViewIndex].Count; - _tasClipboard.Clear(); - var list = TasView1.SelectedRows.ToArray(); - var sb = new StringBuilder(); + var selectionStart = CurrentTasView.SelectionStartIndex; + var needsToRollback = selectionStart < Emulator.Frame; + var rollBackFrame = selectionStart ?? 0; - foreach (var index in list) // copy of CopyMenuItem_Click() - { - var input = CurrentTasMovie.GetInputState(index); - if (input == null) - { - break; - } + _tasClipboard.Clear(); + var list = CurrentTasView.SelectedRows.ToArray(); + var sb = new StringBuilder(); - _tasClipboard.Add(new TasClipboardEntry(index, input)); - sb.AppendLine(Bk2LogEntryGenerator.GenerateLogEntry(input)); + foreach (var index in list) // copy of CopyMenuItem_Click() + { + var input = CurrentTasMovie.GetInputState(index); + if (input == null) + { + break; } - Clipboard.SetDataObject(sb.ToString()); - CurrentTasMovie.RemoveFrames(list); - SetSplicer(); + _tasClipboard.Add(new TasClipboardEntry(index, input)); + sb.AppendLine(Bk2LogEntryGenerator.GenerateLogEntry(input)); + } - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(rollBackFrame); - DoAutoRestore(); - } + Clipboard.SetDataObject(sb.ToString()); + CurrentTasMovie.RemoveFramesMPR(CurrentTasView.SelectedRows.ToArray(), startOffset, currentControlLength); - FullRefresh(); + //CurrentTasMovie.RemoveFrames(list); + + SetSplicer(); + + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(rollBackFrame); + DoAutoRestore(); } + + FullRefresh(); } } + + private void ClearFramesMenuItem_Click(object sender, EventArgs e) { int tasViewIndex = TasViews.IndexOf(CurrentTasView); From befc2d418887c27fc2839aefd0ce752646beba34 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Tue, 11 Feb 2025 15:02:36 -0500 Subject: [PATCH 50/65] Font sets for all tasviews now --- .../tools/TAStudioMPR/TAStudioMPR.cs | 133 ++++-------------- 1 file changed, 26 insertions(+), 107 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 1077909397e..2757e7739fa 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -419,81 +419,6 @@ private void AutosaveTimerEventProcessor(object sender, EventArgs e) private static readonly string[] N64CButtonSuffixes = { " C Up", " C Down", " C Left", " C Right" }; - //private void SetUpColumns() - //{ - // foreach (InputRoll tasView in TasViews) - // { - // tasView.AllColumns.Clear(); - // tasView.AllColumns.Add(new(name: CursorColumnName, widthUnscaled: 18, type: ColumnType.Boolean, text: string.Empty)); - // tasView.AllColumns.Add(new(name: FrameColumnName, widthUnscaled: 60, text: "Frame#") - // { - // Rotatable = true, - // }); - - // foreach ((string name, string mnemonic0, int maxLength) in MnemonicMap()) - // { - // var mnemonic = Emulator.SystemId is VSystemID.Raw.N64 && N64CButtonSuffixes.Any(name.EndsWithOrdinal) - // ? $"c{mnemonic0.ToUpperInvariant()}" // prepend 'c' to differentiate from L/R buttons -- this only affects the column headers - // : mnemonic0; - - // var type = ControllerType.Axes.ContainsKey(name) ? ColumnType.Axis : ColumnType.Boolean; - - // tasView.AllColumns.Add(new( - // name: name, - // widthUnscaled: (maxLength * 6) + 14, // magic numbers reused in EditBranchTextPopUp() --feos // not since eb63fa5a9 (before 2.3.3) --yoshi - // type: type, - // text: mnemonic)); - // } - - // var columnsToHide = tasView.AllColumns - // .Where(c => - // // todo: make a proper user editable list? - // c.Name == "Power" - // || c.Name == "Reset" - // || c.Name == "Light Sensor" - // || c.Name == "Disc Select" - // || c.Name == "Disk Index" - // || c.Name == "Next Drive" - // || c.Name == "Next Slot" - // || c.Name == "Insert Disk" - // || c.Name == "Eject Disk" - // || c.Name.StartsWithOrdinal("Tilt") - // || c.Name.StartsWithOrdinal("Key ") - // || c.Name.StartsWithOrdinal("Open") - // || c.Name.StartsWithOrdinal("Close") - // || c.Name.EndsWithOrdinal("Tape") - // || c.Name.EndsWithOrdinal("Disk") - // || c.Name.EndsWithOrdinal("Block") - // || c.Name.EndsWithOrdinal("Status")); - - // if (Emulator.SystemId is VSystemID.Raw.N64) - // { - // var fakeAnalogControls = tasView.AllColumns - // .Where(c => - // c.Name.EndsWithOrdinal("A Up") - // || c.Name.EndsWithOrdinal("A Down") - // || c.Name.EndsWithOrdinal("A Left") - // || c.Name.EndsWithOrdinal("A Right")); - - // columnsToHide = columnsToHide.Concat(fakeAnalogControls); - // } - - // foreach (var column in columnsToHide) - // { - // column.Visible = false; - // } - - // foreach (var column in tasView.VisibleColumns) - // { - // if (InputManager.StickyHoldController.IsSticky(column.Name) || InputManager.StickyAutofireController.IsSticky(column.Name)) - // { - // column.Emphasis = true; - // } - // } - - // tasView.AllColumns.ColumnsChanged(); - // } - //} private void SetUpColumnsPerControl(int viewIndex) { InputRoll tasView = TasViews[viewIndex]; @@ -951,7 +876,6 @@ protected override string WindowTitle protected override string WindowTitleStatic => "TAStudio"; - //wannabeshinobi: changed from lambda to function public IEnumerable GetSelection() { foreach (InputRoll tasView in TasViews) @@ -1251,27 +1175,22 @@ public void InsertNumFramesMPR(int insertionFrame, int numberOfFrames) public void DeleteFrames(int beginningFrame, int numberOfFrames) { //var a = - foreach (InputRoll tasView in TasViews) + + if (beginningFrame < CurrentTasMovie.InputLogLength) { - if (tasView.Focused && tasView.AnyRowsSelected) - { - if (beginningFrame < CurrentTasMovie.InputLogLength) - { - int[] framesToRemove = Enumerable.Range(beginningFrame, numberOfFrames).ToArray(); - CurrentTasMovie.RemoveFrames(framesToRemove); - SetSplicer(); + int[] framesToRemove = Enumerable.Range(beginningFrame, numberOfFrames).ToArray(); + CurrentTasMovie.RemoveFrames(framesToRemove); + SetSplicer(); - var needsToRollback = beginningFrame < Emulator.Frame; - if (needsToRollback) - { - GoToLastEmulatedFrameIfNecessary(beginningFrame); - DoAutoRestore(); - } - else - { - RefreshForInputChange(beginningFrame); - } - } + var needsToRollback = beginningFrame < Emulator.Frame; + if (needsToRollback) + { + GoToLastEmulatedFrameIfNecessary(beginningFrame); + DoAutoRestore(); + } + else + { + RefreshForInputChange(beginningFrame); } } } @@ -1479,21 +1398,21 @@ protected void DragEnterWrapper(object sender, DragEventArgs e) private void SetFontMenuItem_Click(object sender, EventArgs e) { - foreach (InputRoll tasView in TasViews) + + + using var fontDialog = new FontDialog { - if (tasView.Focused && tasView.AnyRowsSelected) + ShowColor = false, + Font = TasViews[1].Font + }; + if (fontDialog.ShowDialog() != DialogResult.Cancel) + { + foreach (InputRoll tasView in TasViews) { - using var fontDialog = new FontDialog - { - ShowColor = false, - Font = tasView.Font - }; - if (fontDialog.ShowDialog() != DialogResult.Cancel) - { - tasView.Font = TasViewFont = fontDialog.Font; - tasView.Refresh(); - } + tasView.Font = TasViewFont = fontDialog.Font; + tasView.Refresh(); } + } } private IMovieController ControllerFromMnemonicStr(string inputLogEntry) From 994c2c8b7c0ca41a77be227bad7d10430e95dde7 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Tue, 11 Feb 2025 17:24:08 -0500 Subject: [PATCH 51/65] deselect only for current tasView --- .../movie/tasproj/TasMovie.Editing.cs | 1 - .../tools/TAStudioMPR/TAStudioMPR.MenuItems.cs | 7 ++----- .../tools/TAStudioMPR/TAStudioMPR.cs | 3 --- 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 230db6b6ec7..a9e855c682f 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -344,7 +344,6 @@ public void RemoveFramesMPR(int removeStart, int removeUpTo, int startOffset, in } - /// /// Remove all frames between removeStart and removeUpTo (excluding removeUpTo). /// diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index 8fcf706e9b6..d94f17a282d 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -332,11 +332,8 @@ private void ShowUndoHistoryMenuItem_Click(object sender, EventArgs e) private void DeselectMenuItem_Click(object sender, EventArgs e) { - foreach (InputRoll tasView in TasViews) - { - tasView.DeselectAll(); - tasView.Refresh(); - } + CurrentTasView.DeselectAll(); + CurrentTasView.Refresh(); } /// TODO merge w/ Deselect? diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 2757e7739fa..b852ebf33e8 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -1398,8 +1398,6 @@ protected void DragEnterWrapper(object sender, DragEventArgs e) private void SetFontMenuItem_Click(object sender, EventArgs e) { - - using var fontDialog = new FontDialog { ShowColor = false, @@ -1412,7 +1410,6 @@ private void SetFontMenuItem_Click(object sender, EventArgs e) tasView.Font = TasViewFont = fontDialog.Font; tasView.Refresh(); } - } } private IMovieController ControllerFromMnemonicStr(string inputLogEntry) From e2618258630f22545e1f9e1d73db6c5a0fad425b Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Tue, 11 Feb 2025 18:15:19 -0500 Subject: [PATCH 52/65] TasViews are set to the correct width dynamically go through columns are Mnemonics are set --- .../tools/TAStudioMPR/TAStudioMPR.cs | 25 ++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index b852ebf33e8..6f6e56ba514 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -154,6 +154,9 @@ public TAStudioMPR() private void Tastudio_Load(object sender, EventArgs e) { this.Width = 1050; + + TasView1.Width = Emulator.ControllerDefinition.ControlsOrdered[1].Count * 20 + 80; + //width has to be calculated and set after columns are created. TasView1.QueryItemText += TasView_QueryItemText; TasView1.QueryItemBkColor += TasView_QueryItemBkColor; TasView1.QueryRowBkColor += TasView_QueryRowBkColor; @@ -186,7 +189,8 @@ private void Tastudio_Load(object sender, EventArgs e) InputRoll tasView = new InputRoll(); tasView.Name = "TasView" + i.ToString(); tasView.Parent = MainVertialSplit.Panel1; - tasView.Width = 250; + tasView.Width = Emulator.ControllerDefinition.ControlsOrdered[1].Count * 20 + 80; + //width has to be calculated and set after columns are created. tasView.Height = TasView1.Height; tasView.Location = startLocation; startLocation.X += tasView.Width + 10; //for next tasView @@ -376,6 +380,25 @@ private bool Engage(int viewIndex = 0) MovieSession.ReadOnly = true; SetSplicer(); + //var startLocation = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); + + //var startLocation = new System.Drawing.Point(0, 20); + //try setting the tasview sizes here + var lastTasViewWidth = 0; + var lastTasViewLocation = new System.Drawing.Point(0, 20); + foreach (InputRoll tasView in TasViews) + { + var width = 0; + + foreach (var column in tasView.AllColumns) + { + width += column.Width; + } + tasView.Location = new System.Drawing.Point(lastTasViewLocation.X + lastTasViewWidth + 10, 20); + tasView.Width = width + 1;//padding + lastTasViewWidth = tasView.Width; + lastTasViewLocation = tasView.Location; + } _engaged = true; return true; } From c2934ef822f618767e74408f60ef4b987670fc74 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Tue, 11 Feb 2025 19:27:12 -0500 Subject: [PATCH 53/65] Cleaned up Comments and some empty rows --- .../movie/interfaces/ITasMovie.cs | 7 +-- .../movie/tasproj/TasMovie.Editing.cs | 46 ++----------------- .../tools/TAStudioMPR/TAStudioMPR.cs | 45 ++---------------- 3 files changed, 9 insertions(+), 89 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs index f6673206bfd..842c5f64476 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs @@ -40,22 +40,19 @@ public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable void SetAxisStates(int frame, int count, string buttonName, int val); void SetBoolState(int frame, string buttonName, bool val); void SetBoolStates(int frame, int count, string buttonName, bool val); + void InsertInput(int frame, string inputState); void InsertInput(int frame, IEnumerable inputLog); void InsertInput(int frame, IEnumerable inputStates); void InsertInputMPR(int frame, IEnumerable inputLog, int startOffset, int currentControlLength); - void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLength, int count = 1); void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlLength, int count = 1); - - - void InsertEmptyFrame(int frame, int count = 1); + int CopyOverInput(int frame, IEnumerable inputStates); int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength); int CopyOverDestInputMPR(int frame, IEnumerable frames, int startOffset, int currentControlLength, int sourceStartOffset); - void RemoveFrame(int frame); void RemoveFrames(ICollection frames); void RemoveFrames(int removeStart, int removeUpTo); diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index a9e855c682f..99c987a0021 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -71,11 +71,6 @@ public void TruncateFramesMPR(int frame, int startOffset, int currentControlLeng char[] curFrame; - //if (frame < Log.Count - 1) - //{ - // Changes = true; - //} - if (frame < Log.Count) { //clear inputs for that controller until end of movie. @@ -89,9 +84,7 @@ public void TruncateFramesMPR(int frame, int startOffset, int currentControlLeng SetFrameAt(i, new string(curFrame)); } - - //Find last row with empty input - //Then remove Range then + //Find last row with empty inputThen remove range then insert range int lastEmptyFrame = Log.Count - 1; string noInput = Bk2LogEntryGenerator.EmptyEntry(Session.MovieController); for (int i = Log.Count - 1; i >= frame; i--) @@ -210,7 +203,6 @@ public void RemoveFrames(ICollection frames) prevFrame = frame; } - // Each block is logged as an individual ChangeLog entry RemoveFrames(startFrame - numDeleted, prevFrame + 1 - numDeleted); numDeleted += prevFrame + 1 - startFrame; @@ -248,8 +240,6 @@ public void RemoveFramesMPR(ICollection frames, int startOffset, int curren // Each block is logged as an individual ChangeLog entry RemoveFramesMPR(startFrame - numDeleted >= 0 ? startFrame - numDeleted : 0, prevFrame + 1 - numDeleted, startOffset, currentControlLength); - //RemoveFramesMPR(startFrame - numDeleted, prevFrame + 1 - numDeleted, startOffset, currentControlLength); - numDeleted += prevFrame + 1 - startFrame; } } @@ -266,7 +256,6 @@ public void RemoveFramesMPR(int removeStart, int removeUpTo, int startOffset, in { // Log.GetRange() might be preferrable, but Log's type complicates that. string[] removedInputs = new string[removeUpTo - removeStart]; - //Log.CopyTo(removeStart, removedInputs, 0, removedInputs.Length); // Pre-process removed markers for the ChangeLog. List removedMarkers = new List(); @@ -285,18 +274,12 @@ public void RemoveFramesMPR(int removeStart, int removeUpTo, int startOffset, in ChangeLog.IsRecording = wasRecording; } - //ok right here start doing the shuffle dance - - //StringBuilder tempLog = new StringBuilder(); List lines = new List(); char[] framePrevious = Log[removeStart].ToCharArray(); string frameNext = string.Empty; int removeNum = removeUpTo - removeStart; - //so this is a bit more complicated. Here it will remove a range. - //if two frames to be deleted then need to get the characters from the row two down from the startFrame. - //if beyond the range of the current Log.Count then just use empty inputs. for (int i = removeStart; i < Log.Count; i++) { if (i + removeNum >= Log.Count) @@ -412,14 +395,12 @@ public void InsertInputMPR(int frame, IEnumerable inputLog, int startOff //insert it at end since the inputs have to shift Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), inputLog.Count())); - //StringBuilder tempLog = new StringBuilder(); List lines = new List(); string framePrevious = string.Empty; char[] frameNext = Log[frame].ToCharArray(); int addNewCount = inputLog.Count(); int index = 0; - foreach (string newInputs in inputLog.ToList()) { frameNext = Log[index + frame].ToCharArray(); @@ -452,7 +433,6 @@ public void InsertInputMPR(int frame, IEnumerable inputLog, int startOff Log.RemoveRange(frame, Log.Count - frame); Log.InsertRange(frame, lines); - ShiftBindedMarkers(frame, inputLog.Count()); Changes = true; @@ -524,8 +504,6 @@ public int CopyOverInputMPR(int frame, IEnumerable inputStates, int ExtendMovieForEdit(states.Count + frame - Log.Count); } int addNewCount = inputStates.Count(); - //Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), addNewCount)); - ChangeLog.AddGeneralUndo(frame, frame + states.Count - 1, $"Copy Over Input: {frame}"); @@ -552,8 +530,6 @@ public int CopyOverInputMPR(int frame, IEnumerable inputStates, int { logFrame[j] = inputFrame[j]; } - //.Add(new string(logFrame)); - Log[frame + i] = new string(logFrame); } @@ -565,7 +541,6 @@ public int CopyOverInputMPR(int frame, IEnumerable inputStates, int return firstChangedFrame; } - public int CopyOverDestInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength, int destStartOffset) { int firstChangedFrame = -1; @@ -578,7 +553,6 @@ public int CopyOverDestInputMPR(int frame, IEnumerable inputStates, int ExtendMovieForEdit(states.Count + frame - Log.Count); } int addNewCount = inputStates.Count(); - //Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), addNewCount)); ChangeLog.AddGeneralUndo(frame, frame + states.Count - 1, $"Copy Over Input: {frame}"); @@ -586,7 +560,7 @@ public int CopyOverDestInputMPR(int frame, IEnumerable inputStates, int char[] logFrame; List lines = new List(); - int offsetDifference = destStartOffset - startOffset ; + int offsetDifference = destStartOffset - startOffset; for (int i = 0; i < states.Count; i++) { if (Log.Count <= frame + i) @@ -594,7 +568,6 @@ public int CopyOverDestInputMPR(int frame, IEnumerable inputStates, int break; } - //var entry = Bk2LogEntryGenerator.GenerateLogEntry(states[i]); var entry = states[i]; if (firstChangedFrame == -1 && Log[frame + i] != entry) { @@ -605,10 +578,9 @@ public int CopyOverDestInputMPR(int frame, IEnumerable inputStates, int inputFrame = entry.ToCharArray(); for (int j = startOffset; j < startOffset + currentControlLength; j++) { - logFrame[j] = inputFrame[j+offsetDifference]; + logFrame[j] = inputFrame[j + offsetDifference]; } - //.Add(new string(logFrame)); - + Log[frame + i] = new string(logFrame); } @@ -641,12 +613,10 @@ public void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLe //insert it at end since the inputs have to shift Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); - //StringBuilder tempLog = new StringBuilder(); List lines = new List(); string framePrevious = string.Empty; char[] frameNext = Log[frame].ToCharArray(); - //inserted empty controller first for (int j = startOffset; j < startOffset + currentControlLength; j++) { @@ -657,17 +627,11 @@ public void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLe for (int i = frame; i < Log.Count; i++) { - //do not assign characters from one frame to another if same { if (i + 1 == Log.Count) { lines.Add(Log[i]); - //continue; } - //else if (Log[i].Substring(startOffset, currentControlLength) == Log[i + 1].Substring(startOffset, currentControlLength)) - //{ - // lines.Add(Log[i]); - //} else { //takes characters from the controller and shifts then, leaving other controllers alone. @@ -683,7 +647,6 @@ public void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLe } Log.RemoveRange(frame, Log.Count - frame - 1); Log.InsertRange(frame, lines); - //Log.InsertRange(frame, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), count)); ShiftBindedMarkers(frame, count); @@ -701,7 +664,6 @@ public void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlL //insert it at end since the inputs have to shift Log.InsertRange(Log.Count, Enumerable.Repeat(Bk2LogEntryGenerator.EmptyEntry(Session.MovieController), addNewCount)); - //StringBuilder tempLog = new StringBuilder(); List lines = new List(); string framePrevious = string.Empty; char[] frameNext = Log[frame].ToCharArray(); diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 6f6e56ba514..0da330c8f50 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -154,9 +154,8 @@ public TAStudioMPR() private void Tastudio_Load(object sender, EventArgs e) { this.Width = 1050; - + //width has to be calculated and set after columns are created, but without this it seems to not set correctly. TasView1.Width = Emulator.ControllerDefinition.ControlsOrdered[1].Count * 20 + 80; - //width has to be calculated and set after columns are created. TasView1.QueryItemText += TasView_QueryItemText; TasView1.QueryItemBkColor += TasView_QueryItemBkColor; TasView1.QueryRowBkColor += TasView_QueryRowBkColor; @@ -189,8 +188,8 @@ private void Tastudio_Load(object sender, EventArgs e) InputRoll tasView = new InputRoll(); tasView.Name = "TasView" + i.ToString(); tasView.Parent = MainVertialSplit.Panel1; + //width has to be calculated and set after columns are created, but without this it seems to not set correctly. tasView.Width = Emulator.ControllerDefinition.ControlsOrdered[1].Count * 20 + 80; - //width has to be calculated and set after columns are created. tasView.Height = TasView1.Height; tasView.Location = startLocation; startLocation.X += tasView.Width + 10; //for next tasView @@ -248,12 +247,10 @@ private void Tastudio_Load(object sender, EventArgs e) null, PasteToDestMenuItem_Click) ); - TasViews.Add(tasView); } - if (!Engage()) { Close(); @@ -298,7 +295,6 @@ private void Tastudio_Load(object sender, EventArgs e) _initialized = true; } } - private bool LoadMostRecentOrStartNew() { return LoadFileWithFallback(Settings.RecentTas.MostRecent); @@ -380,10 +376,7 @@ private bool Engage(int viewIndex = 0) MovieSession.ReadOnly = true; SetSplicer(); - //var startLocation = new System.Drawing.Point(TasView1.Location.X + TasView1.Width + 10, 20); - - //var startLocation = new System.Drawing.Point(0, 20); - //try setting the tasview sizes here + //Setting the tasview sizes here var lastTasViewWidth = 0; var lastTasViewLocation = new System.Drawing.Point(0, 20); foreach (InputRoll tasView in TasViews) @@ -452,9 +445,6 @@ private void SetUpColumnsPerControl(int viewIndex) Rotatable = true, }); - //MovieSession.MovieController.Definition.ControlsOrdered - //var controls = MnemonicMap().ToArray()[viewIndex]; - //viewIndex here is the same as the control group index foreach ((string name, string mnemonic0, int maxLength) in MnemonicMapPlayerController(viewIndex)) { @@ -1136,32 +1126,6 @@ private void DoTriggeredAutoRestoreIfNeeded() } } - //public void InsertNumFrames(int insertionFrame, int numberOfFrames) - //{ - // foreach (InputRoll tasView in TasViews) - // { - // if (tasView.Focused && tasView.AnyRowsSelected) - // { - // if (insertionFrame <= CurrentTasMovie.InputLogLength) - // { - // var needsToRollback = tasView.SelectionStartIndex < Emulator.Frame; - - // CurrentTasMovie.InsertEmptyFrame(insertionFrame, numberOfFrames); - - // if (needsToRollback) - // { - // GoToLastEmulatedFrameIfNecessary(insertionFrame); - // DoAutoRestore(); - // } - // else - // { - // RefreshForInputChange(insertionFrame); - // } - // } - // } - // } - //} - public void InsertNumFramesMPR(int insertionFrame, int numberOfFrames) { int tasViewIndex = TasViews.IndexOf(CurrentTasView); @@ -1197,8 +1161,6 @@ public void InsertNumFramesMPR(int insertionFrame, int numberOfFrames) } public void DeleteFrames(int beginningFrame, int numberOfFrames) { - //var a = - if (beginningFrame < CurrentTasMovie.InputLogLength) { int[] framesToRemove = Enumerable.Range(beginningFrame, numberOfFrames).ToArray(); @@ -1473,7 +1435,6 @@ private IMovieController ControllerFromMnemonicStr(string inputLogEntry) } } - private IEnumerable<(string Name, string Mnemonic, int MaxLength)> MnemonicMapPlayerController(int viewIndex) { if (MovieSession.MovieController.Definition.MnemonicsCache is null) From 4bb55a4db0687f012d7edb58e3f68f92d9688da5 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Tue, 11 Feb 2025 20:01:39 -0500 Subject: [PATCH 54/65] Fixing "analyzer" runner errors --- src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs | 4 ---- src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs | 6 +----- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 99c987a0021..e96117fd989 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -1,11 +1,7 @@ using System.Collections.Generic; -using System.Diagnostics; using System.Linq; -using System.Runtime.InteropServices.ComTypes; -using System.Text; using BizHawk.Common.CollectionExtensions; using BizHawk.Emulation.Common; -using SharpCompress; namespace BizHawk.Client.Common { diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 0da330c8f50..8e8550029d1 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -4,14 +4,11 @@ using System.Linq; using System.Windows.Forms; using System.ComponentModel; -using System.Runtime.Remoting.Channels; using BizHawk.Client.Common; using BizHawk.Client.EmuHawk.ToolExtensions; using BizHawk.Client.EmuHawk.Properties; - using BizHawk.Common.StringExtensions; using BizHawk.Emulation.Common; -using Silk.NET.OpenGL; namespace BizHawk.Client.EmuHawk @@ -199,7 +196,7 @@ private void Tastudio_Load(object sender, EventArgs e) tasView.CellHeightPadding = 0; tasView.ChangeSelectionWhenPaging = false; - tasView.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0))); + tasView.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0); tasView.FullRowSelect = true; tasView.InputPaintingMode = true; tasView.LetKeysModifySelection = true; @@ -530,7 +527,6 @@ private void SetupCustomPatterns() } } - //check /// for Lua public void AddColumn(string name, string text, int widthUnscaled) => TasView1.AllColumns.Add(new(name: name, widthUnscaled: widthUnscaled, type: ColumnType.Text, text: text)); From da86c78879dce12a16b657c59efb87da7eac3b5e Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Tue, 11 Feb 2025 20:17:14 -0500 Subject: [PATCH 55/65] Some more analyzer fixes --- .../tools/TAStudioMPR/TAStudioMPR.MenuItems.cs | 3 --- src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs index d94f17a282d..9db036dffaf 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.MenuItems.cs @@ -1,16 +1,13 @@ using System.IO; using System.Linq; -using System.Runtime.InteropServices.WindowsRuntime; using System.Text; using System.Windows.Forms; - using BizHawk.Client.Common; using BizHawk.Client.EmuHawk.ToolExtensions; using BizHawk.Common; using BizHawk.Common.CollectionExtensions; using BizHawk.Common.StringExtensions; using BizHawk.Emulation.Common; -using BizHawk.WinForms.Controls; namespace BizHawk.Client.EmuHawk { diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 8e8550029d1..20d0cf9c654 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -523,7 +523,7 @@ private void SetupCustomPatterns() { // autohold pattern with the maximum axis range as hold value (bit arbitrary) var axisSpec = ControllerType.Axes[ControllerType.Axes[i]]; - AxisPatterns[i] = new AutoPatternAxis([axisSpec.Range.EndInclusive]); + AxisPatterns[i] = new AutoPatternAxis([ axisSpec.Range.EndInclusive ]); } } From 5d66dcc85ee3eab79b114e82bf764a980b7a4ccc Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Tue, 11 Feb 2025 21:59:39 -0500 Subject: [PATCH 56/65] Another Analyzer Fix --- src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 6cb73a3f0c0..4578aecf991 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -196,7 +196,7 @@ public void RemoveFrames(ICollection frames) public void RemoveFramesMPR(ICollection frames, int startOffset, int currentControlLength) { - if (frames.Any()) + if (frames.Count > 0) { // Separate the given frames into contiguous blocks // and process each block independently From c6a84af798d3f3829faca44790abd71f812ded95 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Tue, 11 Feb 2025 22:10:03 -0500 Subject: [PATCH 57/65] Yet more analyzer fixes --- .../tools/TAStudioMPR/BookmarksBranchesBoxMPR.cs | 2 +- .../tools/TAStudioMPR/MarkerControlMPR.cs | 2 +- .../tools/TAStudioMPR/TAStudioMPR.ListView.cs | 11 ++++------- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.cs index 95b62ef117e..d2e21f1f401 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/BookmarksBranchesBoxMPR.cs @@ -543,7 +543,7 @@ public void Restart() public void UpdateTextColumnWidth() { - if (Branches.Any()) + if (Branches.Count > 0) { var longestBranchText = Branches .OrderBy(b => b.UserText?.Length ?? 0) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.cs index 683d6304e85..0a401fca137 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/MarkerControlMPR.cs @@ -195,7 +195,7 @@ public void AddMarker(int frame, bool editText = false) public void UpdateTextColumnWidth() { - if (Markers.Any()) + if (Markers.Count > 0) { var longestBranchText = Markers .OrderBy(b => b.Message?.Length ?? 0) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs index 5b671adc831..1a6eb18307c 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs @@ -1339,7 +1339,7 @@ public void EditAnalogProgrammatically(KeyEventArgs e) } else if (e.KeyCode == Keys.Back) { - if (_axisTypedValue == "") // Very first key press is backspace? + if (_axisTypedValue.Length is 0) // Very first key press is backspace? { _axisTypedValue = value.ToString(NumberFormatInfo.InvariantInfo); } @@ -1397,7 +1397,7 @@ public void EditAnalogProgrammatically(KeyEventArgs e) } else { - if (_axisTypedValue == "") + if (_axisTypedValue.Length is 0) { if (prevTyped != "") { @@ -1415,12 +1415,9 @@ public void EditAnalogProgrammatically(KeyEventArgs e) } } - if (_extraAxisRows.Any()) + foreach (int row in _extraAxisRows) { - foreach (int row in _extraAxisRows) - { - CurrentTasMovie.SetAxisState(row, _axisEditColumn, value); - } + CurrentTasMovie.SetAxisState(row, _axisEditColumn, value); } if (value != prev) // Auto-restore From 25ce071e65e7782f1c3ce36821ac0cffe33bfd89 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Wed, 12 Feb 2025 00:27:30 -0500 Subject: [PATCH 58/65] update quicknes file --- quicknes/core | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quicknes/core b/quicknes/core index 61ff28710c4..b6d45edd9a8 160000 --- a/quicknes/core +++ b/quicknes/core @@ -1 +1 @@ -Subproject commit 61ff28710c44b75c170dff1ee8f89831296e34b5 +Subproject commit b6d45edd9a87d926a004d67bae88487dc7cfd12a From 53b5c2f69d8b5894b1cdd7d0141c562bb248a57f Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Wed, 12 Feb 2025 00:39:49 -0500 Subject: [PATCH 59/65] try quckernes again --- quicknes/.clang-format | 121 + quicknes/.gitignore | 37 + quicknes/.gitmodules | 6 + quicknes/.run-clang-format.sh | 59 + quicknes/LICENSE | 339 + quicknes/README.md | 39 + quicknes/extern/hqn/.gitignore | 13 + quicknes/extern/hqn/LICENSE | 24 + quicknes/extern/hqn/hqn.cpp | 125 + quicknes/extern/hqn/hqn.h | 188 + quicknes/extern/hqn/hqn_gui_controller.cpp | 334 + quicknes/extern/hqn/hqn_gui_controller.h | 160 + quicknes/extern/hqn/hqn_surface.cpp | 302 + quicknes/extern/hqn/hqn_surface.h | 129 + quicknes/extern/hqn/meson.build | 16 + quicknes/meson.build | 60 + quicknes/meson_options.txt | 34 + quicknes/overlay/base.png | Bin 0 -> 3811 bytes quicknes/overlay/button_a.png | Bin 0 -> 527 bytes quicknes/overlay/button_b.png | Bin 0 -> 534 bytes quicknes/overlay/button_down.png | Bin 0 -> 231 bytes quicknes/overlay/button_left.png | Bin 0 -> 231 bytes quicknes/overlay/button_right.png | Bin 0 -> 231 bytes quicknes/overlay/button_select.png | Bin 0 -> 245 bytes quicknes/overlay/button_start.png | Bin 0 -> 389 bytes quicknes/overlay/button_up.png | Bin 0 -> 231 bytes quicknes/overlay/overlay.pdn | Bin 0 -> 10301 bytes quicknes/source/inputParser.hpp | 353 + quicknes/source/meson.build | 12 + quicknes/source/nesInstanceBase.hpp | 89 + quicknes/source/playbackInstance.hpp | 274 + quicknes/source/player.cpp | 241 + quicknes/source/quickNES/meson.build | 80 + quicknes/source/quickNES/nesInstance.hpp | 85 + .../quickerNES/core/apu/NESEffectsBuffer.cpp | 85 + .../quickerNES/core/apu/NESEffectsBuffer.hpp | 41 + quicknes/source/quickerNES/core/apu/apu.cpp | 375 + quicknes/source/quickerNES/core/apu/apu.hpp | 363 + .../source/quickerNES/core/apu/blipBuffer.cpp | 422 + .../source/quickerNES/core/apu/blipBuffer.hpp | 380 + .../source/quickerNES/core/apu/buffer.cpp | 230 + .../source/quickerNES/core/apu/buffer.hpp | 82 + .../quickerNES/core/apu/effectsBuffer.cpp | 518 + .../quickerNES/core/apu/effectsBuffer.hpp | 104 + .../quickerNES/core/apu/fme7/apu_fme7.cpp | 108 + .../quickerNES/core/apu/fme7/apu_fme7.hpp | 155 + .../quickerNES/core/apu/multiBuffer.cpp | 287 + .../quickerNES/core/apu/multiBuffer.hpp | 202 + .../quickerNES/core/apu/namco/apu_namco.cpp | 183 + .../quickerNES/core/apu/namco/apu_namco.hpp | 115 + quicknes/source/quickerNES/core/apu/oscs.cpp | 682 + quicknes/source/quickerNES/core/apu/oscs.hpp | 172 + .../quickerNES/core/apu/vrc6/apu_vrc6.cpp | 215 + .../quickerNES/core/apu/vrc6/apu_vrc6.hpp | 112 + .../quickerNES/core/apu/vrc7/apu_vrc7.cpp | 211 + .../quickerNES/core/apu/vrc7/apu_vrc7.hpp | 79 + .../quickerNES/core/apu/vrc7/emu2413.cpp | 1155 + .../quickerNES/core/apu/vrc7/emu2413.hpp | 223 + .../core/apu/vrc7/emu2413_state.cpp | 116 + .../core/apu/vrc7/emu2413_state.hpp | 41 + quicknes/source/quickerNES/core/cart.hpp | 117 + quicknes/source/quickerNES/core/core.hpp | 1208 + quicknes/source/quickerNES/core/cpu.cpp | 1495 + quicknes/source/quickerNES/core/cpu.hpp | 165 + quicknes/source/quickerNES/core/emu.cpp | 845 + quicknes/source/quickerNES/core/emu.hpp | 322 + .../source/quickerNES/core/mappers/mapper.cpp | 294 + .../source/quickerNES/core/mappers/mapper.hpp | 212 + .../quickerNES/core/mappers/mapper000.hpp | 38 + .../quickerNES/core/mappers/mapper001.hpp | 129 + .../quickerNES/core/mappers/mapper002.hpp | 48 + .../quickerNES/core/mappers/mapper003.hpp | 47 + .../quickerNES/core/mappers/mapper004.hpp | 258 + .../quickerNES/core/mappers/mapper005.hpp | 152 + .../quickerNES/core/mappers/mapper007.hpp | 55 + .../quickerNES/core/mappers/mapper009.hpp | 81 + .../quickerNES/core/mappers/mapper010.hpp | 79 + .../quickerNES/core/mappers/mapper011.hpp | 55 + .../quickerNES/core/mappers/mapper015.hpp | 97 + .../quickerNES/core/mappers/mapper019.hpp | 202 + .../quickerNES/core/mappers/mapper021.hpp | 259 + .../quickerNES/core/mappers/mapper022.hpp | 37 + .../quickerNES/core/mappers/mapper023.hpp | 36 + .../quickerNES/core/mappers/mapper024.hpp | 236 + .../quickerNES/core/mappers/mapper025.hpp | 36 + .../quickerNES/core/mappers/mapper026.hpp | 14 + .../quickerNES/core/mappers/mapper030.hpp | 56 + .../quickerNES/core/mappers/mapper032.hpp | 129 + .../quickerNES/core/mappers/mapper033.hpp | 106 + .../quickerNES/core/mappers/mapper034.hpp | 47 + .../quickerNES/core/mappers/mapper060.hpp | 56 + .../quickerNES/core/mappers/mapper066.hpp | 55 + .../quickerNES/core/mappers/mapper069.hpp | 193 + .../quickerNES/core/mappers/mapper070.hpp | 87 + .../quickerNES/core/mappers/mapper071.hpp | 57 + .../quickerNES/core/mappers/mapper073.hpp | 137 + .../quickerNES/core/mappers/mapper075.hpp | 113 + .../quickerNES/core/mappers/mapper078.hpp | 80 + .../quickerNES/core/mappers/mapper079.hpp | 98 + .../quickerNES/core/mappers/mapper085.hpp | 228 + .../quickerNES/core/mappers/mapper086.hpp | 29 + .../quickerNES/core/mappers/mapper087.hpp | 53 + .../quickerNES/core/mappers/mapper088.hpp | 114 + .../quickerNES/core/mappers/mapper089.hpp | 62 + .../quickerNES/core/mappers/mapper093.hpp | 61 + .../quickerNES/core/mappers/mapper094.hpp | 60 + .../quickerNES/core/mappers/mapper097.hpp | 69 + .../quickerNES/core/mappers/mapper113.hpp | 33 + .../quickerNES/core/mappers/mapper140.hpp | 69 + .../quickerNES/core/mappers/mapper152.hpp | 29 + .../quickerNES/core/mappers/mapper154.hpp | 33 + .../quickerNES/core/mappers/mapper156.hpp | 65 + .../quickerNES/core/mappers/mapper180.hpp | 60 + .../quickerNES/core/mappers/mapper184.hpp | 70 + .../quickerNES/core/mappers/mapper190.hpp | 60 + .../quickerNES/core/mappers/mapper193.hpp | 81 + .../quickerNES/core/mappers/mapper206.hpp | 103 + .../quickerNES/core/mappers/mapper207.hpp | 96 + .../quickerNES/core/mappers/mapper232.hpp | 59 + .../quickerNES/core/mappers/mapper240.hpp | 69 + .../quickerNES/core/mappers/mapper241.hpp | 58 + .../quickerNES/core/mappers/mapper244.hpp | 75 + .../quickerNES/core/mappers/mapper246.hpp | 80 + quicknes/source/quickerNES/core/ppu/ppu.cpp | 659 + quicknes/source/quickerNES/core/ppu/ppu.hpp | 146 + .../source/quickerNES/core/ppu/ppuImpl.cpp | 436 + .../source/quickerNES/core/ppu/ppuImpl.hpp | 263 + .../quickerNES/core/ppu/ppuRendering.cpp | 506 + .../quickerNES/core/ppu/ppuRendering.hpp | 64 + .../source/quickerNES/core/ppu/ppuSprites.hpp | 132 + quicknes/source/quickerNES/meson.build | 47 + quicknes/source/quickerNES/nesInstance.hpp | 79 + quicknes/source/tester.cpp | 286 + quicknes/tests/.gitignore | 9 + quicknes/tests/README.md | 20 + quicknes/tests/arkanoid.arkNESController.sol | 9342 + quicknes/tests/arkanoid.arkNESController.test | 15 + quicknes/tests/arkanoid.warpless.sol | 39431 ++ quicknes/tests/arkanoid.warpless.test | 15 + quicknes/tests/arkanoid.warps.sol | 15806 + quicknes/tests/arkanoid.warps.test | 15 + .../tests/arkanoid2.arkFamicomController.sol | 3472 + .../tests/arkanoid2.arkFamicomController.test | 15 + quicknes/tests/castlevania1.anyPercent.sol | 37338 ++ quicknes/tests/castlevania1.anyPercent.test | 15 + quicknes/tests/castlevania1.pacifist.sol | 39555 ++ quicknes/tests/castlevania1.pacifist.test | 15 + quicknes/tests/castlevania3.playaround.sol | 3499 + quicknes/tests/castlevania3.playaround.test | 15 + quicknes/tests/galaga.anyPercent.sol | 29916 ++ quicknes/tests/galaga.anyPercent.test | 15 + quicknes/tests/ironSword.anyPercent.sol | 25785 ++ quicknes/tests/ironSword.anyPercent.test | 15 + quicknes/tests/meson.build | 118 + quicknes/tests/metroid.playaround.sol | 1729 + quicknes/tests/metroid.playaround.test | 15 + quicknes/tests/microMachines.race20.sol | 1802 + quicknes/tests/microMachines.race20.state | Bin 0 -> 22946 bytes quicknes/tests/microMachines.race20.test | 15 + quicknes/tests/nigelMansell.anyPercent.sol | 296590 +++++++++++++++ quicknes/tests/nigelMansell.anyPercent.test | 15 + quicknes/tests/ninjaGaiden.anyPercent.sol | 39111 ++ quicknes/tests/ninjaGaiden.anyPercent.test | 15 + quicknes/tests/ninjaGaiden.pacifist.sol | 40680 ++ quicknes/tests/ninjaGaiden.pacifist.test | 15 + quicknes/tests/ninjaGaiden2.anyPercent.sol | 34660 ++ quicknes/tests/ninjaGaiden2.anyPercent.test | 15 + quicknes/tests/ninjaGaiden2.pacifist.sol | 36619 ++ quicknes/tests/ninjaGaiden2.pacifist.test | 15 + quicknes/tests/novaTheSquirrel.anyPercent.sol | 45472 +++ .../tests/novaTheSquirrel.anyPercent.test | 15 + quicknes/tests/princeOfPersia.anyPercent.sol | 55827 +++ quicknes/tests/princeOfPersia.anyPercent.test | 15 + quicknes/tests/rcProAmII.race1.sol | 5482 + quicknes/tests/rcProAmII.race1.test | 15 + quicknes/tests/roms/README.md | 3 + .../saintSeiyaKanketsuHen.anyPercent.sol | 86170 +++++ .../saintSeiyaKanketsuHen.anyPercent.test | 15 + .../saintSeiyaOugonDensetsu.anyPercent.sol | 76723 ++++ .../saintSeiyaOugonDensetsu.anyPercent.test | 15 + quicknes/tests/saiyuukiWorld.anyPercent.sol | 44671 +++ quicknes/tests/saiyuukiWorld.anyPercent.test | 15 + quicknes/tests/saiyuukiWorld.lastHalf.sol | 22672 ++ quicknes/tests/saiyuukiWorld.lastHalf.state | Bin 0 -> 22937 bytes quicknes/tests/saiyuukiWorld.lastHalf.test | 15 + quicknes/tests/solarJetman.anyPercent.sol | 45983 +++ quicknes/tests/solarJetman.anyPercent.test | 17 + quicknes/tests/sprilo.anyPercent.sol | 4572 + quicknes/tests/sprilo.anyPercent.test | 15 + quicknes/tests/superMarioBros.warpless.sol | 67115 ++++ quicknes/tests/superMarioBros.warpless.test | 15 + quicknes/tests/superMarioBros.warps.sol | 17867 + quicknes/tests/superMarioBros.warps.test | 15 + quicknes/tests/superMarioBros3.warps.sol | 37520 ++ quicknes/tests/superMarioBros3.warps.test | 15 + quicknes/tests/superOffroad.anyPercent.sol | 182180 +++++++++ quicknes/tests/superOffroad.anyPercent.test | 15 + quicknes/tests/tennis.anyPercent.sol | 40627 ++ quicknes/tests/tennis.anyPercent.test | 15 + 199 files changed, 1410659 insertions(+) create mode 100644 quicknes/.clang-format create mode 100644 quicknes/.gitignore create mode 100644 quicknes/.gitmodules create mode 100644 quicknes/.run-clang-format.sh create mode 100644 quicknes/LICENSE create mode 100644 quicknes/README.md create mode 100644 quicknes/extern/hqn/.gitignore create mode 100644 quicknes/extern/hqn/LICENSE create mode 100644 quicknes/extern/hqn/hqn.cpp create mode 100644 quicknes/extern/hqn/hqn.h create mode 100644 quicknes/extern/hqn/hqn_gui_controller.cpp create mode 100644 quicknes/extern/hqn/hqn_gui_controller.h create mode 100644 quicknes/extern/hqn/hqn_surface.cpp create mode 100644 quicknes/extern/hqn/hqn_surface.h create mode 100644 quicknes/extern/hqn/meson.build create mode 100644 quicknes/meson.build create mode 100644 quicknes/meson_options.txt create mode 100644 quicknes/overlay/base.png create mode 100644 quicknes/overlay/button_a.png create mode 100644 quicknes/overlay/button_b.png create mode 100644 quicknes/overlay/button_down.png create mode 100644 quicknes/overlay/button_left.png create mode 100644 quicknes/overlay/button_right.png create mode 100644 quicknes/overlay/button_select.png create mode 100644 quicknes/overlay/button_start.png create mode 100644 quicknes/overlay/button_up.png create mode 100644 quicknes/overlay/overlay.pdn create mode 100644 quicknes/source/inputParser.hpp create mode 100644 quicknes/source/meson.build create mode 100644 quicknes/source/nesInstanceBase.hpp create mode 100644 quicknes/source/playbackInstance.hpp create mode 100644 quicknes/source/player.cpp create mode 100644 quicknes/source/quickNES/meson.build create mode 100644 quicknes/source/quickNES/nesInstance.hpp create mode 100644 quicknes/source/quickerNES/core/apu/NESEffectsBuffer.cpp create mode 100644 quicknes/source/quickerNES/core/apu/NESEffectsBuffer.hpp create mode 100644 quicknes/source/quickerNES/core/apu/apu.cpp create mode 100644 quicknes/source/quickerNES/core/apu/apu.hpp create mode 100644 quicknes/source/quickerNES/core/apu/blipBuffer.cpp create mode 100644 quicknes/source/quickerNES/core/apu/blipBuffer.hpp create mode 100644 quicknes/source/quickerNES/core/apu/buffer.cpp create mode 100644 quicknes/source/quickerNES/core/apu/buffer.hpp create mode 100644 quicknes/source/quickerNES/core/apu/effectsBuffer.cpp create mode 100644 quicknes/source/quickerNES/core/apu/effectsBuffer.hpp create mode 100644 quicknes/source/quickerNES/core/apu/fme7/apu_fme7.cpp create mode 100644 quicknes/source/quickerNES/core/apu/fme7/apu_fme7.hpp create mode 100644 quicknes/source/quickerNES/core/apu/multiBuffer.cpp create mode 100644 quicknes/source/quickerNES/core/apu/multiBuffer.hpp create mode 100644 quicknes/source/quickerNES/core/apu/namco/apu_namco.cpp create mode 100644 quicknes/source/quickerNES/core/apu/namco/apu_namco.hpp create mode 100644 quicknes/source/quickerNES/core/apu/oscs.cpp create mode 100644 quicknes/source/quickerNES/core/apu/oscs.hpp create mode 100644 quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.cpp create mode 100644 quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.hpp create mode 100644 quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.cpp create mode 100644 quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.hpp create mode 100644 quicknes/source/quickerNES/core/apu/vrc7/emu2413.cpp create mode 100644 quicknes/source/quickerNES/core/apu/vrc7/emu2413.hpp create mode 100644 quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.cpp create mode 100644 quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.hpp create mode 100644 quicknes/source/quickerNES/core/cart.hpp create mode 100644 quicknes/source/quickerNES/core/core.hpp create mode 100644 quicknes/source/quickerNES/core/cpu.cpp create mode 100644 quicknes/source/quickerNES/core/cpu.hpp create mode 100644 quicknes/source/quickerNES/core/emu.cpp create mode 100644 quicknes/source/quickerNES/core/emu.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper.cpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper000.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper001.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper002.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper003.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper004.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper005.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper007.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper009.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper010.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper011.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper015.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper019.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper021.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper022.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper023.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper024.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper025.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper026.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper030.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper032.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper033.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper034.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper060.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper066.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper069.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper070.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper071.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper073.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper075.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper078.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper079.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper085.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper086.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper087.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper088.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper089.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper093.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper094.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper097.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper113.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper140.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper152.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper154.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper156.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper180.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper184.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper190.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper193.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper206.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper207.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper232.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper240.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper241.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper244.hpp create mode 100644 quicknes/source/quickerNES/core/mappers/mapper246.hpp create mode 100644 quicknes/source/quickerNES/core/ppu/ppu.cpp create mode 100644 quicknes/source/quickerNES/core/ppu/ppu.hpp create mode 100644 quicknes/source/quickerNES/core/ppu/ppuImpl.cpp create mode 100644 quicknes/source/quickerNES/core/ppu/ppuImpl.hpp create mode 100644 quicknes/source/quickerNES/core/ppu/ppuRendering.cpp create mode 100644 quicknes/source/quickerNES/core/ppu/ppuRendering.hpp create mode 100644 quicknes/source/quickerNES/core/ppu/ppuSprites.hpp create mode 100644 quicknes/source/quickerNES/meson.build create mode 100644 quicknes/source/quickerNES/nesInstance.hpp create mode 100644 quicknes/source/tester.cpp create mode 100644 quicknes/tests/.gitignore create mode 100644 quicknes/tests/README.md create mode 100644 quicknes/tests/arkanoid.arkNESController.sol create mode 100644 quicknes/tests/arkanoid.arkNESController.test create mode 100644 quicknes/tests/arkanoid.warpless.sol create mode 100644 quicknes/tests/arkanoid.warpless.test create mode 100644 quicknes/tests/arkanoid.warps.sol create mode 100644 quicknes/tests/arkanoid.warps.test create mode 100644 quicknes/tests/arkanoid2.arkFamicomController.sol create mode 100644 quicknes/tests/arkanoid2.arkFamicomController.test create mode 100644 quicknes/tests/castlevania1.anyPercent.sol create mode 100644 quicknes/tests/castlevania1.anyPercent.test create mode 100644 quicknes/tests/castlevania1.pacifist.sol create mode 100644 quicknes/tests/castlevania1.pacifist.test create mode 100644 quicknes/tests/castlevania3.playaround.sol create mode 100644 quicknes/tests/castlevania3.playaround.test create mode 100644 quicknes/tests/galaga.anyPercent.sol create mode 100644 quicknes/tests/galaga.anyPercent.test create mode 100644 quicknes/tests/ironSword.anyPercent.sol create mode 100644 quicknes/tests/ironSword.anyPercent.test create mode 100644 quicknes/tests/meson.build create mode 100644 quicknes/tests/metroid.playaround.sol create mode 100644 quicknes/tests/metroid.playaround.test create mode 100644 quicknes/tests/microMachines.race20.sol create mode 100644 quicknes/tests/microMachines.race20.state create mode 100644 quicknes/tests/microMachines.race20.test create mode 100644 quicknes/tests/nigelMansell.anyPercent.sol create mode 100644 quicknes/tests/nigelMansell.anyPercent.test create mode 100644 quicknes/tests/ninjaGaiden.anyPercent.sol create mode 100644 quicknes/tests/ninjaGaiden.anyPercent.test create mode 100644 quicknes/tests/ninjaGaiden.pacifist.sol create mode 100644 quicknes/tests/ninjaGaiden.pacifist.test create mode 100644 quicknes/tests/ninjaGaiden2.anyPercent.sol create mode 100644 quicknes/tests/ninjaGaiden2.anyPercent.test create mode 100644 quicknes/tests/ninjaGaiden2.pacifist.sol create mode 100644 quicknes/tests/ninjaGaiden2.pacifist.test create mode 100644 quicknes/tests/novaTheSquirrel.anyPercent.sol create mode 100644 quicknes/tests/novaTheSquirrel.anyPercent.test create mode 100644 quicknes/tests/princeOfPersia.anyPercent.sol create mode 100644 quicknes/tests/princeOfPersia.anyPercent.test create mode 100644 quicknes/tests/rcProAmII.race1.sol create mode 100644 quicknes/tests/rcProAmII.race1.test create mode 100644 quicknes/tests/roms/README.md create mode 100644 quicknes/tests/saintSeiyaKanketsuHen.anyPercent.sol create mode 100644 quicknes/tests/saintSeiyaKanketsuHen.anyPercent.test create mode 100644 quicknes/tests/saintSeiyaOugonDensetsu.anyPercent.sol create mode 100644 quicknes/tests/saintSeiyaOugonDensetsu.anyPercent.test create mode 100644 quicknes/tests/saiyuukiWorld.anyPercent.sol create mode 100644 quicknes/tests/saiyuukiWorld.anyPercent.test create mode 100644 quicknes/tests/saiyuukiWorld.lastHalf.sol create mode 100644 quicknes/tests/saiyuukiWorld.lastHalf.state create mode 100644 quicknes/tests/saiyuukiWorld.lastHalf.test create mode 100644 quicknes/tests/solarJetman.anyPercent.sol create mode 100644 quicknes/tests/solarJetman.anyPercent.test create mode 100644 quicknes/tests/sprilo.anyPercent.sol create mode 100644 quicknes/tests/sprilo.anyPercent.test create mode 100644 quicknes/tests/superMarioBros.warpless.sol create mode 100644 quicknes/tests/superMarioBros.warpless.test create mode 100644 quicknes/tests/superMarioBros.warps.sol create mode 100644 quicknes/tests/superMarioBros.warps.test create mode 100644 quicknes/tests/superMarioBros3.warps.sol create mode 100644 quicknes/tests/superMarioBros3.warps.test create mode 100644 quicknes/tests/superOffroad.anyPercent.sol create mode 100644 quicknes/tests/superOffroad.anyPercent.test create mode 100644 quicknes/tests/tennis.anyPercent.sol create mode 100644 quicknes/tests/tennis.anyPercent.test diff --git a/quicknes/.clang-format b/quicknes/.clang-format new file mode 100644 index 00000000000..c818c8e955b --- /dev/null +++ b/quicknes/.clang-format @@ -0,0 +1,121 @@ +--- +Language: Cpp +# BasedOnStyle: LLVM +AccessModifierOffset: -4 +AlignAfterOpenBracket: Align +AlignConsecutiveAssignments: false +AlignConsecutiveDeclarations: false +AlignEscapedNewlines: Right +AlignOperands: true +AlignTrailingComments: true +AllowAllParametersOfDeclarationOnNextLine: true +AllowShortLambdasOnASingleLine: None +AllowShortBlocksOnASingleLine: true +AllowShortCaseLabelsOnASingleLine: true +AllowShortFunctionsOnASingleLine: All +AllowShortIfStatementsOnASingleLine: true +AllowShortLoopsOnASingleLine: true +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: None +AlwaysBreakBeforeMultilineStrings: false +AlwaysBreakTemplateDeclarations: Yes +BinPackArguments: false +BinPackParameters: false +BraceWrapping: + AfterClass: false + AfterControlStatement: false + AfterEnum: false + AfterFunction: false + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: false + AfterUnion: false + AfterExternBlock: false + BeforeCatch: false + BeforeElse: false + IndentBraces: false + SplitEmptyFunction: true + SplitEmptyRecord: true + SplitEmptyNamespace: true +BreakBeforeBinaryOperators: None +BreakBeforeBraces: Allman +BreakBeforeInheritanceComma: false +BreakInheritanceList: BeforeColon +BreakBeforeTernaryOperators: true +BreakConstructorInitializersBeforeComma: false +BreakConstructorInitializers: BeforeColon +BreakAfterJavaFieldAnnotations: false +BreakStringLiterals: false +ColumnLimit: 0 +CommentPragmas: '^ IWYU pragma:' +CompactNamespaces: false +ConstructorInitializerAllOnOneLineOrOnePerLine: false +ConstructorInitializerIndentWidth: 2 +ContinuationIndentWidth: 2 +Cpp11BracedListStyle: true +DerivePointerAlignment: false +DisableFormat: false +ExperimentalAutoDetectBinPacking: false +FixNamespaceComments: true +ForEachMacros: + - foreach + - Q_FOREACH + - BOOST_FOREACH +IncludeBlocks: Preserve +IncludeCategories: + - Regex: '^"(llvm|llvm-c|clang|clang-c)/' + Priority: 2 + - Regex: '^(<|"(gtest|gmock|isl|json)/)' + Priority: 3 + - Regex: '.*' + Priority: 1 +IncludeIsMainRegex: '(Test)?$' +IndentCaseLabels: false +IndentPPDirectives: BeforeHash +IndentWidth: 2 +IndentWrappedFunctionNames: false +JavaScriptQuotes: Leave +JavaScriptWrapImports: true +KeepEmptyLinesAtTheStartOfBlocks: false +MacroBlockBegin: '' +MacroBlockEnd: '' +MaxEmptyLinesToKeep: 1 +NamespaceIndentation: None +ObjCBinPackProtocolList: Auto +ObjCBlockIndentWidth: 2 +ObjCSpaceAfterProperty: false +ObjCSpaceBeforeProtocolList: true +PenaltyBreakAssignment: 2 +PenaltyBreakBeforeFirstCallParameter: 19 +PenaltyBreakComment: 300 +PenaltyBreakFirstLessLess: 120 +PenaltyBreakString: 1000 +PenaltyBreakTemplateDeclaration: 10 +PenaltyExcessCharacter: 1000000 +PenaltyReturnTypeOnItsOwnLine: 60 +PointerAlignment: Right +ReflowComments: true +SortIncludes: true +SortUsingDeclarations: true +SpaceAfterCStyleCast: false +SpaceAfterTemplateKeyword: true +SpaceBeforeAssignmentOperators: true +SpaceBeforeCpp11BracedList: false +SpaceBeforeCtorInitializerColon: true +SpaceBeforeInheritanceColon: true +SpaceBeforeParens: ControlStatements +SpaceBeforeRangeBasedForLoopColon: true +SpaceInEmptyParentheses: false +SpacesBeforeTrailingComments: 1 +SpacesInAngles: false +SpacesInContainerLiterals: true +SpacesInCStyleCastParentheses: false +SpacesInParentheses: false +SpacesInSquareBrackets: false +Standard: Cpp11 +StatementMacros: + - Q_UNUSED + - QT_REQUIRE_VERSION +TabWidth: 2 +UseTab: Never +... diff --git a/quicknes/.gitignore b/quicknes/.gitignore new file mode 100644 index 00000000000..4dcaec30840 --- /dev/null +++ b/quicknes/.gitignore @@ -0,0 +1,37 @@ +run-clang-format + +# Things +.vscode + +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app diff --git a/quicknes/.gitmodules b/quicknes/.gitmodules new file mode 100644 index 00000000000..146089274c6 --- /dev/null +++ b/quicknes/.gitmodules @@ -0,0 +1,6 @@ +[submodule "source/quickNES/QuickNES_Core"] + path = source/quickNES/core + url = https://github.com/SergioMartin86/QuickNES_Core.git +[submodule "source/jaffarCommon"] + path = extern/jaffarCommon + url = https://github.com/SergioMartin86/jaffarCommon.git diff --git a/quicknes/.run-clang-format.sh b/quicknes/.run-clang-format.sh new file mode 100644 index 00000000000..68188ea428f --- /dev/null +++ b/quicknes/.run-clang-format.sh @@ -0,0 +1,59 @@ +#!/usr/bin/env bash +if [[ $# -ne 1 ]]; then + echo "Usage: $0 " + exit 1 +fi +task="${1}"; shift + +function check() +{ + if [ ! $? -eq 0 ]; then + echo "Error fixing style." + exit -1 + fi +} + +function check_syntax() +{ + # If run-clang-format is not installed, clone it + if [ ! -f run-clang-format/run-clang-format.py ]; then + + git clone https://github.com/Sarcasm/run-clang-format.git + if [ ! $? -eq 0 ]; then + echo "Error installing run-clang-format." + exit 1 + fi + fi + + python3 run-clang-format/run-clang-format.py --recursive source --extensions "cpp,hpp" + + if [ ! $? -eq 0 ]; then + echo "Error: C++ Code formatting in source is not normalized." + echo "Solution: Please run this program with the 'fix' argument" + exit -1 + fi +} + +function fix_syntax() +{ + src_files=`find source -type f -name "*.cpp" -o -name "*.hpp"` + echo $src_files | xargs -n6 -P2 clang-format -style=file -i "$@" + check +} + +############################################## +### Testing/fixing C++ Code Style +############################################## +command -v clang-format >/dev/null +if [ ! $? -eq 0 ]; then + echo "Error: please install clang-format on your system." + exit -1 +fi + +if [[ "${task}" == 'check' ]]; then + check_syntax +else + fix_syntax +fi + +exit 0 \ No newline at end of file diff --git a/quicknes/LICENSE b/quicknes/LICENSE new file mode 100644 index 00000000000..d159169d105 --- /dev/null +++ b/quicknes/LICENSE @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/quicknes/README.md b/quicknes/README.md new file mode 100644 index 00000000000..3267d4ef274 --- /dev/null +++ b/quicknes/README.md @@ -0,0 +1,39 @@ +quickerNES +----------- + +[![Build & Tests](https://github.com/SergioMartin86/quickerNES/actions/workflows/make.yml/badge.svg)](https://github.com/SergioMartin86/quickerNES/actions/workflows/make.yml) + +quickerNES is an attempt to modernizing [quickNES](https://github.com/kode54/QuickNES). The goals for this project are, in order of importance: + +- Improve overall emulation performance for modern (x86) CPUs (portability to other systems not guaranteed) +- Modernize the code base with best programming practices, including CI tests, benchmarks, and coverage analysis +- Add support for more mappers, controllers, and features supported by other emulators +- Improve accuracy, if possible + +The main aim is to improve the performance of headless re-recording for TASing and botting (See: [JaffarPlus](https://github.com/SergioMartin86/jaffarPlus)) purposes. However, if this work can help regular play emulation, then much better. + +Improvements +------------- + +- Optimizations made in the CPU emulation core, including: + + Forced alignment at the start of a page to prevent crossing cache line boundaries + + Simplifying the 6502 CPU instruction fetching and decoding + + Multiple branch optimizations + + Assuming little endiannes to reduce unnecessary conversion operations (not portable to big endian systems) + + Minimize compiled code size to reduce pressure on L1i cache +- Added support for FourScore controller +- General code reorganization (make it header only to help compiler optimizations) + +Credits +--------- + +- quickNES was originally by Shay Green (a.k.a. [Blaarg](http://www.slack.net/~ant/)) under the GNU GPLv2 license. The source code is still located [here](https://github.com/kode54/QuickNES) +- The code was later improved and maintained by Christopher Snowhill (a.k.a. [kode54](https://kode54.net/)) +- I could trace further contributions (e.g., new mappers) by retrowertz, CaH4e3, some adaptations from the [FCEUX emulator](https://github.com/TASEmulators/fceux) (see mapper021) +- The latest version of the code is maintained by Libretro's community [here](https://github.com/libretro/QuickNES_Core) +- For the interactive player, this project drew some code from [HeadlessQuickNES (HQN)](https://github.com/Bindernews/HeadlessQuickNes) by Drew (Binder News) +- We use some of the [NES test rom set](https://github.com/christopherpow/nes-test-roms) made by multiple authors and gathered by Christopher Pow et al. +- We also use some movies from the [TASVideos](tasvideos.org) website for testing. These movies are copied into this repository with authorization under the Creative Commons Attribution 2.0 license. + +All base code for this project was found under open source licenses, which I preserved in their corresponding files/folders. Any non-credited work is unintentional and shall be immediately rectfied. + diff --git a/quicknes/extern/hqn/.gitignore b/quicknes/extern/hqn/.gitignore new file mode 100644 index 00000000000..4cb7be1c265 --- /dev/null +++ b/quicknes/extern/hqn/.gitignore @@ -0,0 +1,13 @@ +LuaJIT/ +SDL2/ +bin/ +build/ +*.o +*.obj +*.a +*.lib +*.so +*.so.* +*.dll +*.exe +hqnes diff --git a/quicknes/extern/hqn/LICENSE b/quicknes/extern/hqn/LICENSE new file mode 100644 index 00000000000..75dbd7d9ed9 --- /dev/null +++ b/quicknes/extern/hqn/LICENSE @@ -0,0 +1,24 @@ +Slightly modified version of HeadlessQuickNES (https://github.com/Bindernews/HeadlessQuickNes). +Modified by Sergio Martin based on the original HQN by: + +The MIT License (MIT) + +Copyright (c) 2016 Drew + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/quicknes/extern/hqn/hqn.cpp b/quicknes/extern/hqn/hqn.cpp new file mode 100644 index 00000000000..061a94e4339 --- /dev/null +++ b/quicknes/extern/hqn/hqn.cpp @@ -0,0 +1,125 @@ +#include +#include +#include "hqn.h" + +namespace hqn +{ + +// Function to initalize the video palette +int32_t *_initF_VideoPalette() +{ + static int32_t VideoPalette[512]; + const emulator_t::rgb_t *palette = emulator_t::nes_colors; + for (int i = 0; i < 512; i++) + { + VideoPalette[i] = palette[i].red << 16 | palette[i].green << 8 + | palette[i].blue | 0xff000000; + } + return VideoPalette; +} + +// Initialize the video palette +const int32_t *HQNState::NES_VIDEO_PALETTE = _initF_VideoPalette(); + +// Constructor +HQNState::HQNState() +{ + m_emu = new emulator_t(); + joypad[0] = 0x00; + joypad[1] = 0x00; + + m_listener = nullptr; + m_romData = nullptr; + m_romSize = 0; + + m_emu->set_sample_rate(44100); + + m_prevFrame = 0; + m_msPerFrame = 0; + m_initialFrame = SDL_GetTicks(); +} + +// Destructor +HQNState::~HQNState() +{ +} + +error_t HQNState::setSampleRate(int rate) +{ + const char *ret = m_emu->set_sample_rate(rate); + if (!ret) + m_emu->set_equalizer(emulator_t::nes_eq); + return ret; +} + + +error_t HQNState::saveState(void *dest, size_t size, size_t *size_out) +{ + return 0; +} + +error_t HQNState::saveStateSize(size_t *size) const +{ + return 0; +} + +error_t HQNState::loadState(const char *data, size_t size) +{ + return 0; +} + +// Advance the emulator +error_t HQNState::advanceFrame(bool sleep) +{ + Uint32 ticks; + ticks = SDL_GetTicks(); + Uint32 wantTicks = m_prevFrame + m_msPerFrame; + if (wantTicks > ticks) + { + SDL_Delay(wantTicks - ticks); + } + // m_frameTime = wantTicks - m_prevFrame; + // error_t result = m_emu->emulate_frame(joypad[0], joypad[1]); + if (m_listener) + m_listener->onAdvanceFrame(this); + ticks = SDL_GetTicks(); + m_frameTime = ticks - m_prevFrame; + m_prevFrame = ticks; + return 0; +} + +void HQNState::setFramerate(int fps) +{ + if (fps == 0) + { + m_msPerFrame = 0; + } + else + { + m_msPerFrame = (long)(1000.0 / fps); + } +} + +int HQNState::getFramerate() const +{ + if (m_msPerFrame) + { + return (int)(1000.0 / m_msPerFrame); + } + else + { + return 0; + } +} + +double HQNState::getFPS() const +{ + double ft = m_frameTime ? m_frameTime : 1; + double fps = 1000.0 / ft; + // round to 2 decimal places + fps = std::floor(fps * 100) / 100; + return fps; +} + + +} // end namespace hqn diff --git a/quicknes/extern/hqn/hqn.h b/quicknes/extern/hqn/hqn.h new file mode 100644 index 00000000000..11ce4eca6ef --- /dev/null +++ b/quicknes/extern/hqn/hqn.h @@ -0,0 +1,188 @@ +#ifndef __HQN_H__ +#define __HQN_H__ + +#include +#include +#include + +#define BLIT_SIZE 65536 + +// Creating emulator instance + +namespace hqn +{ + +typedef const char *error_t; + +class HQNState; + +class HQNListener +{ +public: + HQNListener() = default; + virtual ~HQNListener() = default; + + virtual void onLoadROM(HQNState *state, const char *filename) = 0; + virtual void onAdvanceFrame(HQNState *state) = 0; + virtual void onLoadState(HQNState *state) = 0; +}; + +/* +State which is maintained by the emulator driver. + +This should normally be obtained using hqn_get_state() if you are in a lua +function. +*/ +class HQNState +{ +public: + + /* A reference to the emulator instance. */ + emulator_t *m_emu; + + static const int32_t *NES_VIDEO_PALETTE; + + /** + * Constructor. + */ + HQNState(); + ~HQNState(); + + void setEmulatorPointer(void* const emuPtr) { m_emu = (emulator_t*)emuPtr; } + + /* + The joypad data for the two joypads available to an NES. + This is directly available because I'm lazy. + */ + uint32_t joypad[2]; + + /* Get the emulator this state uses. */ + inline emulator_t *emu() const + { return m_emu; } + + + /* + Advance the emulator by one frame. If sleep is true and there is a frame + limit set advanceFrame() will sleep in order to limit the framerate. + Returns NULL or error string. + */ + error_t advanceFrame(bool sleep=true); + + /* + Save the game state. This can be restored at any time. + */ + error_t saveState(void *dest, size_t size, size_t *size_out); + + /* + Get the size (bytes) of a savestate. + Use this to allocate enough space for the saveState method. + */ + error_t saveStateSize(size_t *size) const; + + /* + Load the emulator state from data. + This should be data produced by saveState(). + */ + error_t loadState(const char *data, size_t size); + + + error_t setSampleRate(int rate); + + /** + * Set a limit to the framerate. + * 0 means no limit. + */ + void setFramerate(int fps); + + /** + * Get the current framerate limit. + */ + int getFramerate() const; + + /** + * Get the calculated frames per second. + */ + double getFPS() const; + + inline HQNListener *getListener() const + { return m_listener; } + + inline void setListener(HQNListener *l) + { m_listener = l; } + + /** + * Get the state of the keyboard. Use this to update the keyboard state. + */ + inline uint8_t *getKeyboard() + { return m_keyboard; } + +private: + /* ROM file stored in memory because reasons */ + uint8_t *m_romData; + size_t m_romSize; + /* Minimum milliseconds between each frame. */ + uint32_t m_msPerFrame; + /* time value of previous frame. */ + uint32_t m_prevFrame; + /* The listener */ + HQNListener *m_listener; + /* Keyboard state */ + uint8_t m_keyboard[256]; + /* Number of frames we've processed */ + uint32_t m_frames; + /* How long it took to process the previous frame */ + uint32_t m_frameTime; + uint32_t m_initialFrame; +}; + +/* +Print the usage message. +@param filename used to specify the name of the exe file, may be NULL. +*/ +void printUsage(const char *filename); + +} // end namespace hqn + +// Copied from bizinterface.cpp in BizHawk/quicknes +inline void saveBlit(const void *ePtr, int32_t *dest, const int32_t *colors, int cropleft, int croptop, int cropright, int cropbottom) +{ + // what is the point of the 256 color bitmap and the dynamic color allocation to it? + // why not just render directly to a 512 color bitmap with static palette positions? +// emulator_t *e = m_emu; // e was a parameter but since this is now part of a class, it's just in here +// const int srcpitch = e->frame().pitch; +// const unsigned char *src = e->frame().pixels; +// const unsigned char *const srcend = src + (e->image_height - cropbottom) * srcpitch; +// +// const short *lut = e->frame().palette; +// +// const int rowlen = 256 - cropleft - cropright; +// +// src += cropleft; +// src += croptop * srcpitch; +// +// for (; src < srcend; src += srcpitch) +// { +// for (int i = 0; i < rowlen; i++) +// { +// *dest++ = colors[lut[src[i]]]; +// } +// } + + const emulator_t *e = (emulator_t*) ePtr; + const unsigned char *in_pixels = e->frame().pixels; + if (in_pixels == NULL) return; + int32_t *out_pixels = dest; + + for (unsigned h = 0; h < emulator_t::image_height; h++, in_pixels += e->frame().pitch, out_pixels += emulator_t::image_width) + for (unsigned w = 0; w < emulator_t::image_width; w++) + { + unsigned col = e->frame().palette[in_pixels[w]]; + const emulator_t::rgb_t& rgb = e->nes_colors[col]; + unsigned r = rgb.red; + unsigned g = rgb.green; + unsigned b = rgb.blue; + out_pixels[w] = (r << 16) | (g << 8) | (b << 0); + } +} + +#endif /* __HQN_H__ */ diff --git a/quicknes/extern/hqn/hqn_gui_controller.cpp b/quicknes/extern/hqn/hqn_gui_controller.cpp new file mode 100644 index 00000000000..d323d624dc0 --- /dev/null +++ b/quicknes/extern/hqn/hqn_gui_controller.cpp @@ -0,0 +1,334 @@ +#include "hqn_gui_controller.h" +#include +#include +#include + +#define DEFAULT_WIDTH 256 +#define DEFAULT_HEIGHT 240 + +namespace hqn +{ + +const char *DEFAULT_WINDOW_TITLE = "HeadlessQuickNES"; + + +const SDL_Rect NES_BLIT_RECT = { 0, 0, DEFAULT_WIDTH, DEFAULT_HEIGHT }; + +// Determine the letterboxing required to display something on screen. +// The original code is basically magic. +// aspectW/H and windowW/H are the aspect ratio and window size, they are +// inputs. The view* parameters are the outputs and correspond to the +// calculated area in the window where the view should be. +void determineLetterbox(double aspectW, double aspectH, double windowW, + double windowH, int &viewX, int &viewY, int &viewW, int &viewH) +{ + double scale = std::min(windowW / aspectW, windowH / aspectH); + viewW = (int)(aspectW * scale); + viewH = (int)(aspectH * scale); + viewX = (int)(windowW - viewW) / 2; + viewY = (int)(windowH - viewH) / 2; +} + +/* +-- Returns: scale, scissorX, scissorY, scissorW, scissorH, offsetX, offsetY +function xl.calculateViewport(sizes, winW, winH, scaleInterval, screenFlex ) + local gameW,gameH = sizes.w, sizes.h + local screenW,screenH = winW + screenFlex, winH + screenFlex + local scale = math.min(screenW / gameW, screenH / gameH) + scale = math.floor(scale * scaleInterval) / scaleInterval + local scissorW, scissorH = gameW * scale, gameH * scale + local scissorX, scissorY = (winW - scissorW) / 2, (winH - scissorH) / 2 + local offsetX, offsetY = scissorX / scale, scissorY / scale + return scale, scissorX, scissorY, scissorW, scissorH, offsetX, offsetY +end +*/ + +GUIController::GUIController(HQNState &state) +:m_state(state) +{ + m_tex = nullptr; + m_texOverlay = nullptr; + m_renderer = nullptr; + m_window = nullptr; + m_overlay = nullptr; + m_closeOp = CLOSE_QUIT; + m_isFullscreen = false; +} + +GUIController::~GUIController() +{ + if (m_tex) + SDL_DestroyTexture(m_tex); + if (m_texOverlay) + SDL_DestroyTexture(m_texOverlay); + if (m_renderer) + SDL_DestroyRenderer(m_renderer); + if (m_window) + SDL_DestroyWindow(m_window); + m_state.setListener(nullptr); +} + +GUIController *GUIController::create(HQNState &state, SDL_Window* window) +{ + GUIController *self = new GUIController(state); + if (!self->init(window)) + { + delete self; + return nullptr; + } + else + { + return self; + } +} + +bool GUIController::init(SDL_Window* window) +{ + m_window = window; + if (!(m_renderer = SDL_CreateRenderer(m_window, -1, SDL_RENDERER_ACCELERATED))) + return false; + if (!(m_tex = SDL_CreateTexture(m_renderer, SDL_PIXELFORMAT_ARGB8888, + SDL_TEXTUREACCESS_STREAMING, 256, 256))) + return false; + // Set the clear color now rather than later + SDL_SetRenderDrawColor(m_renderer, 0, 0, 0, 255); + // Default the scale to 1 + if (!setScale(1)) + return false; + return true; +} + +bool GUIController::setScale(int scale) +{ + if (scale < 1 || scale > 5) + return false; + if (m_isFullscreen) + setFullscreen(false, false); // reset to windowed and don't bother changing the overlay + int winW = DEFAULT_WIDTH * scale; + int winH = DEFAULT_HEIGHT * scale; + + // Change the window size + SDL_SetWindowSize(m_window, winW, winH); + + if (!onResize(winW, winH, true)) + return false; + + // update the overlay destination + m_overlayDest = { 0, 0, winW, winH }; + m_nesDest = { 0, 0, winW, winH }; + + // Update internal scale variable + m_scale = scale; + return true; +} + +int GUIController::getScale() const +{ return m_scale; } + +void GUIController::setFullscreen(bool full, bool adjustOverlay) +{ + m_isFullscreen = full; + SDL_SetWindowFullscreen(m_window, full ? SDL_WINDOW_FULLSCREEN_DESKTOP : 0); + int w, h; + SDL_GetWindowSize(m_window, &w, &h); + onResize((size_t)w, (size_t)h, adjustOverlay); +} + +bool GUIController::isFullscreen() const +{ + return m_isFullscreen; +} + +bool GUIController::onResize(size_t w, size_t h, bool adjustOverlay) +{ + // first calculate letterboxing + int viewX, viewY, viewW, viewH; + determineLetterbox(DEFAULT_WIDTH, DEFAULT_HEIGHT, w, h, + viewX, viewY, viewW, viewH); + // make sure images are put in the right places + m_overlayDest = { viewX, viewY, viewW, viewH }; + m_nesDest = { viewX, viewY, viewW, viewH }; + if (adjustOverlay && !resizeOverlay(viewW, viewH)) + return false; + return true; +} + +bool GUIController::resizeOverlay(size_t w, size_t h) +{ + + + // destroy the overlay and corresponding texture + if (m_overlay) + { + // first check if the overlay is already the correct size + if (m_overlay->getWidth() == (int)w + && m_overlay->getHeight() == (int)h) + return true; + else + delete m_overlay; + } + if (m_texOverlay) + SDL_DestroyTexture(m_texOverlay); + // Now re-create them + m_overlay = new Surface(w, h); + if (!(m_texOverlay = SDL_CreateTexture(m_renderer, SDL_PIXELFORMAT_ARGB8888, + SDL_TEXTUREACCESS_STREAMING, w, h))) + return false; + SDL_SetTextureBlendMode(m_texOverlay, SDL_BLENDMODE_BLEND); + return true; +} + +void GUIController::update(bool readNES) +{ + void *nesPixels = nullptr; + int pitch = 0; + + if (SDL_LockTexture(m_tex, nullptr, &nesPixels, &pitch) < 0) return; + + SDL_UnlockTexture(m_tex); + + // render to screen + SDL_RenderClear(m_renderer); + SDL_RenderCopy(m_renderer, m_tex, &NES_BLIT_RECT, &m_nesDest); + SDL_RenderPresent(m_renderer); + // Process any outstanding events + processEvents(); +} + +void GUIController::update_blit(const int32_t* blit, SDL_Surface* base, SDL_Surface* button_a, SDL_Surface* button_b, SDL_Surface* button_select, SDL_Surface* button_start, SDL_Surface* button_up, SDL_Surface* button_down, SDL_Surface* button_left, SDL_Surface* button_right) +{ + void *nesPixels = nullptr; + int pitch = 0; + + if (SDL_LockTexture(m_tex, nullptr, &nesPixels, &pitch) < 0) return; + + memcpy(nesPixels, blit, sizeof(int32_t) * BLIT_SIZE); + SDL_UnlockTexture(m_tex); + + const SDL_Rect OVERLAY_BLIT_RECT_SRC = { 0, 0, 169, 53 }; + const SDL_Rect OVERLAY_BLIT_RECT_DST = { 343, 425, 169, 53 }; + + // render to screen + SDL_RenderClear(m_renderer); + SDL_RenderCopy(m_renderer, m_tex, &NES_BLIT_RECT, &m_nesDest); + + if (base != NULL) + { + auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, base); + SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); + SDL_DestroyTexture(overlayTex); + } + + if (button_a != NULL) + { + auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_a); + SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); + SDL_DestroyTexture(overlayTex); + } + + if (button_b != NULL) + { + auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_b); + SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); + SDL_DestroyTexture(overlayTex); + } + + if (button_select != NULL) + { + auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_select); + SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); + SDL_DestroyTexture(overlayTex); + } + + if (button_start != NULL) + { + auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_start); + SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); + SDL_DestroyTexture(overlayTex); + } + + if (button_up != NULL) + { + auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_up); + SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); + SDL_DestroyTexture(overlayTex); + } + + if (button_down != NULL) + { + auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_down); + SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); + SDL_DestroyTexture(overlayTex); + } + + if (button_left != NULL) + { + auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_left); + SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); + SDL_DestroyTexture(overlayTex); + } + + if (button_right != NULL) + { + auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_right); + SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); + SDL_DestroyTexture(overlayTex); + } + + SDL_RenderPresent(m_renderer); + + // Process any outstanding events + processEvents(); +} + +void GUIController::onAdvanceFrame(HQNState *state) +{ + update(true); +} + +void GUIController::setTitle(const char *title) +{ + SDL_SetWindowTitle(m_window, title); +} + +void GUIController::setCloseOperation(CloseOperation closeop) +{ + m_closeOp = closeop; +} + +GUIController::CloseOperation GUIController::getCloseOperation() const +{ + return m_closeOp; +} + +void GUIController::processEvents() +{ + bool quit = false; + SDL_Event event; + while (SDL_PollEvent(&event)) + { + switch(event.type) + { + case SDL_QUIT: + quit = true; + break; + } + } + if (quit) + { + if (m_closeOp & CLOSE_QUIT) + { + exit(0); + } + if (m_closeOp & CLOSE_DELETE) + { + m_state.setListener(nullptr); + delete this; + } + } +} + +void GUIController::onLoadROM(HQNState *state, const char *filename) {} // unimportant +void GUIController::onLoadState(HQNState *state) {} // also unimportant + +} diff --git a/quicknes/extern/hqn/hqn_gui_controller.h b/quicknes/extern/hqn/hqn_gui_controller.h new file mode 100644 index 00000000000..e312bc826a3 --- /dev/null +++ b/quicknes/extern/hqn/hqn_gui_controller.h @@ -0,0 +1,160 @@ +#ifndef __HQN_GUI_CONTROLLER__ +#define __HQN_GUI_CONTROLLER__ + +#include "hqn.h" +#include "hqn_surface.h" +#include +#include +#include + +namespace hqn +{ + + extern const char *DEFAULT_WINDOW_TITLE; + +class GUIController : public HQNListener +{ +public: + + enum CloseOperation + { + // Do nothing when the window is closed + CLOSE_NONE = 0, + // Quit the program when the gui is closed + CLOSE_QUIT = (1 << 0), + // Call delete on the GUIController when the gui is closed. Also set + // the correlated state's listener to null. + CLOSE_DELETE = (1 << 1), + }; + + virtual ~GUIController(); + + /** + * Create a new GUI controller. Returns a GUI Controller or nullptr + * if an error occured during initialization. + */ + static GUIController *create(HQNState &state, SDL_Window* window); + + /** + * Set the window title. + */ + void setTitle(const char *title); + + /** Set the size of the window. */ + void setSize(size_t width, size_t height); + + void setPosition(size_t x, size_t y); + + /** Get the window width. */ + size_t getWidth() const; + + /** Get the window height. */ + size_t getHeight() const; + + /** + * Set if the window is fullscreen or not. This will do letterboxing + * to maintain the correct aspect ratio. + * + * If adjust overlay is true it will change the size of the overlay to + * match the new screen size, otherwise the overlay will stay the same. + */ + void setFullscreen(bool full, bool adjustOverlay); + + /** + * Return true if the window is fullscreen. + */ + bool isFullscreen() const; + + /** Get the pointer to the window. Use this to change settings. */ + SDL_Window *ptr(); + + /** + * Set the gui scale. Can be 1 - 5. + * Returns true if it succeeds, false otherwise. + */ + bool setScale(int scale); + + int getScale() const; + + /** + * Redraw the screen and process window events without updating the + * emulator. This can be used when drawing on the overlay. + * + * @param readNES should update() also redraw the nes screen (true) or + * trust that it didn't change (false). + */ + void update(bool readNES); + + /** + * Reference to the drawing surface. Use this to draw things on + * top of the NES display. + */ + inline Surface &getOverlay() + { return *m_overlay; } + + /** + * Set what happens when the window is closed. + * This should be a bitwise-or of values from CloseOperation. + * The default is CLOSEOP_QUIT. + */ + void setCloseOperation(CloseOperation ops); + CloseOperation getCloseOperation() const; + void update_blit(const int32_t* blit, SDL_Surface* base, SDL_Surface* button_a, SDL_Surface* button_b, SDL_Surface* button_select, SDL_Surface* button_start, SDL_Surface* button_up, SDL_Surface* button_down, SDL_Surface* button_left, SDL_Surface* button_right); + + // Methods overriden from superclass. + virtual void onLoadROM(HQNState *state, const char *filename); + virtual void onAdvanceFrame(HQNState *state); + virtual void onLoadState(HQNState *state); + +protected: + GUIController(HQNState &state); + + /** + * Called in create(). If this fails the GUI cannot be created. + */ + bool init(SDL_Window* window); + +private: + /** + * Process SDL events. Will exit the program (by calling endItAll()) + * if an SDL_QUIT message is recived. + */ + void processEvents(); + + /** Resize the internal overlay. */ + bool resizeOverlay(size_t w, size_t h); + + /** Who you gonna call? onResize! Returns false if resizeOverlay fails. */ + bool onResize(size_t w, size_t h, bool adjustOverlay); + + // Pointer to the state we're listening to + HQNState &m_state; + // Window pointer + SDL_Window *m_window; + // Renderer + SDL_Renderer *m_renderer; + // Pixel buffer + int32_t m_pixels[256 * 240]; + // SDL Textures + SDL_Texture *m_tex; + // Overlay texture + SDL_Texture *m_texOverlay; + // Destination rect for the texture + SDL_Rect m_nesDest; + // Destination rect for the overlay + SDL_Rect m_overlayDest; + // Overlay surface which will be drawn on top of the NES display + Surface *m_overlay; + // Current scale. Can be 1, 2, 3, 4, 5 + int m_scale; + // Should the emulator quit + bool m_quit; + // Are we currently fullscreen? + bool m_isFullscreen; + // What happens when the X button is pressed? + CloseOperation m_closeOp; +}; + +} + +#endif //__HQN_GUI_CONTROLLER__ diff --git a/quicknes/extern/hqn/hqn_surface.cpp b/quicknes/extern/hqn/hqn_surface.cpp new file mode 100644 index 00000000000..22c413dc870 --- /dev/null +++ b/quicknes/extern/hqn/hqn_surface.cpp @@ -0,0 +1,302 @@ +#include +#include +#include +#include +#include +#include "hqn_surface.h" +#include + +namespace hqn +{ + +// basically inlined functions for bounds checking +// Note that when #include'in windows.h you need to #define NOMINMAX becase +// windows.h breaks std::min and std::max by #defining min and max. ugh +#define boundLeft(x) std::max((int)(x), 0) +#define boundRight(x) std::min((int)(x), (int)m_width - 1) +#define boundTop(y) std::max((int)(y), 0) +#define boundBottom(y) std::min((int)(y), (int)m_height - 1) + +// const float pi = 3.14159265359; +const float pi = 3.14159265359f; + +// Color masks for building the SDL_Surface. +// They're constant because why not? +const Color MASK_R { 0xff, 0, 0, 0 }; +const Color MASK_G { 0, 0xff, 0, 0 }; +const Color MASK_B { 0, 0, 0xff, 0 }; +const Color MASK_A { 0, 0, 0, 0xff }; + + +// Copied from http://forum.devmaster.net/t/fast-and-accurate-sine-cosine/9648 +float fastSin(float x) +{ + const float B = 4/pi; + const float C = -4/(pi*pi); + + float y = B * x + C * x * abs(x); + + // const float Q = 0.775; + const float P = 0.225f; + + y = P * (y * abs(y) - y) + y; // Q * y + P * y * abs(y) + return y; +} + +float fastCos(float x) +{ + return fastSin(x - pi / 2); +} + +Surface::Surface(size_t w, size_t h) +{ + m_pixels = new Color[w * h]; + // initialize all pixels to transparent black + memset(m_pixels, 0, sizeof(Color) * w * h); + // set default colors + m_width = (int)w; + m_height = (int)h; + setBlendMode(HQN_BLENDMODE_BLEND); + + // Create an SDL Surface we can blit to + m_surface = SDL_CreateRGBSurfaceFrom(m_pixels, w, h, 32, w * sizeof(Color), + MASK_R.bits, MASK_G.bits, MASK_B.bits, MASK_A.bits); +} + +Surface::~Surface() +{ + SDL_FreeSurface(m_surface); + m_surface = nullptr; + delete[] m_pixels; +} + +void Surface::drawRect(int x, int y, size_t w, size_t h, Color color) +{ + int x2 = x + w; + int y2 = y + h; + + int x1Bound = boundLeft(x); + int y1Bound = boundTop(y) + 1; + int x2Bound = boundRight(x2) - 1; + int y2Bound = boundBottom(y2); + // draw vertical lines + if (x >= 0) + { + for (int yy = y1Bound; yy < y2Bound; yy++) + rawset(x, yy, color); + } + if (x2 < (int)m_width) + for (int yy = y1Bound; yy < y2Bound; yy++) + rawset(x2, yy, color); + // draw horizontal lines + if (y >= 0) + for (int xx = x1Bound; xx < x2Bound; xx++) + rawset(xx, y, color); + if (y2 < (int)m_height) + for (int xx = x1Bound; xx < x2Bound; xx++) + rawset(xx, y2, color); +} + +void Surface::fillRect(int x, int y, size_t w, size_t h, Color fg, Color bg) +{ + // draw the outline + drawRect(x, y, w, h, fg); + // now fill in the middle + int x2 = boundRight(x + w - 1); + int y2 = boundBottom(y + h - 1); + + x = boundLeft(x); + y = boundTop(y); + for (int yy = y + 1; yy < y2; yy++) + for (int xx = x + 1; xx < x2; xx++) + rawset(xx, yy, bg); +} + + +#define SWAP(a, b, temp) temp = a; a = b; b = temp +void Surface::fastLine(int x1, int y1, int x2, int y2, Color color) +{ + int temp; + // Make sure x1 <= x2 + if (x1 > x2) + { + SWAP(x1, x2, temp); + SWAP(y1, y2, temp); + } + // If any of the points are outside the surface then don't draw + if (x1 < 0 || y1 < 0 || y1 >= m_height + || x2 >= m_width || y2 < 0 || y2 >= m_height) + return; + + // special case + if (x1 == x2) + { + // safety checks + if (y1 > y2) + { + SWAP(y1, y2, temp); + } + for (int y = y1; y <= y2; y++) + rawset(x1, y, color); + // that's all folks + } + else + { + const int deltaX = x2 - x1; + const int deltaY = y2 - y1; + // absolute value of the slope of the line + const float deltaErr = std::abs((float)deltaY / deltaX); + // calculate the sign of delta Y + const int signDY = deltaY ? deltaY / abs(deltaY) : 0; + float error = 0; + int y = y1; + for (int x = x1; x < x2; x++) + { + rawset(x, y, color); + error += deltaErr; + while (error >= 0.5) + { + rawset(x, y, color); + y += signDY; + error -= 1.0f; + } + } + } +} + +void Surface::clear(Color color) { + int dataSize = m_width * m_height; + for (int i = 0; i < dataSize; i++) + { + m_pixels[i] = color; + } +} + +void Surface::safeLine(int x1, int y1, int x2, int y2, Color color) +{ + // can be used a lot + int temp; + // Make sure x1 <= x2 + if (x1 > x2) + { + SWAP(x1, x2, temp); + SWAP(y1, y2, temp); + } + // Special case + if (x1 == x2) + { + if (y1 > y2) + { + SWAP(y1, y2, temp); + } + int y1Bound = boundTop(y1); + int y2Bound = boundBottom(y2); + for (int y = y1Bound; y < y2Bound; y++) + rawset(x1, y, color); + // that's all folks + } + else + { + // Prep the variables + // Remember y = mx + b + const int deltaX = x2 - x1; + const int deltaY = y2 - y1; + const float slope = (float)deltaY / deltaX; + const float deltaErr = std::abs(slope); + const int signDY = deltaY ? deltaY / std::abs(deltaY) : 0; + + // Ensure the line is inside the bounds + if (x1 < 0 || y1 < 0 || y2 < 0) + { + } + float error = 0; + int y = y1; + for (int x = x1; x < x2; x++) + { + rawset(x, y, color); + error += deltaErr; + while (error >= 0.5) + { + // safe setPixel instead of rawset + setPixel(x, y, color); + y += signDY; + error -= 1.0f; + } + } + } +} + +void Surface::setPixel(int x, int y, Color color) +{ + if (x < 0 || y < 0 || x >= (int)m_width || y >= (int)m_height) + { + return; + } + else + { + rawset(x, y, color); + } +} + +void Surface::setBlendMode(BlendMode mode) +{ + switch(mode) + { + case HQN_BLENDMODE_NONE: + m_blendFunc = &blendNone; + break; + case HQN_BLENDMODE_BLEND: + m_blendFunc = &blendBlend; + break; + case HQN_BLENDMODE_ADD: + m_blendFunc = &blendAdd; + break; + case HQN_BLENDMODE_MOD: + m_blendFunc = &blendMod; + break; + default: + // skip setting m_blend + return; + } + m_blend = mode; +} + +BlendMode Surface::getBlendMode() const +{ + return m_blend; +} + + +#define BYTE(exp) (uint8_t)((exp) / 255) +Color Surface::blendBlend(Color src, Color dst) +{ + const uint8_t invA = 255 - src.a; + dst.r = BYTE(src.r * src.a + dst.r * invA); + dst.g = BYTE(src.g * src.a + dst.g * invA); + dst.b = BYTE(src.b * src.a + dst.b * invA); + dst.a = (uint8_t)(src.a + (dst.a * invA)); + return dst; +} + +Color Surface::blendNone(Color src, Color dst) +{ + return src; +} + +Color Surface::blendAdd(Color src, Color dst) +{ + dst.r = BYTE(src.r * src.a + dst.r); + dst.g = BYTE(src.g * src.a + dst.g); + dst.b = BYTE(src.g * src.a + dst.b); + return dst; +} + +Color Surface::blendMod(Color src, Color dst) +{ + dst.r = BYTE(src.r * dst.r); + dst.g = BYTE(src.g * dst.g); + dst.b = BYTE(src.b * dst.b); + return dst; +} + +} diff --git a/quicknes/extern/hqn/hqn_surface.h b/quicknes/extern/hqn/hqn_surface.h new file mode 100644 index 00000000000..5e995839069 --- /dev/null +++ b/quicknes/extern/hqn/hqn_surface.h @@ -0,0 +1,129 @@ +#ifndef __HQN_SURFACE_H__ +#define __HQN_SURFACE_H__ + +#include +#include "hqn.h" +#include + +namespace hqn +{ + +extern const float pi; + +float fastSin(float x); +float fastCos(float x); + +struct Color +{ + union + { + struct { uint8_t r, g, b, a; }; + uint32_t bits; + }; +}; + +enum BlendMode +{ + HQN_BLENDMODE_NONE, + HQN_BLENDMODE_BLEND, + HQN_BLENDMODE_ADD, + HQN_BLENDMODE_MOD, +}; + +/** + * A surface which provides drawing operations. + * The format is always RGBA. + */ +class Surface +{ +public: + #define HQN_DEFAULT_PTSIZE 12 + + typedef Color (*BlendFunction)(Color src, Color dst); + + Surface(size_t width, size_t height); + ~Surface(); + + inline int getWidth() const + { return m_width; } + inline int getHeight() const + { return m_height; } + + void drawRect(int x, int y, size_t w, size_t h, Color color); + void fillRect(int x, int y, size_t w, size_t h, Color fg, Color bg); + + void drawCircle(int x, int y, size_t radius, Color color); + void fillCircle(int x, int y, size_t radius, Color fg, Color bg); + + void drawOval(int x, int y, size_t w, size_t h, Color color); + void fillOval(int x, int y, size_t w, size_t h, Color fg, Color bg); + + /** + * Draw a line. If the line goes outside the edges of the screen it will + * not be drawn. + */ + void fastLine(int x1, int y1, int x2, int y2, Color color); + + /** + * Slower than fastLine but will still draw lines which are partially + * offscreen. Note that safeLine is likely significantly slower than + * fastLine because it checks if each pixel is in bounds. + */ + void safeLine(int x1, int y1, int x2, int y2, Color color); + + + /** + * Set all pixels in the surface to the given color. + */ + void clear(Color color); + + void setPixel(int x, int y, Color color); + int32_t getPixel(int x, int y); + + /** + * Get a reference to the pixels. + */ + inline Color *getPixels() const + { return m_pixels; } + + inline size_t getDataSize() const + { return m_width * m_height * 4; } + + void setBlendMode(BlendMode mode); + BlendMode getBlendMode() const; + +private: + + ////////////////// + // Private Data // + ////////////////// + + // RGBA formatted pixels + Color *m_pixels; + SDL_Surface *m_surface; + int m_width; + int m_height; + BlendMode m_blend; + BlendFunction m_blendFunc; + + // Set the pixel directly. Performs blending. + // Inlined because it's small and more efficient to inline it. + inline void rawset(int x, int y, Color src) + { + // Yay for no branching + Color *destPtr = &m_pixels[x + y * m_width]; + *destPtr = m_blendFunc(src, *destPtr); + } + + void line(int x1, int y1, int x2, int y2, Color color); + + // Blend functions + static Color blendNone(Color, Color); + static Color blendBlend(Color, Color); + static Color blendAdd(Color, Color); + static Color blendMod(Color, Color); +}; + +} + +#endif diff --git a/quicknes/extern/hqn/meson.build b/quicknes/extern/hqn/meson.build new file mode 100644 index 00000000000..f1b730b5c3c --- /dev/null +++ b/quicknes/extern/hqn/meson.build @@ -0,0 +1,16 @@ +project('hqn','c','cpp', + version: '1.0.0', + license: 'GPL-3.0-only', + default_options : ['cpp_std=c++20', 'default_library=shared', 'buildtype=release'] +) + +hqnSrc = [ + 'hqn.cpp', + 'hqn_gui_controller.cpp', + 'hqn_surface.cpp', +] + +hqnDependency = declare_dependency( + sources : hqnSrc, + include_directories : '.' + ) \ No newline at end of file diff --git a/quicknes/meson.build b/quicknes/meson.build new file mode 100644 index 00000000000..dbb9e59c8c0 --- /dev/null +++ b/quicknes/meson.build @@ -0,0 +1,60 @@ +project('quickerNES','c','cpp', + version: '1.0.0', + license: 'GPL-3.0-only', + default_options : ['cpp_std=c++20', 'default_library=shared', 'buildtype=release'], + subproject_dir : 'extern' +) + +# Loading dependencies +subdir('source') + +# Grabbing hqn dependency + +hqnSubproject = subproject('hqn') +hqnDependency = hqnSubproject.get_variable('hqnDependency') + +# Do not build any targets if this is a subproject +if meson.is_subproject() == false + +# Common application flags +commonCompileArgs = [ '-Wfatal-errors', '-Wall'] + +# Grabbing jaffarCommon dependency + +jaffarCommonSubproject = subproject('jaffarCommon') +jaffarCommonDependency = jaffarCommonSubproject.get_variable('jaffarCommonDependency') + +# Building playback tool + if get_option('buildPlayer') == true + executable('player', + 'source/player.cpp', + cpp_args : [ commonCompileArgs, '-DNCURSES' ], + dependencies : [ jaffarCommonDependency, quickerNESDependency, toolDependency, dependency('sdl2'), dependency('SDL2_image'), hqnDependency ], + link_args : [ '-lncurses' ] + ) + endif + + # Building tester tool for QuickerNES + + quickerNESTester = executable('quickerNESTester', + 'source/tester.cpp', + cpp_args : [ commonCompileArgs, '-Werror' ], + dependencies : [ jaffarCommonDependency, quickerNESDependency, toolDependency ] + ) + + # Building tester tool for the original QuickNES + + if get_option('buildQuickNES') == true + quickNESTester = executable('quickNESTester', + 'source/tester.cpp', + cpp_args : [ commonCompileArgs, '-w', '-DDISABLE_AUTO_FILE', '-D__LIBRETRO__', '-DNDEBUG', '-DBLARGG_NONPORTABLE' ], + dependencies : [ jaffarCommonDependency, quickNESDependency, toolDependency ] + ) + endif + + # Building tests + if get_option('buildQuickNES') == true + subdir('tests') + endif + +endif # If not subproject \ No newline at end of file diff --git a/quicknes/meson_options.txt b/quicknes/meson_options.txt new file mode 100644 index 00000000000..a519dca1090 --- /dev/null +++ b/quicknes/meson_options.txt @@ -0,0 +1,34 @@ +option('buildPlayer', + type : 'boolean', + value : false, + description : 'Build playback tool', + yield: true +) + +option('buildQuickNES', + type : 'boolean', + value : true, + description : 'Build quickNES core', + yield: true +) + +option('buildTests', + type : 'boolean', + value : true, + description : 'Build tests', + yield: true +) + +option('onlyOpenSource', + type : 'boolean', + value : false, + description : 'Test using only open source games (for cloud CI)', + yield: true +) + +option('enableArkanoidInputs', + type : 'boolean', + value : false, + description : 'Build tests', + yield: true +) \ No newline at end of file diff --git a/quicknes/overlay/base.png b/quicknes/overlay/base.png new file mode 100644 index 0000000000000000000000000000000000000000..fcc3a51915f53d53904f16dea4ef0566d5712346 GIT binary patch literal 3811 zcmV<94jl1`P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGmbN~PnbOGLGA9w%&4tPmKK~#8N?VWj0 zQ`a8He}r8`Q5GL4_^PZcFDQyMsMAbXUNX>JM%3aGrioCJ|l{j^wCXH=v|j~-=@GBVB0 z#~*)8r%s)cUZksbWl+VvI(k%J$7{r)aQCDRzHKRa{77CS)7o*ENEff)LI;l>A@b?K zYeZ60K?#GOr3Euy;uSKj9b+PuBn4HY%qE|rYZMjMg(8Ck#FfwxY8Tprl=-=|a@#I` zCg<%Ka**0B(bDW|GkiKnjG1k*N9{L`D^q?ZYDiDIGz^Hn#OA#$A%3X zXv&l+77hlk?zy3-tE-v)TFTc?2*|SNdQc-epGQISYc&oo>&mMAhb*1N? zdydx-rKYCR{rmUnz4zW@uhY}h*`to`-MdqCbTrl0*3y9k2k6e7JFITluwlH%KO2Wx z(w4&a-+xcHZr$Rqj8j!r#RQs`mPY&c@24Y2j*yp^7rSt+5h#Gbzx?t`I(+yruOV`G zcV}aO>({T-x8HtCw{PEOVyvvJq^ztg*7okZ@6x49mnbMGh`kS8eQTsuuQ)*jxN0F1 z9l5!=Oh^#S<;$1p{Q2|LzI}W4TnFm1v$LtXx|-Jz?c2AHiSFvvtF&|HPF_nicI;SM zw{9JO)dVcGKCsZR*0W~KqBq}slaxv&yO=)s-~*aCaUv~Ux|I6&@6UU;K3c6vA&gHy z{gjR!JH{*|Ear_HH)#9z?bOiFK+BgeX9ex&&Yh!Gt5z|g4jD3pP0<+{88mtFWGXBy zWaooBuyW-}CbShRR;v;^HVLCx`V1 zWo2b-YS#DZ;qp(LHjUPFLQ|HGwPvf}XBjyRzeep(TY64B>3vyqVnG+*lnfHvHn}pMRdd z{`za$y?ZySmjbvSXV0FcnwlCm=KJrz&s(GeuGH$)tDkUnY@yYPbl$vqq);d*DJh8t z3~0(~7z0zaPB@s-Uw{2|HXXw{A_~{X+%%519Syt`X z$9viaf)HJv)5ph$N=iydtyZ(32I(C`>!)uyAsh%56c-m$aBwh<88e1iMpz4d%!w2q zSWHX|vznGbno9rN5D;7dM*yE1fg%1cQUV`;#*7)%yLWH9r~D=pVT9B@2S|PV(BlPv zON8-9Yw^E-k17jt=%g8)`}_IP-HI{_2ne!i33ck!sq7I`Xh1*!dmbMjPvggrXU|cu zvtkgWzO~Z{6ky{GrY~5TN=>D?T#AP}^UnKNfH3vMW8jIRShTvSvPEnK*e^}~gM z_xkzgpYtBlfOH&u#tRoN(5tV$YSfC`3Iffdq9XQpyzs+E0C>-^aP8W)<2BL%7Y9}jZVoOs1d9kDF|$YkL|Ix|%F<~7!5`d;!Gj00*XFQl z?SApvO>{6jk0QH--n4M0<5#Bs=|H5g=sF7y_W}zH5Qr2^nl$N&3k#VMWJN4t+ltephx~~+AkeI= ztgxX&hnB5hzy1~y(I{)zt}RBL;G}oS%gZa`-9^#(@UPZJMmp}^z00QjE?um$8zwn< z@+6y`kaE)%SZVmBn7M30(&!#jJS?aX^_G43;fEcCsp|3kDol?ds1vMc>45_Wx>Q$J zt9g@5GXq~2J}**ZnD!9_BGQ+FPd@nsvn7AkM4vu=C@d_@<^W1kk-`VX6rY@&e4kf6 z!JIjB8qi0nRN8h~$=J=NO`GV@p+jr~%ig_vNiZI~#eQ&JthyP3Kn)8PwqV&O4Gp2B z|3$e`Q6A{Fp2v4pI{ zkz?2vIJIz*ez$!Om23ap2+|Vq^Y)^Y7bfvn=D~-YpPx^iJ9p+a_JQahsU+;?(&5N4 z94^w#%*+d?PoI7|EiLV~;5@U`lOcjQZwdZS@H5Xmb1^P1t{1O1i!CBe-FuKK>KZ5~ z{~T#5q`m5!o4`)NG~&NeG-vdm`BYQjLq;%!{G=3M53awz{}Up0)ELG@DydJ3JSfsk zsi~J1SrVik!=#vO0f~C#L6K%!zI=J95I{Z9SyWh12sAr8 zJ7~m+5jO=Nq$@kf0j%7%lXA{qAvYn4tqbo*kv^{2j>KDA5-z0h_94w5xuhvpQDu*A zyxw}WTCIBDzI{O|m8zS5{#p=IM{Gw74GnD=J9ccbJ)euC#*kE`fG6sUkY+k@;)H%O zKNuDi0*#4@k;a)ZL3vd*X(}tp%d-vj@b#dim_EFvWwN!Vl8RL~_$%uvEG)b#ST!b` z*|TRW6A}^vy}i9Vp{=&Iw&eKntAfdnqednEbRE`#?J`V*;)bxcIEgjPvS1bYR2Jr~9oM!Xp&E*p&Oo-5l2jICd z`}GytD$pk*BO|P$qT)Jl7KNk7uqaYhO#^Ms%&}N9@|66DCVYK;!v+i(&>Imv3W6j< zGmm48oy)MO@99>(Z2z!YE0}&^-GpG)&E4JIof#?%UaFx+ zgWH$&aZxC!LqH(;1$U;&3ByEhEcxwZ`B%A)$igMY*Ob{W@(NwTAfIH_Kzh`?>6kq9kB5i zw=54GI@DxAJNlu&yI}DqOqjsWWSU;FaSk6t4BfkT_dsqMIZ9q-k*usN6^;oH4;O+B z%QVLrl8LnTcWLitbQB}|MN-^^$<#M4o;n7JbEDAjsiz}p-rTuQ+=60^gy^R!ZlWz? zM2H?k41s}x-LT4oBzi+bgT>oH1&dy_V#SIm93v*`2F)>s$qgoA(QOFm*|VqB8x9=x zg=LG@qzO^{MRKnwq29s=pA;i*gN(DXH8Yo#Dm9H7GL+^|HNP9maPvo1Rh0^>JV>G= zM~M^=YcK%f5stZEQ&SW8)?05~_w)1nH|oV~Fp+W$hi@>EaXzqsf@MeuX;^T$sell+~j^R{n2v&%YfJc7Q&CRU=5jFxCQ~seX`$_E?!`O6h zw@88R#MC>A*NDTXzLo|ijG+b7q)+63vEv|Rr>`TAhYzS;;fBAoMS}Ma8Y1IpNO%aP zOtH=(~!lXB7LyY$^urSK-IuM_@6>)w|$ z!M^Rp-IM%06qGzJf!CS_AF`uv?a<-KF&rjR8Rwx@-H0b6^LJoOq;d*M#_5qoD&zDR zo$lq|7M1zCz{V59-xkGPl=81M%f;ym(<9gBV@oRk-o1=7q5pgLk3}jYNn{1`ISV`@iy0V%N~n9IAd|DYRfopX?I*OW!B!ET6i!*2^Pf_VGfWhE3fw7$ZN=Geehai@R6tb?J(`Zn%BLt>$t>QNQ zS+`Y!-W*)K`J;s3I^OtVvjF!cKZL~=)Q7x3cNn{1`ISV`@iy0V%N$K&8ec4o|{>(_I`5MYnR=k{$^&1e=YiC7rfC*bGTNc_V)L` zYPOImW|otk{!31>Mm!{`%ATMGflSNo{_!g=59@;vv1X&No9Y_>pESVRHrP`9{Q%}z6qD!_aEjRCfobr zic}$rJc@Vs?>shZ?`)+@M;=)|FRUt^mi#(>iTw}Rke%I5c4h7RyX{MF`Bz^2uyyy1 zdsptLO?>wJ;?0UK4u9TwWx*B7m$*|Hf4P5^%l-3j#k~FM-vjqvQse)uxO&UUUg0N# onpn_T{?Ck|b37H-z23+0BJ8>1->cr2fN{y->FVdQ&MBb@00Xq+fB*mh literal 0 HcmV?d00001 diff --git a/quicknes/overlay/button_down.png b/quicknes/overlay/button_down.png new file mode 100644 index 0000000000000000000000000000000000000000..541fcfdea63f14cda649699f551c6bb770c709df GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^D}mUQgBc{U-dYt%F%}28J29*~C-V}>VM%xNb!1@J z*w6hZkrl{i3-AeX{m;MwWVVP~y#Z28B|(0{{~4ZcH}C@TI14-?iy0V%NVM%xNb!1@J z*w6hZkrl{i3-AeX{m;MwWVVP~y#Z28B|(0{{~4ZcH}C@TI14-?iy0V%N2R=QtON-ru7fEJV%4u{jYzVcG}{tB^1W) i`g$<)JQkSyjPYftQtPdiPq=~hFnGH9xvXVM%xNb!1@J z*w6hZkrl{i3-AeX{m;MwWVVP~y#Z28B|(0{{~4ZcH}C@TI14-?iy0V%NH!Sd4n%psOr3qJ-^FIXI!{F)a=d#Wzp$Pyif>%WV literal 0 HcmV?d00001 diff --git a/quicknes/overlay/button_select.png b/quicknes/overlay/button_select.png new file mode 100644 index 0000000000000000000000000000000000000000..9b93816e5cfd243d59cf9b03e3888fde25fa5f96 GIT binary patch literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^D}mUQgBc{U-dYt%F%}28J29*~C-V}>VM%xNb!1@J z*w6hZkrl{i3-AeX{m;MwWVVP~y#Z28B|(0{{~4ZcH}C@TI14-?iy0V%Ndwpq_*Is<^{**X<6&dNn{1`ISV`@iy0V%N4OZ_O85iL{~_r$5a!*pL!8EwyP=`)!`c-=0?IKbN+3RnPVd`sCs@ z&*P-9W~Gv<|B@%2Q*0(qQYS~yE~0EwYE@0t^5<_~-q!p4rSK@9T71lVkG)%~w~?j{E*xLjA?N{qZ_9|9>-Qh^1%e>}CE(_XSUVU@Q3w7<3Gtu6{1-oD!M< DVM%xNb!1@J z*w6hZkrl{i3-AeX{m;MwWVVP~y#Z28B|(0{{~4ZcH}C@TI14-?iy0V%NAvY&PiW)K9CML}1G0SB>My87-$K)b8&qq@4PZ@{6tj=rm^tM5hy#KmI; zmGJ;kPyx?X-YB}kb^4T1l9ycZz%cmpF91|Ve689V2Xc2T+ zqO4wcV9XaY`JzJ2;S<{>NFNe@AdSM3M#K(%5XMl@rsuOtLhTVdP{!kv83dV9qFB&| zJk|H?geev#ih8{<>k?!%Mm<3mG8XZLqyzJz2ER2%X~Ly&#NhW^T@fko2RTfZ!&!aV zAJ5oAkQ)kEEC?af#7tIY5!VsElnI9|reqRSb1vLk@uDR?sdE{vs6k4kd_jvnpthwg zF;CEE)f>!Sj>H|loX;N4E2T7y1POxT2$f2!A&87tR{*?;ik)#I0Xkht(9&#CuJ9y1 z+OoyQSuoCz^A?{G#(gQymcX4#vIJPDYu zs`Z<6VAxx6XHYd|G7{k|<(5KVxMax#mY@^Kn=zuG(3XKrS);OG1+I`&SnxFMBvg4> zB@#^OMIp6b z1)4JztOF;4PPsu3loD7*4LL)0HbBb(h;@~`NxTfvtUIr) zsJuLsX6)sBj84Z92FwR=wO+ycs3@*sj46A`>&a^flx7%{g^HT#gxaP|%IqX2_q)CN zAn#K^B_yFNp!u8(wm>1hO~$58j#3Cz0*r^%Bp74a4x3@DVkJ_r1Ih9c7&fNldQCQy zk0uI1yUP*Ks7)wRD5OJaVPxEukrxzdAB(bi7zi_T5ph+djH?n?1Q?^)!==4oAgUz| z3J_9+DjI2`f}tiosVbXed7_}RVs^x1l(R}8?1K|D%Ec;Kb2u%H!6`PJ)fdwhC2X`I zkUXS|$}JH($`qZ25M5@#T#6tn4s8VtTT>1dgz$hVonlQHT0_bU4ht0XDp-Z4=)nB| zL7^}NOCc$2j~X4cCuk2iVzfu^4a6AEER0)FdC9cejRdXg6j#bK8ZR8RIf5Z$5)BDz zTS{8N2nfY+m^_dm0AE&{A@p3rp!BIqfJPg0TeDEQqzFZFezjFrwj$AFG0LW7aw8fq&JLK!unWc_hJwk(=rZ9F!KIu|v(2t?>D90=%>|ViW0rSo z6Cp-Nc|c`43ORMudwBoRwk&-wg82E+;u5_4vqh#$@x@SN0`2^W1@(5Fv^ zSv5}P0Us5S*~(GcVspw<4vU4erlXjuNTxLwompm;s-003k1-~VR7+;`x_Dgb3zQ5# zQW^*CrcB-#DfkL*L!(|rAZYEB*L6s=CIk+p0tm_lboAjVBBFQyxt^CMHM_~ z*8;GYV)QA*kHNZV!T``Nvzlbm(ugWmwS0wV<|Z6N4!!dQ@jEIL<&;GH0p^W+N! zli5qVV{j#-0zE*~q1Kn8B{<;MlXP5db%fzeA(br3DhZ@Sg-Otv^%yEepI7e5mGp5g zLPV7bM5^HJJ_XGK%8((h!wq3TRU)AvY*1PNJK@R(bMms0a+OpSDCj}LCOfK*Ci1~T z#tuRDlt+!&Ku9HZm36F@Qy797xKNSH2v#48n=k_eAX+~u^>}P)KcmvqSTbT)XU(KV zrSZglTts03!vHDw5FWy(_3<_&S2V{7FjGODvRF}v!wO6*&&n!Vxr0R=0mQEl$j#9N z4<*A6vsH$xD5=N6Ya)e6h4Gc)a3~6fz@#h>7)>g|prBRquqLY!a+TC9YzJtJ4`vdw zR0{Grf~j0Fp~Sror8!^Ju&D~Gp>-Aj;mJe_BeejSQp8b@(WOgk+&~s_X+1?dT_{>D zP|+O-f*@-u_;f`#5f-*gkIY-jutsGp=k%ZoF|R>MR8%az|$(PJDCsW8DR&qCg=>VAsk62<@c+NT3;zsQG^XjM5ggV zJgbna&=QQ$F;^xQPpb61lE}xnxJk_#69CO9*iewqg^FRksJ2;^`3wYS%h8h6jer^l zS0)h|T~v{rRvQJwQH{bMH$YmspK&0`veJTuj67HI!Keq+S}p339kbZEfRlCb7P%cV zDKxYzjg#d#0R<@=V`mU!(2vIt4&pC7EG-hPw zWoJcYlBxU{gqf4YdV)Mo(Hj)b_F1qs^#e}XQXak*O^fE_v`LK+Jm-bh=5 zfCpFmF*T(0nOs~>FNIwmohE@IE@#Y@H0XSI!ETXdeHp1wo${er&dB0=)`{5tcCuK~ zd6ii(sCMF38z=-@9th=&v0z2!aBJC$(velg3AU0i6iY6*((28G^cdxVDLv^afnl8o z75verQR~WRNLGoNOJuo71{K~ISp-wLWH}v+=JR@;gEEm&%IZ^vA}(La?lv(xy9>4B zpeC#`+TaRp!%N1L-WkW#YNdQ4`p%0Vg06*2@Jw9sihmVt})dS>R6<3)+ z17=L=(jRf>Q+BC4gJmoUzuLz$yjPWG znQ*G8RVvcFknq`bA?i$2C|*kzq}dFNWidyZ;W!Oh%+L`xF7;9t#--6B+5pJ~l5kO~ zp^c;=6Gz-m*kG_04W(j1uP)IgG74JDRu|40O{53a#azycI!2__P&7;z{U$4jqfw2` zWhdNuskX=`Tn?SmQz_WPIg8q33CGGD@8SVn*k?ejQY?oigu@4v=k@NG%V4p%aJ$}D z3PU~%s#5Wzr~=1nV{?{A4$at z2UYg6Ns1ZEjd8)ZvJ}~H>LylSy{I*ux}r6my^>v; z&r-aL%HgCiCtHq6XKU(eYHDjGf9MJA6fbkmcs3`h(%5(jR?Z5dqfTpZKytbbv8fbA zIG6ScK>smi82iw&I?P^ zU(fS+Su`Zj78i}(uSZ8VUZDo`Xctc1mg@xgf4a`6)}!sb zV_W1pweXck$VM&lmgZcUqsF!V_Wo5{a7(YN`4Y-DB7{1&$);)5wWk(r|E&H z6_Bck+B1m4N2Swhnk8=bYUHVtJ}(`aJj3+P}}E)!js##N|Cx zz9F7V<6JfIS2q-nXE}<`#i?wsY@Vlag6dyo0^K{!#iu%|8%>{6^;6r;X~}MgYI>^s z)4v!G=rJ~Oc39CzFYEaRc4``;JtU2dLwmAL4PK?^0#vi*)xsN1LT2lc$D4(QL|lXF zVhj~3O)UcHPV~cshD2PSs=#oe(sZprx&>N=hD2Pus=x@L(sZ3bx&=lG4T-p}Re|e; zN)sTEZh;$whD2QRs=%LwO4BHTbPGs@hD7v-ssJcdn#4`0TR<)}B%-fW1r$Q1Nhy$S z0hQ2@h<;QRPz#kNjX=5uv_hj^w9o%-ZN&YjS44;d(#_Si_FM^{aJ(>_Vq^iB<c4>T>ABF~#NhXR9mjH|HE(8nVL4fu!oQ1kQ*is1vrUa~#)2rCGjgNU=mxbPcgA z7K&)8hlKH(MhlhtW`X>Bj}aZej=|H^g{P!m;)W?`+$S!42O*MCp3O64FP6iJc&^-3 zHHC{MDT#P2sQXVjAW0+_4e7b~)c~w6w`hwq3*K;}V3Xe6R%;p~v?Y?0^=}G!_kVc5 z>SWc-+SXRnD58mvL=4tyM2{0&EdmjJ>6|6MN#uwT+$@xan?-_A;z_kSv~XINtPzG5 zhZk5i5;3}~h>+M4!~6n7qsS3MzF8;@CV|vBDY_ePc~3ks8C3DCLPa8Gg$wX(B1g;+ z%|dCg3#1+u|Ce%hf=hb>ipir2=n^UtF^gOP2#XvsqcjVp!7Y%BeB4>IB|Xu^OjAWe zg^EN>ITxT|B1cR=%|dDL3Z%}+7MZhnFZ9F{qq2$@5GoQe?k>O!iX1UpH4CL7B#?S6 zhx6U)F762^CbBBv1fe1kGuj1!6Ge`g-I|5caEsV7oSog1J;B7JR|UgGAu;=102UEB zVkT@BN&_Lb^k>25^#H3EQ`i48-3gM_bXPCtpMRCG#B9+hWXotSrdBq^@GMfjHZ+nH zP4PTM3hX9{L`-Sk+XW&%l3rr?)JQ}kJpUnQbICYCSJC>Cn*<`7wA&yOF>I?mF-p(l zi6L0!i4k`mPmHE2PYj;(cw%f+d15G>#}oa$$`jrCJf7&XRi5af=kY`jtnx&MJC`Ti z;p&9W>eHaS<}Zz>s=dE`d~E6})4+{^NhA8V+}SlPawu}+Ju{`P@ZMv?GO3N1@6@X6 z8b6!*=f(l(y;CPFvtBlGVyxxffde1B`CSAVI&AQzL+>3pGWOJyH(RH2iw2sXzWKU( z>)R*3TRn47cK5ukJ5Q8`{r1IAyWUx~>xn&U=9U$c_5JUhW<4|wZ0^%o+cgz@m+Q0t z$nl$pA8iI2CdfiVF6r7q=(UBQ`-6pgEi^lN^L)w2PWbA+UDI#V-`zQS$dmFBvl`nE zJ69ZS&xDSx+PD9tHLS1HFn;yN_vK$reE;$2c*i0~7y0wIw`_ench`^gU&+5}{VI9? z>uZQk&2t{}FNZ!N5C37@?k#=xkJ&!>z=|ouCtlY2Dtn><=kHvq|Kz~hEvokqE;_QP zZKAyV4buOa_@UDB$2YIKa!SXbr4RRS+q&XU^X}WUz`BQ@*LiT$maU6^sEaj*j=O><6HDl@+ zVBB2em4kZ!abWutc|}^=@satmEtA=gM@`5MY@fb$Df!AK$T*&sfJaJ%!bMJ5SM@C**a`36=9-sA6 zW!v{_o3C0*9R6V4!3CK+revoY?+!OS@m4n^V_o{rqpApZwPB%5DAyn=}Wu{bR;2 zlXpIJwBC25ec9{lzdF2f)%Awm(fHL%vgy(zZDSWR`#yc=qt4DrpO0A5`V0DDZu;93 zJmmX-pK(e16>Y=jqu&;5`zJegy!g?spGsbf>c&{V4>QIg?OJ!cjK1f<>KC@IJ91ef zyMJ@nZ!a%By6KKhs&N}iuwT)I)OzWmmrhi6u(_ka3s(jwVC<33z^%a7}?KR#h+|JHf)Z1?SS ze(n3IL%n8u#{%V7frH6+i+lby^mh3*lWtf(>9dV{^Y({VO^PzkJsWmB|M!miUfHYG zHTXWrzp0z`VBZDK#~#|;vukR>zA)ydh`YFqxJ2k zS(?ewS>F zfJZm~u>H{J6E8ooXQC`LUir#<3Fps;cE0!hccU-)VaVKT+tc4Xx_8{`vkztFpZIG` z9w*<_w9n}^X{ON>z1yyaI_=@kw{d)0%LAxgE_8uOY_+Ucr)4RKlLqDvkb+o=V zduV&>CIQb;n%|**X4pDqhx^@L?ay64p=-tq-@R=4d`$$Nbz<>OcDeVZ)UpWbz3J%9 zbKY6g*SI;~Z=IXo)6jyWSHw1V+|?sF_b+w!I(gBpjxOZXUU+r`shQAY1Nm@y-x{#7 zZtcapro6eVVL+#1fNpK?0jIZ`oI?`;EVgho|cEM&+_e zOLx3{{y=n(f!^=v`^L?EYGse^n1Y||z2N#@ch+rtaoONA2sJfNemQs7&f9)_c*?uO zRgWz)w{MHh9^yh5+7e3J%+}}M6FR#!5Z~H8y0Curga2m8nxXw`*IwLta>i5jue7bb zZ~v!jw{(wKv*bAaQu}YewHGfK>dg3Ot`*gn-grWNy#39A=MPDoqh(V~bN{-v{l4wQ z)B0L``ru^^vz`!7V^b$5f4+S#d))O;6ca}4F{`uHH(sjk|Hks?&L8hQt9Gl{@brZ$ zo(7X1t7`h_iTL?OJy+8=ep5qo;_>r`EcQ_G4s&9w|gXfiZe|hbQ(Q~E0ESqh<13p~*dH9FN z+~|WV#V-}&GqpEE+-9A2{v1B800o z?0Iz6da(cTBS=U56yRApwXJdUw)HF44-x(kKJ&_NIyFYrC(fwyXP22m3c5_TDq_odXBqVU87s_z>-n>QXMbu p(meXs7mt(&fBe?4&T+}BcK`a~pd~s-HGZe|>G#%bS-q(5e*@V)JH!A0 literal 0 HcmV?d00001 diff --git a/quicknes/source/inputParser.hpp b/quicknes/source/inputParser.hpp new file mode 100644 index 00000000000..d680b5dbe21 --- /dev/null +++ b/quicknes/source/inputParser.hpp @@ -0,0 +1,353 @@ +#pragma once + +// Base controller class +// by eien86 + +#include +#include +#include +#include +#include + +namespace jaffar +{ + +typedef uint32_t port_t; + +struct input_t +{ + bool power = false; + bool reset = false; + port_t port1 = 0; + port_t port2 = 0; + port_t arkanoidLatch = 0; + uint8_t arkanoidFire = 0; +}; + +class InputParser +{ + public: + enum controller_t + { + none, + joypad, + fourscore1, + fourscore2, + arkanoidNES, + arkanoidFamicom + }; + + controller_t _controller1Type; + controller_t _controller2Type; + + InputParser(const nlohmann::json &config) + { + // Parsing controller 1 type + { + bool isTypeRecognized = false; + const auto controller1Type = jaffarCommon::json::getString(config, "Controller 1 Type"); + if (controller1Type == "None") + { + _controller1Type = controller_t::none; + isTypeRecognized = true; + } + if (controller1Type == "Joypad") + { + _controller1Type = controller_t::joypad; + isTypeRecognized = true; + } + if (controller1Type == "FourScore1") + { + _controller1Type = controller_t::fourscore1; + isTypeRecognized = true; + } + if (controller1Type == "FourScore2") + { + _controller1Type = controller_t::fourscore2; + isTypeRecognized = true; + } + + #ifdef _QUICKERNES_SUPPORT_ARKANOID_INPUTS + if (controller1Type == "ArkanoidNES") + { + _controller1Type = controller_t::arkanoidNES; + isTypeRecognized = true; + } + if (controller1Type == "ArkanoidFamicom") + { + _controller1Type = controller_t::arkanoidFamicom; + isTypeRecognized = true; + } + #endif + + if (isTypeRecognized == false) JAFFAR_THROW_LOGIC("Controller 1 type not recognized: '%s'\n", controller1Type.c_str()); + } + + // Parsing controller 2 type + { + bool isTypeRecognized = false; + const auto controller2Type = jaffarCommon::json::getString(config, "Controller 2 Type"); + if (controller2Type == "None") + { + _controller2Type = controller_t::none; + isTypeRecognized = true; + } + if (controller2Type == "Joypad") + { + _controller2Type = controller_t::joypad; + isTypeRecognized = true; + } + if (controller2Type == "FourScore1") + { + _controller2Type = controller_t::fourscore1; + isTypeRecognized = true; + } + if (controller2Type == "FourScore2") + { + _controller2Type = controller_t::fourscore2; + isTypeRecognized = true; + } + if (isTypeRecognized == false) JAFFAR_THROW_LOGIC("Controller 2 type not recognized: '%s'\n", controller2Type.c_str()); + } + } + + inline input_t parseInputString(const std::string &inputString) const + { + // Storage for the input + input_t input; + + // Converting input into a stream for parsing + std::istringstream ss(inputString); + + // Start separator + if (ss.get() != '|') reportBadInputString(inputString); + + // Parsing console inputs + parseConsoleInputs(input.reset, input.power, ss, inputString); + + // Parsing controller 1 inputs + if (_controller1Type == arkanoidNES) parseArkanoidNESInput(input, ss, inputString); + if (_controller1Type == arkanoidFamicom) parseArkanoidFamicomInput(input, ss, inputString); + if (_controller1Type == joypad || _controller1Type == fourscore1) parseControllerInputs(_controller1Type, input.port1, ss, inputString); + + // Parsing controller 2 inputs + if (_controller2Type == joypad || _controller2Type == fourscore2) parseControllerInputs(_controller2Type, input.port2, ss, inputString); + + // End separator + if (ss.get() != '|') reportBadInputString(inputString); + + // If its not the end of the stream, then extra values remain and its invalid + ss.get(); + if (ss.eof() == false) reportBadInputString(inputString); + + return input; + } + + private: + static inline void reportBadInputString(const std::string &inputString) + { + JAFFAR_THROW_LOGIC("Could not decode input string: '%s'\n", inputString.c_str()); + } + + static void parseJoyPadInput(uint8_t &code, std::istringstream &ss, const std::string &inputString) + { + // Currently read character + char c; + + // Cleaning code + code = 0; + + // Up + c = ss.get(); + if (c != '.' && c != 'U') reportBadInputString(inputString); + if (c == 'U') code |= 0b00010000; + + // Down + c = ss.get(); + if (c != '.' && c != 'D') reportBadInputString(inputString); + if (c == 'D') code |= 0b00100000; + + // Left + c = ss.get(); + if (c != '.' && c != 'L') reportBadInputString(inputString); + if (c == 'L') code |= 0b01000000; + + // Right + c = ss.get(); + if (c != '.' && c != 'R') reportBadInputString(inputString); + if (c == 'R') code |= 0b10000000; + + // Start + c = ss.get(); + if (c != '.' && c != 'S') reportBadInputString(inputString); + if (c == 'S') code |= 0b00001000; + + // Select + c = ss.get(); + if (c != '.' && c != 's') reportBadInputString(inputString); + if (c == 's') code |= 0b00000100; + + // B + c = ss.get(); + if (c != '.' && c != 'B') reportBadInputString(inputString); + if (c == 'B') code |= 0b00000010; + + // A + c = ss.get(); + if (c != '.' && c != 'A') reportBadInputString(inputString); + if (c == 'A') code |= 0b00000001; + } + + static inline void parseArkanoidInput(input_t& input, std::istringstream& ss, const std::string& inputString) + { + uint8_t potentiometer = 0; + uint8_t fire = 0; + + // Controller separator + if (ss.get() != '|') reportBadInputString(inputString); + + if (ss.get() != ' ') reportBadInputString(inputString); + if (ss.get() != ' ') reportBadInputString(inputString); + + char c = ss.get(); // Hundreds + if (c != ' ' && c < 48 && c > 57) reportBadInputString(inputString); + if (c != ' ') potentiometer += 100 * ( (uint8_t)c - 48 ); + + c = ss.get(); // Tenths + if (c != ' ' && c < 48 && c > 57) reportBadInputString(inputString); + if (c != ' ') potentiometer += 10 * ( (uint8_t)c - 48 ); + + c = ss.get(); // Units + if (c != ' ' && c < 48 && c > 57) reportBadInputString(inputString); + if (c != ' ') potentiometer += (uint8_t)c - 48; + + // Comma + if (ss.get() != ',') reportBadInputString(inputString); + + // Fire + + c = ss.get(); + if (c != '.' && c != 'F') reportBadInputString(inputString); + if (c == 'F') fire = 1; + + // Fire is encoded in port 1 + input.arkanoidFire = fire; + + // Potentiometer is encoded in port 2 - MSB and adding one bit for signalling the presence of the potentiometer, subtracted from 173 + uint8_t subtracter = 171 - potentiometer; + + input.arkanoidLatch = 0; + if ((subtracter & 128) > 0) input.arkanoidLatch += 1; + if ((subtracter & 64) > 0) input.arkanoidLatch += 2; + if ((subtracter & 32) > 0) input.arkanoidLatch += 4; + if ((subtracter & 16) > 0) input.arkanoidLatch += 8; + if ((subtracter & 8) > 0) input.arkanoidLatch += 16; + if ((subtracter & 4) > 0) input.arkanoidLatch += 32; + if ((subtracter & 2) > 0) input.arkanoidLatch += 64; + if ((subtracter & 1) > 0) input.arkanoidLatch += 128; + } + + static void parseControllerInputs(const controller_t type, port_t &port, std::istringstream &ss, const std::string &inputString) + { + // If no controller assigned then, its port is all zeroes. + if (type == controller_t::none) + { + port = 0; + return; + } + + // Controller separator + if (ss.get() != '|') reportBadInputString(inputString); + + // If normal joypad, parse its code now + if (type == controller_t::joypad) + { + // Storage for joypad's code + uint8_t code = 0; + + // Parsing joypad code + parseJoyPadInput(code, ss, inputString); + + // Pushing input code into the port + port = code; + + // Adding joypad signature + // Per https://www.nesdev.org/wiki/Standard_controller, the joypad reports 1s after the first 8 bits + port |= ~0xFF; + } + + // If its fourscore, its like two joypads separated by a | + if (type == controller_t::fourscore1 || type == controller_t::fourscore2) + { + // Storage for joypad's code + uint8_t code1 = 0; + uint8_t code2 = 0; + + // Parsing joypad code1 + parseJoyPadInput(code1, ss, inputString); + + // Separator + if (ss.get() != '|') reportBadInputString(inputString); + + // Parsing joypad code1 + parseJoyPadInput(code2, ss, inputString); + + // Creating code + port = code1; + port |= (uint32_t)0 | code2 << 8; + if (type == controller_t::fourscore1) port |= (uint32_t)0 | 1 << 19; + if (type == controller_t::fourscore2) port |= (uint32_t)0 | 1 << 18; + port |= (uint32_t)0 | 1 << 24; + port |= (uint32_t)0 | 1 << 25; + port |= (uint32_t)0 | 1 << 26; + port |= (uint32_t)0 | 1 << 27; + port |= (uint32_t)0 | 1 << 28; + port |= (uint32_t)0 | 1 << 29; + port |= (uint32_t)0 | 1 << 30; + port |= (uint32_t)0 | 1 << 31; + } + } + + static inline void parseArkanoidNESInput(input_t& input, std::istringstream& ss, const std::string& inputString) + { + // Simply parse the arkanoid controller input + parseArkanoidInput(input, ss, inputString); + } + + static inline void parseArkanoidFamicomInput(input_t& input, std::istringstream& ss, const std::string& inputString) + { + // Parsing joypad controller + parseControllerInputs(controller_t::joypad, input.port1, ss, inputString); + + // Controller separator + if (ss.get() != '|') reportBadInputString(inputString); + + // Advancing 7 positions (this input is not supported) + for (size_t i = 0; i < 7; i++) if (ss.get() != '.') reportBadInputString(inputString); + + // Then, parse the arkanoid controller input + parseArkanoidInput(input, ss, inputString); + } + + + static void parseConsoleInputs(bool &reset, bool &power, std::istringstream &ss, const std::string &inputString) + { + // Currently read character + char c; + + // Power trigger + c = ss.get(); + if (c != '.' && c != 'P') reportBadInputString(inputString); + if (c == 'P') power = true; + if (c == '.') power = false; + + // Reset trigger + c = ss.get(); + if (c != '.' && c != 'r') reportBadInputString(inputString); + if (c == 'r') reset = true; + if (c == '.') reset = false; + } + +}; // class InputParser + +} // namespace jaffar \ No newline at end of file diff --git a/quicknes/source/meson.build b/quicknes/source/meson.build new file mode 100644 index 00000000000..cf5591dd318 --- /dev/null +++ b/quicknes/source/meson.build @@ -0,0 +1,12 @@ +# Getting core configurations +if get_option('buildQuickNES') == true +subdir('quickNES') +endif + +subdir('quickerNES') + +# Tool Configuration + + toolDependency = declare_dependency( + include_directories : include_directories(['.']), + ) diff --git a/quicknes/source/nesInstanceBase.hpp b/quicknes/source/nesInstanceBase.hpp new file mode 100644 index 00000000000..f8d8e27476b --- /dev/null +++ b/quicknes/source/nesInstanceBase.hpp @@ -0,0 +1,89 @@ +#pragma once + +#include "inputParser.hpp" +#include "jaffarCommon/logger.hpp" +#include "jaffarCommon/serializers/contiguous.hpp" +#include "jaffarCommon/serializers/differential.hpp" +#include "jaffarCommon/deserializers/base.hpp" + +// Size of image generated in graphics buffer +static const uint16_t image_width = 256; +static const uint16_t image_height = 240; + +class NESInstanceBase +{ + public: + NESInstanceBase(const nlohmann::json &config) + { + _inputParser = std::make_unique(config); + } + + virtual ~NESInstanceBase() = default; + + virtual void advanceState(const jaffar::input_t &input) = 0; + + inline void enableRendering() { _doRendering = true; }; + inline void disableRendering() { _doRendering = false; }; + + inline bool loadROM(const uint8_t *romData, const size_t romSize) + { + // Actually loading rom file + auto status = loadROMImpl(romData, romSize); + + // Detecting full state size + _stateSize = getFullStateSize(); + + // Returning status + return status; + } + + void enableStateBlock(const std::string &block) + { + // Calling implementation + enableStateBlockImpl(block); + + // Recalculating State size + _stateSize = getFullStateSize(); + } + + void disableStateBlock(const std::string &block) + { + // Calling implementation + disableStateBlockImpl(block); + + // Recalculating State Size + _stateSize = getFullStateSize(); + } + + virtual size_t getFullStateSize() const = 0; + virtual size_t getDifferentialStateSize() const = 0; + inline jaffar::InputParser *getInputParser() const { return _inputParser.get(); } + + // Virtual functions + + virtual uint8_t *getLowMem() const = 0; + virtual size_t getLowMemSize() const = 0; + + virtual void serializeState(jaffarCommon::serializer::Base &serializer) const = 0; + virtual void deserializeState(jaffarCommon::deserializer::Base &deserializer) = 0; + + virtual void doSoftReset() = 0; + virtual void doHardReset() = 0; + virtual std::string getCoreName() const = 0; + virtual void *getInternalEmulatorPointer() = 0; + virtual void setNTABBlockSize(const size_t size) {}; + + protected: + virtual void enableStateBlockImpl(const std::string &block) = 0; + virtual void disableStateBlockImpl(const std::string &block) = 0; + virtual bool loadROMImpl(const uint8_t *romData, const size_t romSize) = 0; + + // Storage for the light state size + size_t _stateSize; + + // Flag to determine whether to enable/disable rendering + bool _doRendering = true; + + // Input parser instance + std::unique_ptr _inputParser; +}; diff --git a/quicknes/source/playbackInstance.hpp b/quicknes/source/playbackInstance.hpp new file mode 100644 index 00000000000..365f8fdb8cc --- /dev/null +++ b/quicknes/source/playbackInstance.hpp @@ -0,0 +1,274 @@ +#pragma once + +#include "nesInstance.hpp" +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define _INVERSE_FRAME_RATE 16667 + +struct stepData_t +{ + std::string inputString; + jaffar::input_t decodedInput; + uint8_t *stateData; + jaffarCommon::hash::hash_t hash; +}; + +class PlaybackInstance +{ + static const uint16_t image_width = 256; + static const uint16_t image_height = 240; + + public: + void addStep(const std::string &inputString, const jaffar::input_t decodedInput) + { + stepData_t step; + step.inputString = inputString; + step.decodedInput = decodedInput; + step.stateData = (uint8_t *)malloc(_emu->getFullStateSize()); + + jaffarCommon::serializer::Contiguous serializer(step.stateData); + _emu->serializeState(serializer); + step.hash = jaffarCommon::hash::calculateMetroHash(_emu->getLowMem(), _emu->getLowMemSize()); + + // Adding the step into the sequence + _stepSequence.push_back(step); + } + + // Initializes the playback module instance + PlaybackInstance(NESInstance *emu, const std::string &overlayPath = "") : _emu(emu) + { + // Loading overlay, if provided + if (overlayPath != "") + { + // Using overlay + _useOverlay = true; + + // Loading overlay images + std::string imagePath; + + imagePath = _overlayPath + std::string("/base.png"); + _overlayBaseSurface = IMG_Load(imagePath.c_str()); + if (_overlayBaseSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); + + imagePath = _overlayPath + std::string("/button_a.png"); + _overlayButtonASurface = IMG_Load(imagePath.c_str()); + if (_overlayButtonASurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); + + imagePath = _overlayPath + std::string("/button_b.png"); + _overlayButtonBSurface = IMG_Load(imagePath.c_str()); + if (_overlayButtonBSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); + + imagePath = _overlayPath + std::string("/button_select.png"); + _overlayButtonSelectSurface = IMG_Load(imagePath.c_str()); + if (_overlayButtonSelectSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); + + imagePath = _overlayPath + std::string("/button_start.png"); + _overlayButtonStartSurface = IMG_Load(imagePath.c_str()); + if (_overlayButtonStartSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); + + imagePath = _overlayPath + std::string("/button_left.png"); + _overlayButtonLeftSurface = IMG_Load(imagePath.c_str()); + if (_overlayButtonLeftSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); + + imagePath = _overlayPath + std::string("/button_right.png"); + _overlayButtonRightSurface = IMG_Load(imagePath.c_str()); + if (_overlayButtonRightSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); + + imagePath = _overlayPath + std::string("/button_up.png"); + _overlayButtonUpSurface = IMG_Load(imagePath.c_str()); + if (_overlayButtonUpSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); + + imagePath = _overlayPath + std::string("/button_down.png"); + _overlayButtonDownSurface = IMG_Load(imagePath.c_str()); + if (_overlayButtonDownSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); + } + } + + void initialize(const std::vector &sequence) + { + // Getting input decoder + auto inputParser = _emu->getInputParser(); + + // Building sequence information + for (const auto &input : sequence) + { + // Getting decoded input + const auto decodedInput = inputParser->parseInputString(input); + + // Adding new step + addStep(input, decodedInput); + + // Advance state based on the input received + _emu->advanceState(decodedInput); + } + + // Adding last step with no input + addStep("", jaffar::input_t()); + } + + void enableRendering(SDL_Window *window) + { + // Allocating video buffer + _video_buffer = (uint8_t *)malloc(image_width * image_height); + + // Setting video buffer + ((emulator_t *)_emu->getInternalEmulatorPointer())->set_pixels(_video_buffer, image_width + 8); + + // Loading Emulator instance HQN + _hqnState.setEmulatorPointer(_emu->getInternalEmulatorPointer()); + static uint8_t video_buffer[image_width * image_height]; + _hqnState.m_emu->set_pixels(video_buffer, image_width + 8); + + // Enabling emulation rendering + _emu->enableRendering(); + + // Creating HQN GUI + _hqnGUI = hqn::GUIController::create(_hqnState, window); + _hqnGUI->setScale(1); + } + + // Function to render frame + void renderFrame(const size_t stepId) + { + // Checking the required step id does not exceed contents of the sequence + if (stepId > _stepSequence.size()) JAFFAR_THROW_LOGIC("[Error] Attempting to render a step larger than the step sequence"); + + // Getting step information + const auto &step = _stepSequence[stepId]; + + // Pointer to overlay images (NULL if unused) + SDL_Surface *overlayButtonASurface = NULL; + SDL_Surface *overlayButtonBSurface = NULL; + SDL_Surface *overlayButtonSelectSurface = NULL; + SDL_Surface *overlayButtonStartSurface = NULL; + SDL_Surface *overlayButtonLeftSurface = NULL; + SDL_Surface *overlayButtonRightSurface = NULL; + SDL_Surface *overlayButtonUpSurface = NULL; + SDL_Surface *overlayButtonDownSurface = NULL; + + // Load correct overlay images, if using overlay + if (_useOverlay == true) + { + if (step.inputString.find("A") != std::string::npos) overlayButtonASurface = _overlayButtonASurface; + if (step.inputString.find("B") != std::string::npos) overlayButtonBSurface = _overlayButtonBSurface; + if (step.inputString.find("S") != std::string::npos) overlayButtonSelectSurface = _overlayButtonSelectSurface; + if (step.inputString.find("T") != std::string::npos) overlayButtonStartSurface = _overlayButtonStartSurface; + if (step.inputString.find("L") != std::string::npos) overlayButtonLeftSurface = _overlayButtonLeftSurface; + if (step.inputString.find("R") != std::string::npos) overlayButtonRightSurface = _overlayButtonRightSurface; + if (step.inputString.find("U") != std::string::npos) overlayButtonUpSurface = _overlayButtonUpSurface; + if (step.inputString.find("D") != std::string::npos) overlayButtonDownSurface = _overlayButtonDownSurface; + } + + // Since we do not store the blit information (too much memory), we need to load the previous frame and re-run the input + + // If its the first step, then simply reset + if (stepId == 0) _emu->doHardReset(); + + // Else we load the previous frame + if (stepId > 0) + { + const auto stateData = getStateData(stepId - 1); + jaffarCommon::deserializer::Contiguous deserializer(stateData); + _emu->deserializeState(deserializer); + _emu->advanceState(getDecodedInput(stepId - 1)); + } + + // Updating image + int32_t curBlit[BLIT_SIZE]; + saveBlit(_emu->getInternalEmulatorPointer(), curBlit, hqn::HQNState::NES_VIDEO_PALETTE, 0, 0, 0, 0); + _hqnGUI->update_blit(curBlit, _overlayBaseSurface, overlayButtonASurface, overlayButtonBSurface, overlayButtonSelectSurface, overlayButtonStartSurface, overlayButtonLeftSurface, overlayButtonRightSurface, overlayButtonUpSurface, overlayButtonDownSurface); + } + + size_t getSequenceLength() const + { + return _stepSequence.size(); + } + + const std::string getInputString(const size_t stepId) const + { + // Checking the required step id does not exceed contents of the sequence + if (stepId > _stepSequence.size()) JAFFAR_THROW_LOGIC("[Error] Attempting to render a step larger than the step sequence"); + + // Getting step information + const auto &step = _stepSequence[stepId]; + + // Returning step input + return step.inputString; + } + + const jaffar::input_t getDecodedInput(const size_t stepId) const + { + // Checking the required step id does not exceed contents of the sequence + if (stepId > _stepSequence.size()) JAFFAR_THROW_LOGIC("[Error] Attempting to render a step larger than the step sequence"); + + // Getting step information + const auto &step = _stepSequence[stepId]; + + // Returning step input + return step.decodedInput; + } + + const uint8_t *getStateData(const size_t stepId) const + { + // Checking the required step id does not exceed contents of the sequence + if (stepId > _stepSequence.size()) JAFFAR_THROW_LOGIC("[Error] Attempting to render a step larger than the step sequence"); + + // Getting step information + const auto &step = _stepSequence[stepId]; + + // Returning step input + return step.stateData; + } + + const jaffarCommon::hash::hash_t getStateHash(const size_t stepId) const + { + // Checking the required step id does not exceed contents of the sequence + if (stepId > _stepSequence.size()) JAFFAR_THROW_LOGIC("[Error] Attempting to render a step larger than the step sequence"); + + // Getting step information + const auto &step = _stepSequence[stepId]; + + // Returning step input + return step.hash; + } + + + private: + // Internal sequence information + std::vector _stepSequence; + + // Storage for the HQN state + hqn::HQNState _hqnState; + + // Storage for the HQN GUI controller + hqn::GUIController *_hqnGUI; + + // Pointer to the contained emulator instance + NESInstance *const _emu; + + // Flag to store whether to use the button overlay + bool _useOverlay = false; + + // Video buffer + uint8_t *_video_buffer; + + // Overlay info + std::string _overlayPath; + SDL_Surface *_overlayBaseSurface = NULL; + SDL_Surface *_overlayButtonASurface; + SDL_Surface *_overlayButtonBSurface; + SDL_Surface *_overlayButtonSelectSurface; + SDL_Surface *_overlayButtonStartSurface; + SDL_Surface *_overlayButtonLeftSurface; + SDL_Surface *_overlayButtonRightSurface; + SDL_Surface *_overlayButtonUpSurface; + SDL_Surface *_overlayButtonDownSurface; +}; diff --git a/quicknes/source/player.cpp b/quicknes/source/player.cpp new file mode 100644 index 00000000000..9d124afc34e --- /dev/null +++ b/quicknes/source/player.cpp @@ -0,0 +1,241 @@ +#include "argparse/argparse.hpp" +#include "jaffarCommon/deserializers/contiguous.hpp" +#include "jaffarCommon/file.hpp" +#include "jaffarCommon/logger.hpp" +#include "jaffarCommon/serializers/contiguous.hpp" +#include "jaffarCommon/string.hpp" +#include "nesInstance.hpp" +#include "playbackInstance.hpp" +#include + +SDL_Window *launchOutputWindow() +{ + // Opening rendering window + SDL_SetMainReady(); + + // We can only call SDL_InitSubSystem once + if (!SDL_WasInit(SDL_INIT_VIDEO)) + if (SDL_InitSubSystem(SDL_INIT_VIDEO) != 0) JAFFAR_THROW_LOGIC("Failed to initialize video: %s", SDL_GetError()); + + auto window = SDL_CreateWindow("JaffarPlus", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 100, 100, SDL_WINDOW_RESIZABLE); + if (window == nullptr) JAFFAR_THROW_LOGIC("Coult not open SDL window"); + + return window; +} + +void closeOutputWindow(SDL_Window *window) { SDL_DestroyWindow(window); } + +int main(int argc, char *argv[]) +{ + // Parsing command line arguments + argparse::ArgumentParser program("player", "1.0"); + + program.add_argument("romFile") + .help("Path to the rom file to run.") + .required(); + + program.add_argument("sequenceFile") + .help("Path to the input sequence file (.sol) to reproduce.") + .required(); + + program.add_argument("stateFile") + .help("(Optional) Path to the initial state file to load.") + .default_value(std::string("")); + + program.add_argument("--reproduce") + .help("Plays the entire sequence without interruptions and exit at the end.") + .default_value(false) + .implicit_value(true); + + program.add_argument("--disableRender") + .help("Do not render game window.") + .default_value(false) + .implicit_value(true); + + program.add_argument("--controller1") + .help("Specifies the controller 1 type.") + .default_value(std::string("Joypad")); + + program.add_argument("--controller2") + .help("Specifies the controller 2 type.") + .default_value(std::string("None")); + + // Try to parse arguments + try + { + program.parse_args(argc, argv); + } + catch (const std::runtime_error &err) + { + JAFFAR_THROW_LOGIC("%s\n%s", err.what(), program.help().str().c_str()); + } + + // Getting ROM file path + std::string romFilePath = program.get("romFile"); + + // Getting sequence file path + std::string sequenceFilePath = program.get("sequenceFile"); + + // If initial state file is specified, load it + std::string stateFilePath = program.get("stateFile"); + + // Getting reproduce flag + bool isReproduce = program.get("--reproduce"); + + // Getting reproduce flag + bool disableRender = program.get("--disableRender"); + + // Getting controller 1 Type + std::string controller1Type = program.get("--controller1"); + + // Getting controller 2 Type + std::string controller2Type = program.get("--controller2"); + + // Loading sequence file + std::string inputSequence; + auto status = jaffarCommon::file::loadStringFromFile(inputSequence, sequenceFilePath.c_str()); + if (status == false) JAFFAR_THROW_LOGIC("[ERROR] Could not find or read from sequence file: %s\n", sequenceFilePath.c_str()); + + // Building sequence information + const auto sequence = jaffarCommon::string::split(inputSequence, '\n'); + + // Initializing terminal + jaffarCommon::logger::initializeTerminal(); + + // Printing provided parameters + jaffarCommon::logger::log("[] Rom File Path: '%s'\n", romFilePath.c_str()); + jaffarCommon::logger::log("[] Sequence File Path: '%s'\n", sequenceFilePath.c_str()); + jaffarCommon::logger::log("[] Sequence Length: %lu\n", sequence.size()); + jaffarCommon::logger::log("[] State File Path: '%s'\n", stateFilePath.empty() ? "" : stateFilePath.c_str()); + jaffarCommon::logger::log("[] Generating Sequence...\n"); + + jaffarCommon::logger::refreshTerminal(); + + // Creating emulator instance + nlohmann::json emulatorConfig; + emulatorConfig["Controller 1 Type"] = controller1Type; + emulatorConfig["Controller 2 Type"] = controller2Type; + NESInstance e(emulatorConfig); + + // Loading ROM File + std::string romFileData; + if (jaffarCommon::file::loadStringFromFile(romFileData, romFilePath) == false) JAFFAR_THROW_LOGIC("Could not rom file: %s\n", romFilePath.c_str()); + e.loadROM((uint8_t *)romFileData.data(), romFileData.size()); + + // If an initial state is provided, load it now + if (stateFilePath != "") + { + std::string stateFileData; + if (jaffarCommon::file::loadStringFromFile(stateFileData, stateFilePath) == false) JAFFAR_THROW_LOGIC("Could not initial state file: %s\n", stateFilePath.c_str()); + jaffarCommon::deserializer::Contiguous deserializer(stateFileData.data()); + e.deserializeState(deserializer); + } + + // Creating playback instance + auto p = PlaybackInstance(&e); + + // If render is enabled then, create window now + SDL_Window *window = nullptr; + if (disableRender == false) + { + window = launchOutputWindow(); + p.enableRendering(window); + } + + // Initializing playback instance + p.initialize(sequence); + + // Getting state size + auto stateSize = e.getFullStateSize(); + + // Flag to continue running playback + bool continueRunning = true; + + // Variable for current step in view + ssize_t sequenceLength = p.getSequenceLength(); + ssize_t currentStep = 0; + + // Flag to display frame information + bool showFrameInfo = true; + + // Interactive section + while (continueRunning) + { + // Updating display + if (disableRender == false) p.renderFrame(currentStep); + + // Getting input + const auto &inputString = p.getInputString(currentStep); + + // Getting state hash + const auto hash = p.getStateHash(currentStep); + + // Getting state data + const auto stateData = p.getStateData(currentStep); + + // Printing data and commands + if (showFrameInfo) + { + jaffarCommon::logger::clearTerminal(); + + jaffarCommon::logger::log("[] ----------------------------------------------------------------\n"); + jaffarCommon::logger::log("[] Current Step #: %lu / %lu\n", currentStep + 1, sequenceLength); + jaffarCommon::logger::log("[] Input: %s\n", inputString.c_str()); + jaffarCommon::logger::log("[] State Hash: 0x%lX%lX\n", hash.first, hash.second); + jaffarCommon::logger::log("[] Paddle X: %u\n", e.getLowMem()[0x11A]); + + // Only print commands if not in reproduce mode + if (isReproduce == false) jaffarCommon::logger::log("[] Commands: n: -1 m: +1 | h: -10 | j: +10 | y: -100 | u: +100 | k: -1000 | i: +1000 | s: quicksave | p: play | q: quit\n"); + + jaffarCommon::logger::refreshTerminal(); + } + + // Resetting show frame info flag + showFrameInfo = true; + + // Get command + auto command = jaffarCommon::logger::waitForKeyPress(); + + // Advance/Rewind commands + if (command == 'n') currentStep = currentStep - 1; + if (command == 'm') currentStep = currentStep + 1; + if (command == 'h') currentStep = currentStep - 10; + if (command == 'j') currentStep = currentStep + 10; + if (command == 'y') currentStep = currentStep - 100; + if (command == 'u') currentStep = currentStep + 100; + if (command == 'k') currentStep = currentStep - 1000; + if (command == 'i') currentStep = currentStep + 1000; + + // Correct current step if requested more than possible + if (currentStep < 0) currentStep = 0; + if (currentStep >= sequenceLength) currentStep = sequenceLength - 1; + + // Quicksave creation command + if (command == 's') + { + // Storing state file + std::string saveFileName = "quicksave.state"; + + std::string saveData; + saveData.resize(stateSize); + memcpy(saveData.data(), stateData, stateSize); + if (jaffarCommon::file::saveStringToFile(saveData, saveFileName.c_str()) == false) JAFFAR_THROW_LOGIC("[ERROR] Could not save state file: %s\n", saveFileName.c_str()); + jaffarCommon::logger::log("[] Saved state to %s\n", saveFileName.c_str()); + + // Do no show frame info again after this action + showFrameInfo = false; + } + + // Start playback from current point + if (command == 'p') isReproduce = true; + + // Start playback from current point + if (command == 'q') continueRunning = false; + } + + // If render is enabled then, close window now + if (disableRender == false) closeOutputWindow(window); + + // Ending ncurses window + jaffarCommon::logger::finalizeTerminal(); +} diff --git a/quicknes/source/quickNES/meson.build b/quicknes/source/quickNES/meson.build new file mode 100644 index 00000000000..bba4cf40205 --- /dev/null +++ b/quicknes/source/quickNES/meson.build @@ -0,0 +1,80 @@ +# quickNES Core sources + +quickNESSrc = [ + 'core/nes_emu/abstract_file.cpp', + 'core/nes_emu/apu_state.cpp', + 'core/nes_emu/Blip_Buffer.cpp', + 'core/nes_emu/Effects_Buffer.cpp', + 'core/nes_emu/Mapper_Fme7.cpp', + 'core/nes_emu/Mapper_Mmc5.cpp', + 'core/nes_emu/Mapper_Namco106.cpp', + 'core/nes_emu/Mapper_Vrc6.cpp', + 'core/nes_emu/misc_mappers.cpp', + 'core/nes_emu/Mapper_15.cpp', + 'core/nes_emu/Mapper_60.cpp', + 'core/nes_emu/Multi_Buffer.cpp', + 'core/nes_emu/Nes_Apu.cpp', + 'core/nes_emu/Nes_Buffer.cpp', + 'core/nes_emu/Nes_Cart.cpp', + 'core/nes_emu/Nes_Core.cpp', + 'core/nes_emu/Nes_Cpu.cpp', + 'core/nes_emu/nes_data.cpp', + 'core/nes_emu/Nes_Effects_Buffer.cpp', + 'core/nes_emu/Nes_Emu.cpp', + 'core/nes_emu/Nes_File.cpp', + 'core/nes_emu/Nes_Fme7_Apu.cpp', + 'core/nes_emu/Nes_Mapper.cpp', + 'core/nes_emu/nes_mappers.cpp', + 'core/nes_emu/Nes_Mmc1.cpp', + 'core/nes_emu/Nes_Mmc3.cpp', + 'core/nes_emu/Mapper_70.cpp', + 'core/nes_emu/Mapper_Misc.cpp', + 'core/nes_emu/Mapper_Unrom512.cpp', + 'core/nes_emu/Mapper_Vrc1.cpp', + 'core/nes_emu/Mapper_Vrc3.cpp', + 'core/nes_emu/Mapper_Vrc2_4.cpp', + 'core/nes_emu/Mapper_Vrc7.cpp', + 'core/nes_emu/Nes_Vrc7.cpp', + 'core/nes_emu/emu2413.cpp', + 'core/nes_emu/emu2413_state.cpp', + 'core/nes_emu/Nes_Namco_Apu.cpp', + 'core/nes_emu/Mmc24.cpp', + 'core/nes_emu/Nes_Oscs.cpp', + 'core/nes_emu/Nes_Ppu.cpp', + 'core/nes_emu/Nes_Ppu_Impl.cpp', + 'core/nes_emu/Nes_Ppu_Rendering.cpp', + 'core/nes_emu/Nes_State.cpp', + 'core/nes_emu/nes_util.cpp', + 'core/nes_emu/Nes_Vrc6_Apu.cpp', + 'core/nes_emu/Data_Reader.cpp', + 'core/nes_emu/Mappers.cpp', + 'core/nes_emu/Mapper_74x161x162x32.cpp', + 'core/nes_emu/Mapper_180.cpp', + 'core/nes_emu/Mapper_193.cpp', + 'core/nes_emu/Mapper_240.cpp', + 'core/nes_emu/Mapper_241.cpp', + 'core/nes_emu/Mapper_244.cpp', + 'core/nes_emu/Mapper_246.cpp', + 'core/nes_emu/Mapper_AveNina.cpp', + 'core/nes_emu/Mapper_IremG101.cpp', + 'core/nes_emu/Mapper_IremTamS1.cpp', + 'core/nes_emu/Mapper_JalecoJF11.cpp', + 'core/nes_emu/Mapper_Namco54xx.cpp', + 'core/nes_emu/Mapper_Sunsoft1.cpp', + 'core/nes_emu/Mapper_Sunsoft2.cpp', + 'core/nes_emu/Mapper_TaitoX1005.cpp', + 'core/nes_emu/Mapper_TaitoTC0190.cpp', + 'core/nes_emu/Mapper_Un1rom.cpp', + 'core/nes_emu/nes_ntsc.cpp' +] + +# quickNES Core Configuration + + quickNESDependency = declare_dependency( + compile_args : [ ], + include_directories : include_directories(['.', 'core/nes_emu']), + sources : [ quickNESSrc ], + dependencies : [ + dependency('sdl2'), + ] + ) diff --git a/quicknes/source/quickNES/nesInstance.hpp b/quicknes/source/quickNES/nesInstance.hpp new file mode 100644 index 00000000000..2bd1babf655 --- /dev/null +++ b/quicknes/source/quickNES/nesInstance.hpp @@ -0,0 +1,85 @@ +#pragma once + +#include "../nesInstanceBase.hpp" +#include "core/nes_emu/Nes_Emu.h" +#include "core/nes_emu/Nes_State.h" +#include "jaffarCommon/deserializers/base.hpp" +#include "jaffarCommon/serializers/base.hpp" + +#define _DUMMY_SIZE 65536 + +typedef Nes_Emu emulator_t; + +extern void register_misc_mappers(); +extern void register_extra_mappers(); +extern void register_mapper_70(); + +class NESInstance final : public NESInstanceBase +{ + public: + NESInstance(const nlohmann::json &config) : NESInstanceBase(config) + { + // If running the original QuickNES, register extra mappers now + register_misc_mappers(); + register_extra_mappers(); + register_mapper_70(); + } + + uint8_t *getLowMem() const override { return _nes.low_mem(); }; + size_t getLowMemSize() const override { return 0x800; }; + + void serializeState(jaffarCommon::serializer::Base &serializer) const override + { + Mem_Writer w(serializer.getOutputDataBuffer(), _stateSize, 0); + Auto_File_Writer a(w); + _nes.save_state(a); + } + + void deserializeState(jaffarCommon::deserializer::Base &deserializer) override + { + Mem_File_Reader r(deserializer.getInputDataBuffer(), _stateSize); + Auto_File_Reader a(r); + _nes.load_state(a); + } + + inline size_t getFullStateSize() const override + { + uint8_t *data = (uint8_t *)malloc(_DUMMY_SIZE); + Mem_Writer w(data, _DUMMY_SIZE); + Auto_File_Writer a(w); + _nes.save_state(a); + free(data); + return w.size(); + } + + inline size_t getDifferentialStateSize() const override { return getFullStateSize(); } + + std::string getCoreName() const override { return "QuickNES"; } + void doSoftReset() override { _nes.reset(false); } + void doHardReset() override { _nes.reset(true); } + + void *getInternalEmulatorPointer() override { return &_nes; } + + void advanceState(const jaffar::input_t &input) override + { + if (_doRendering == true) _nes.emulate_frame(input.port1, input.port2); + if (_doRendering == false) _nes.emulate_skip_frame(input.port1, input.port2); + } + + protected: + bool loadROMImpl(const uint8_t *romData, const size_t romSize) override + { + // Loading rom data + Mem_File_Reader romReader(romData, (int)romSize); + Auto_File_Reader romFile(romReader); + auto result = _nes.load_ines(romFile); + return result == 0; + } + + void enableStateBlockImpl(const std::string &block) override {}; + void disableStateBlockImpl(const std::string &block) override {}; + + private: + // Emulator instance + emulator_t _nes; +}; diff --git a/quicknes/source/quickerNES/core/apu/NESEffectsBuffer.cpp b/quicknes/source/quickerNES/core/apu/NESEffectsBuffer.cpp new file mode 100644 index 00000000000..83955c5e716 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/NESEffectsBuffer.cpp @@ -0,0 +1,85 @@ + +// Nes_Emu 0.7.0. http://www.slack.net/~ant/libs/ + +#include "NESEffectsBuffer.hpp" +#include "apu.hpp" + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +Nes_Effects_Buffer::Nes_Effects_Buffer() : Effects_Buffer(true) // nes never uses stereo channels +{ + config_t c; + c.effects_enabled = false; + config(c); +} + +Nes_Effects_Buffer::~Nes_Effects_Buffer() {} + +void Nes_Effects_Buffer::enable_nonlinearity(bool b) +{ + if (b) clear(); + Apu *apu = nonlin.enable(b, channel(2).center); + apu->osc_output(0, channel(0).center); + apu->osc_output(1, channel(1).center); +} + +void Nes_Effects_Buffer::config(const config_t &in) +{ + config_t c = in; + if (!c.effects_enabled) + { + // effects must always be enabled to keep separate buffers, so + // set parameters to be equivalent to disabled + c.pan_1 = 0; + c.pan_2 = 0; + c.echo_level = 0; + c.reverb_level = 0; + c.effects_enabled = true; + } + Effects_Buffer::config(c); +} + +const char *Nes_Effects_Buffer::set_sample_rate(long rate, int msec) +{ + enable_nonlinearity(nonlin.enabled); // reapply + return Effects_Buffer::set_sample_rate(rate, msec); +} + +void Nes_Effects_Buffer::clear() +{ + nonlin.clear(); + Effects_Buffer::clear(); +} + +Nes_Effects_Buffer::channel_t Nes_Effects_Buffer::channel(int i) +{ + return Effects_Buffer::channel((2 <= i && i <= 4) ? 2 : i & 1); +} + +long Nes_Effects_Buffer::read_samples(blip_sample_t *out, long count) +{ + count = 2 * nonlin.make_nonlinear(*channel(2).center, count / 2); + return Effects_Buffer::read_samples(out, count); +} + +void Nes_Effects_Buffer::SaveAudioBufferState() +{ +} + +void Nes_Effects_Buffer::RestoreAudioBufferState() +{ +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/NESEffectsBuffer.hpp b/quicknes/source/quickerNES/core/apu/NESEffectsBuffer.hpp new file mode 100644 index 00000000000..1eeff75e533 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/NESEffectsBuffer.hpp @@ -0,0 +1,41 @@ +#pragma once + +// Effects_Buffer with non-linear sound +// Nes_Emu 0.7.0 + +#include "buffer.hpp" +#include "effectsBuffer.hpp" + +namespace quickerNES +{ + +// Effects_Buffer uses several buffers and outputs stereo sample pairs. +class Nes_Effects_Buffer : public Effects_Buffer +{ + public: + Nes_Effects_Buffer(); + ~Nes_Effects_Buffer(); + + // Setup APU for use with buffer, including setting its output to this buffer. + // If you're using Nes_Emu, this is automatically called for you. + void set_apu(Apu *apu) { nonlin.set_apu(apu); } + + // Enable/disable non-linear output + void enable_nonlinearity(bool = true); + + // See Effects_Buffer.h for reference + const char *set_sample_rate(long rate, int msec = blip_default_length); + void config(const config_t &); + void clear(); + channel_t channel(int); + long read_samples(blip_sample_t *, long); + + void SaveAudioBufferState(); + void RestoreAudioBufferState(); + + private: + Nonlinearizer nonlin; + friend Multi_Buffer *set_apu(Nes_Effects_Buffer *, Apu *); +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/apu.cpp b/quicknes/source/quickerNES/core/apu/apu.cpp new file mode 100644 index 00000000000..bd72f34bff6 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/apu.cpp @@ -0,0 +1,375 @@ +// Snd_Emu 0.1.7. http://www.slack.net/~ant/ + +#include "apu.hpp" + +/* Copyright (C) 2003-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +int const amp_range = 15; + +Apu::Apu() : square1(&square_synth), + square2(&square_synth) +{ + dmc.apu = this; + dmc.prg_reader = 0; + irq_notifier_ = 0; + + oscs[0] = &square1; + oscs[1] = &square2; + oscs[2] = ▵ + oscs[3] = &noise; + oscs[4] = &dmc; + + output(0); + volume(1.0); + reset(false); +} + +Apu::~Apu() +{ +} + +void Apu::treble_eq(const blip_eq_t &eq) +{ + square_synth.treble_eq(eq); + triangle.synth.treble_eq(eq); + noise.synth.treble_eq(eq); + dmc.synth.treble_eq(eq); +} + +void Apu::enable_nonlinear(double v) +{ + dmc.nonlinear = true; + square_synth.volume(1.3 * 0.25751258 / 0.742467605 * 0.25 / amp_range * v); + + const double tnd = 0.48 / 202 * nonlinear_tnd_gain(); + triangle.synth.volume(3.0 * tnd); + noise.synth.volume(2.0 * tnd); + dmc.synth.volume(tnd); + + square1.last_amp = 0; + square2.last_amp = 0; + triangle.last_amp = 0; + noise.last_amp = 0; + dmc.last_amp = 0; +} + +void Apu::volume(double v) +{ + dmc.nonlinear = false; + square_synth.volume(0.1128 / amp_range * v); + triangle.synth.volume(0.12765 / amp_range * v); + noise.synth.volume(0.0741 / amp_range * v); + dmc.synth.volume(0.42545 / 127 * v); +} + +void Apu::output(Blip_Buffer *buffer) +{ + for (int i = 0; i < osc_count; i++) + osc_output(i, buffer); +} + +void Apu::reset(bool pal_mode, int initial_dmc_dac) +{ + // to do: time pal frame periods exactly + frame_period = pal_mode ? 8314 : 7458; + dmc.pal_mode = pal_mode; + + square1.reset(); + square2.reset(); + triangle.reset(); + noise.reset(); + dmc.reset(); + + last_time = 0; + last_dmc_time = 0; + osc_enables = 0; + irq_flag = false; + earliest_irq_ = no_irq; + frame_delay = 1; + write_register(0, 0x4017, 0x00); + write_register(0, 0x4015, 0x00); + + for (nes_addr_t addr = start_addr; addr <= 0x4013; addr++) + write_register(0, addr, (addr & 3) ? 0x00 : 0x10); + + dmc.dac = initial_dmc_dac; + if (!dmc.nonlinear) + triangle.last_amp = 15; + // if ( !dmc.nonlinear ) // to do: remove? + // dmc.last_amp = initial_dmc_dac; // prevent output transition +} + +void Apu::irq_changed() +{ + nes_time_t new_irq = dmc.next_irq; + if (dmc.irq_flag | irq_flag) + { + new_irq = 0; + } + else if (new_irq > next_irq) + { + new_irq = next_irq; + } + + if (new_irq != earliest_irq_) + { + earliest_irq_ = new_irq; + if (irq_notifier_) + irq_notifier_(irq_data); + } +} + +// frames + +void Apu::run_until(nes_time_t end_time) +{ + if (end_time > next_dmc_read_time()) + { + nes_time_t start = last_dmc_time; + last_dmc_time = end_time; + dmc.run(start, end_time); + } +} + +void Apu::run_until_(nes_time_t end_time) +{ + if (end_time == last_time) + return; + + if (last_dmc_time < end_time) + { + nes_time_t start = last_dmc_time; + last_dmc_time = end_time; + dmc.run(start, end_time); + } + + while (true) + { + // earlier of next frame time or end time + nes_time_t time = last_time + frame_delay; + if (time > end_time) + time = end_time; + frame_delay -= time - last_time; + + // run oscs to present + square1.run(last_time, time); + square2.run(last_time, time); + triangle.run(last_time, time); + noise.run(last_time, time); + last_time = time; + + if (time == end_time) + break; // no more frames to run + + // take frame-specific actions + frame_delay = frame_period; + switch (frame++) + { + case 0: + if (!(frame_mode & 0xc0)) + { + next_irq = time + frame_period * 4 + 1; + irq_flag = true; + } + // fall through + case 2: + // clock length and sweep on frames 0 and 2 + square1.clock_length(0x20); + square2.clock_length(0x20); + noise.clock_length(0x20); + triangle.clock_length(0x80); // different bit for halt flag on triangle + + square1.clock_sweep(-1); + square2.clock_sweep(0); + break; + + case 1: + // frame 1 is slightly shorter + frame_delay -= 2; + break; + + case 3: + frame = 0; + + // frame 3 is almost twice as long in mode 1 + if (frame_mode & 0x80) + frame_delay += frame_period - 6; + break; + } + + // clock envelopes and linear counter every frame + triangle.clock_linear_counter(); + square1.clock_envelope(); + square2.clock_envelope(); + noise.clock_envelope(); + } +} + +template +inline void zero_apu_osc(T *osc, nes_time_t time) +{ + Blip_Buffer *output = osc->output; + int last_amp = osc->last_amp; + osc->last_amp = 0; + if (output && last_amp) + osc->synth.offset(time, -last_amp, output); +} + +void Apu::end_frame(nes_time_t end_time) +{ + if (end_time > last_time) + run_until_(end_time); + + if (dmc.nonlinear) + { + zero_apu_osc(&square1, last_time); + zero_apu_osc(&square2, last_time); + zero_apu_osc(&triangle, last_time); + zero_apu_osc(&noise, last_time); + zero_apu_osc(&dmc, last_time); + } + + // make times relative to new frame + last_time -= end_time; + last_dmc_time -= end_time; + + if (next_irq != no_irq) + { + next_irq -= end_time; + } + if (dmc.next_irq != no_irq) + { + dmc.next_irq -= end_time; + } + if (earliest_irq_ != no_irq) + { + earliest_irq_ -= end_time; + if (earliest_irq_ < 0) + earliest_irq_ = 0; + } +} + +// registers + +static const unsigned char length_table[0x20] = { + 0x0A, 0xFE, 0x14, 0x02, 0x28, 0x04, 0x50, 0x06, 0xA0, 0x08, 0x3C, 0x0A, 0x0E, 0x0C, 0x1A, 0x0E, 0x0C, 0x10, 0x18, 0x12, 0x30, 0x14, 0x60, 0x16, 0xC0, 0x18, 0x48, 0x1A, 0x10, 0x1C, 0x20, 0x1E}; + +void Apu::write_register(nes_time_t time, nes_addr_t addr, int data) +{ + // Ignore addresses outside range + if (addr < start_addr || end_addr < addr) + return; + + run_until_(time); + + if (addr < 0x4014) + { + // Write to channel + int osc_index = (addr - start_addr) >> 2; + Osc *osc = oscs[osc_index]; + + int reg = addr & 3; + osc->regs[reg] = data; + osc->reg_written[reg] = true; + + if (osc_index == 4) + { + // handle DMC specially + dmc.write_register(reg, data); + } + else if (reg == 3) + { + // load length counter + if ((osc_enables >> osc_index) & 1) + osc->length_counter = length_table[(data >> 3) & 0x1f]; + + // reset square phase + if (osc_index < 2) + ((Square *)osc)->phase = Square::phase_range - 1; + } + } + else if (addr == 0x4015) + { + // Channel enables + for (int i = osc_count; i--;) + if (!((data >> i) & 1)) + oscs[i]->length_counter = 0; + + bool recalc_irq = dmc.irq_flag; + dmc.irq_flag = false; + + int old_enables = osc_enables; + osc_enables = data; + if (!(data & 0x10)) + { + dmc.next_irq = no_irq; + recalc_irq = true; + } + else if (!(old_enables & 0x10)) + { + dmc.start(); // dmc just enabled + } + + if (recalc_irq) + irq_changed(); + } + else if (addr == 0x4017) + { + // Frame mode + frame_mode = data; + + bool irq_enabled = !(data & 0x40); + irq_flag &= irq_enabled; + next_irq = no_irq; + + // mode 1 + frame_delay = (frame_delay & 1); + frame = 0; + + if (!(data & 0x80)) + { + // mode 0 + frame = 1; + frame_delay += frame_period; + if (irq_enabled) + next_irq = time + frame_delay + frame_period * 3; + } + + irq_changed(); + } +} + +int Apu::read_status(nes_time_t time) +{ + run_until_(time - 1); + + int result = (dmc.irq_flag << 7) | (irq_flag << 6); + + for (int i = 0; i < osc_count; i++) + if (oscs[i]->length_counter) + result |= 1 << i; + + run_until_(time); + + if (irq_flag) + { + irq_flag = false; + irq_changed(); + } + + return result; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/apu.hpp b/quicknes/source/quickerNES/core/apu/apu.hpp new file mode 100644 index 00000000000..c93791f8a0a --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/apu.hpp @@ -0,0 +1,363 @@ +#pragma once + +// NES 2A03 APU sound chip emulator +// Snd_Emu 0.1.7 + +#include "oscs.hpp" +#include +#include + +namespace quickerNES +{ + +class Apu +{ + public: + typedef uint8_t env_t[3]; + /*struct env_t { + uint8_t delay; + uint8_t env; + uint8_t written; + };*/ + + struct apu_t + { + uint8_t w40xx[0x14]; // $4000-$4013 + uint8_t w4015; // enables + uint8_t w4017; // mode + uint16_t frame_delay; + uint8_t frame_step; + uint8_t irq_flag; + }; + + struct square_t + { + uint16_t delay; + env_t env; + uint8_t length_counter; + uint8_t phase; + uint8_t swp_delay; + uint8_t swp_reset; + uint8_t unused2[1]; + }; + + struct triangle_t + { + uint16_t delay; + uint8_t length_counter; + uint8_t phase; + uint8_t linear_counter; + uint8_t linear_mode; + }; + + struct noise_t + { + uint16_t delay; + env_t env; + uint8_t length_counter; + uint16_t shift_reg; + }; + + struct dmc_t + { + uint16_t delay; + uint16_t remain; + uint16_t addr; + uint8_t buf; + uint8_t bits_remain; + uint8_t bits; + uint8_t buf_full; + uint8_t silence; + uint8_t irq_flag; + }; + + struct apu_state_t + { + apu_t apu; + square_t square1; + square_t square2; + triangle_t triangle; + noise_t noise; + dmc_t dmc; + }; + static_assert(sizeof(apu_state_t) == 72); + + Apu(); + ~Apu(); + + // Set buffer to generate all sound into, or disable sound if NULL + void output(Blip_Buffer *); + + // Set memory reader callback used by DMC oscillator to fetch samples. + // When callback is invoked, 'user_data' is passed unchanged as the + // first parameter. + void dmc_reader(int (*callback)(void *user_data, nes_addr_t), void *user_data = nullptr); + + // All time values are the number of CPU clock cycles relative to the + // beginning of the current time frame. Before resetting the CPU clock + // count, call end_frame( last_cpu_time ). + + // Write to register (0x4000-0x4017, except 0x4014 and 0x4016) + static const uint16_t start_addr = 0x4000; + static const uint16_t end_addr = 0x4017; + void write_register(nes_time_t, nes_addr_t, int data); + + // Read from status register at 0x4015 + static const uint16_t status_addr = 0x4015; + int read_status(nes_time_t); + + // Run all oscillators up to specified time, end current time frame, then + // start a new time frame at time 0. Time frames have no effect on emulation + // and each can be whatever length is convenient. + void end_frame(nes_time_t); + + // Additional optional features (can be ignored without any problem) + + // Reset internal frame counter, registers, and all oscillators. + // Use PAL timing if pal_timing is true, otherwise use NTSC timing. + // Set the DMC oscillator's initial DAC value to initial_dmc_dac without + // any audible click. + void reset(bool pal_timing = false, int initial_dmc_dac = 0); + + // Save/load exact emulation state + void save_state(apu_state_t *out) const; + void load_state(apu_state_t const &); + + // Set overall volume (default is 1.0) + void volume(double); + + // Set treble equalization (see notes.txt) + void treble_eq(const blip_eq_t &); + + // Set sound output of specific oscillator to buffer. If buffer is NULL, + // the specified oscillator is muted and emulation accuracy is reduced. + // The oscillators are indexed as follows: 0) Square 1, 1) Square 2, + // 2) Triangle, 3) Noise, 4) DMC. + static const uint16_t osc_count = 5; + void osc_output(int index, Blip_Buffer *buffer); + + // Set IRQ time callback that is invoked when the time of earliest IRQ + // may have changed, or NULL to disable. When callback is invoked, + // 'user_data' is passed unchanged as the first parameter. + void irq_notifier(void (*callback)(void *user_data), void *user_data = nullptr); + + // Get time that APU-generated IRQ will occur if no further register reads + // or writes occur. If IRQ is already pending, returns irq_waiting. If no + // IRQ will occur, returns no_irq. + static const uint64_t no_irq = LONG_MAX / 2 + 1; + static const uint16_t irq_waiting = 0; + nes_time_t earliest_irq(nes_time_t) const; + + // Count number of DMC reads that would occur if 'run_until( t )' were executed. + // If last_read is not NULL, set *last_read to the earliest time that + // 'count_dmc_reads( time )' would result in the same result. + int count_dmc_reads(nes_time_t t, nes_time_t *last_read = nullptr) const; + + // Time when next DMC memory read will occur + nes_time_t next_dmc_read_time() const; + + // Run DMC until specified time, so that any DMC memory reads can be + // accounted for (i.e. inserting CPU wait states). + void run_until(nes_time_t); + + // End of public interface. + private: + friend class Nonlinearizer; + void enable_nonlinear(double volume); + static double nonlinear_tnd_gain() { return 0.75; } + + private: + friend struct Dmc; + + // noncopyable + Apu(const Apu &); + Apu &operator=(const Apu &); + + Osc *oscs[osc_count]; + Square square1; + Square square2; + Noise noise; + Triangle triangle; + Dmc dmc; + + nes_time_t last_time; // has been run until this time in current frame + nes_time_t last_dmc_time; + nes_time_t earliest_irq_; + nes_time_t next_irq; + int frame_period; + int frame_delay; // cycles until frame counter runs next + int frame; // current frame (0-3) + int osc_enables; + int frame_mode; + bool irq_flag; + void (*irq_notifier_)(void *user_data); + void *irq_data; + Square::Synth square_synth; // shared by squares + + void irq_changed(); + void state_restored(); + void run_until_(nes_time_t); + + // TODO: remove + friend class Core; +}; + +inline void Apu::osc_output(int osc, Blip_Buffer *buf) +{ + oscs[osc]->output = buf; +} + +inline nes_time_t Apu::earliest_irq(nes_time_t) const +{ + return earliest_irq_; +} + +inline void Apu::dmc_reader(int (*func)(void *, nes_addr_t), void *user_data) +{ + dmc.prg_reader_data = user_data; + dmc.prg_reader = func; +} + +inline void Apu::irq_notifier(void (*func)(void *user_data), void *user_data) +{ + irq_notifier_ = func; + irq_data = user_data; +} + +inline int Apu::count_dmc_reads(nes_time_t time, nes_time_t *last_read) const +{ + return dmc.count_reads(time, last_read); +} + +inline nes_time_t Dmc::next_read_time() const +{ + if (length_counter == 0) + return Apu::no_irq; // not reading + + return apu->last_dmc_time + delay + long(bits_remain - 1) * period; +} + +inline nes_time_t Apu::next_dmc_read_time() const { return dmc.next_read_time(); } + +template +struct apu_reflection +{ +#define REFLECT(apu, state) (mode ? void(apu = state) : void(state = apu)) + + static void reflect_env(Apu::env_t *state, Envelope &osc) + { + REFLECT((*state)[0], osc.env_delay); + REFLECT((*state)[1], osc.envelope); + REFLECT((*state)[2], osc.reg_written[3]); + } + + static void reflect_square(Apu::square_t &state, Square &osc) + { + reflect_env(&state.env, osc); + REFLECT(state.delay, osc.delay); + REFLECT(state.length_counter, osc.length_counter); + REFLECT(state.phase, osc.phase); + REFLECT(state.swp_delay, osc.sweep_delay); + REFLECT(state.swp_reset, osc.reg_written[1]); + } + + static void reflect_triangle(Apu::triangle_t &state, Triangle &osc) + { + REFLECT(state.delay, osc.delay); + REFLECT(state.length_counter, osc.length_counter); + REFLECT(state.linear_counter, osc.linear_counter); + REFLECT(state.phase, osc.phase); + REFLECT(state.linear_mode, osc.reg_written[3]); + } + + static void reflect_noise(Apu::noise_t &state, Noise &osc) + { + reflect_env(&state.env, osc); + REFLECT(state.delay, osc.delay); + REFLECT(state.length_counter, osc.length_counter); + REFLECT(state.shift_reg, osc.noise); + } + + static void reflect_dmc(Apu::dmc_t &state, Dmc &osc) + { + REFLECT(state.delay, osc.delay); + REFLECT(state.remain, osc.length_counter); + REFLECT(state.buf, osc.buf); + REFLECT(state.bits_remain, osc.bits_remain); + REFLECT(state.bits, osc.bits); + REFLECT(state.buf_full, osc.buf_full); + REFLECT(state.silence, osc.silence); + REFLECT(state.irq_flag, osc.irq_flag); + if (mode) + state.addr = osc.address | 0x8000; + else + osc.address = state.addr & 0x7fff; + } +}; + +inline void Apu::save_state(apu_state_t *state) const +{ + for (int i = 0; i < osc_count * 4; i++) + { + int index = i >> 2; + state->apu.w40xx[i] = oscs[index]->regs[i & 3]; + // if ( index < 4 ) + // state->length_counters [index] = oscs [index]->length_counter; + } + state->apu.w40xx[0x11] = dmc.dac; + + state->apu.w4015 = osc_enables; + state->apu.w4017 = frame_mode; + state->apu.frame_delay = frame_delay; + state->apu.frame_step = frame; + state->apu.irq_flag = irq_flag; + + typedef apu_reflection<1> refl; + Apu &apu = *(Apu *)this; // const_cast + refl::reflect_square(state->square1, apu.square1); + refl::reflect_square(state->square2, apu.square2); + refl::reflect_triangle(state->triangle, apu.triangle); + refl::reflect_noise(state->noise, apu.noise); + refl::reflect_dmc(state->dmc, apu.dmc); +} + +inline void Apu::load_state(apu_state_t const &state) +{ + reset(); + + write_register(0, 0x4017, state.apu.w4017); + write_register(0, 0x4015, state.apu.w4015); + osc_enables = state.apu.w4015; // DMC clears bit 4 + + for (int i = 0; i < osc_count * 4; i++) + { + int n = state.apu.w40xx[i]; + int index = i >> 2; + oscs[index]->regs[i & 3] = n; + write_register(0, 0x4000 + i, n); + // if ( index < 4 ) + // oscs [index]->length_counter = state.length_counters [index]; + } + + frame_delay = state.apu.frame_delay; + frame = state.apu.frame_step; + irq_flag = state.apu.irq_flag; + + typedef apu_reflection<0> refl; + apu_state_t &st = (apu_state_t &)state; // const_cast + refl::reflect_square(st.square1, square1); + refl::reflect_square(st.square2, square2); + refl::reflect_triangle(st.triangle, triangle); + refl::reflect_noise(st.noise, noise); + refl::reflect_dmc(st.dmc, dmc); + dmc.recalc_irq(); + + // force channels to have correct last_amp levels after load state + square1.run(last_time, last_time); + square2.run(last_time, last_time); + triangle.run(last_time, last_time); + noise.run(last_time, last_time); + dmc.run(last_time, last_time); +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/blipBuffer.cpp b/quicknes/source/quickerNES/core/apu/blipBuffer.cpp new file mode 100644 index 00000000000..153c5f1b9fd --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/blipBuffer.cpp @@ -0,0 +1,422 @@ + +// Blip_Buffer 0.4.0. http://www.slack.net/~ant/ + +#include "blipBuffer.hpp" +#include +#include +#include +#include + +/* Copyright (C) 2003-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +int const buffer_extra = blip_widest_impulse_ + 2; + +Blip_Buffer::Blip_Buffer() +{ + factor_ = LONG_MAX; + offset_ = 0; + buffer_ = 0; + buffer_size_ = 0; + sample_rate_ = 0; + reader_accum = 0; + bass_shift = 0; + clock_rate_ = 0; + bass_freq_ = 16; + length_ = 0; + + extra_length = length_; + extra_offset = offset_; + extra_reader_accum = reader_accum; + memset(extra_buffer, 0, sizeof(extra_buffer)); +} + +Blip_Buffer::~Blip_Buffer() +{ + if (buffer_) + free(buffer_); +} + +void Blip_Buffer::clear(int entire_buffer) +{ + offset_ = 0; + reader_accum = 0; + if (buffer_) + { + long count = (entire_buffer ? buffer_size_ : samples_avail()); + memset(buffer_, 0, (count + buffer_extra) * sizeof(buf_t_)); + } +} + +const char *Blip_Buffer::set_sample_rate(long new_rate, int msec) +{ + // start with maximum length that resampled time can represent + long new_size = (ULONG_MAX >> BLIP_BUFFER_ACCURACY) - buffer_extra - 64; + if (msec != blip_max_length) + { + long s = (new_rate * (msec + 1) + 999) / 1000; + if (s < new_size) + new_size = s; + } + + if (buffer_size_ != new_size) + { + void *p = realloc(buffer_, (new_size + buffer_extra) * sizeof *buffer_); + if (!p) + return "Out of memory"; + buffer_ = (buf_t_ *)p; + } + + buffer_size_ = new_size; + // update things based on the sample rate + sample_rate_ = new_rate; + length_ = new_size * 1000 / new_rate - 1; + if (clock_rate_) + clock_rate(clock_rate_); + bass_freq(bass_freq_); + + clear(); + + return 0; // success +} + +blip_resampled_time_t Blip_Buffer::clock_rate_factor(long clock_rate) const +{ + double ratio = (double)sample_rate_ / clock_rate; + long factor = (long)floor(ratio * (1L << BLIP_BUFFER_ACCURACY) + 0.5); + return (blip_resampled_time_t)factor; +} + +void Blip_Buffer::bass_freq(int freq) +{ + bass_freq_ = freq; + int shift = 31; + if (freq > 0) + { + shift = 13; + long f = (freq << 16) / sample_rate_; + while ((f >>= 1) && --shift) {} + } + bass_shift = shift; +} + +void Blip_Buffer::end_frame(blip_time_t t) +{ + offset_ += t * factor_; +} + +void Blip_Buffer::remove_silence(long count) +{ + offset_ -= (blip_resampled_time_t)count << BLIP_BUFFER_ACCURACY; +} + +long Blip_Buffer::count_samples(blip_time_t t) const +{ + unsigned long last_sample = resampled_time(t) >> BLIP_BUFFER_ACCURACY; + unsigned long first_sample = offset_ >> BLIP_BUFFER_ACCURACY; + return (long)(last_sample - first_sample); +} + +blip_time_t Blip_Buffer::count_clocks(long count) const +{ + if (count > buffer_size_) + count = buffer_size_; + blip_resampled_time_t time = (blip_resampled_time_t)count << BLIP_BUFFER_ACCURACY; + return (blip_time_t)((time - offset_ + factor_ - 1) / factor_); +} + +void Blip_Buffer::remove_samples(long count) +{ + if (count) + { + remove_silence(count); + + // copy remaining samples to beginning and clear old samples + long remain = samples_avail() + buffer_extra; + memmove(buffer_, buffer_ + count, remain * sizeof *buffer_); + memset(buffer_ + remain, 0, count * sizeof *buffer_); + } +} + +// Blip_Synth_ + +Blip_Synth_::Blip_Synth_(short *p, int w) : impulses(p), + width(w) +{ + volume_unit_ = 0.0; + kernel_unit = 0; + buf = 0; + last_amp = 0; + delta_factor = 0; +} + +// TODO: apparently this is defined elsewhere too +#define pi my_pi +static double const pi = 3.1415926535897932384626433832795029; + +static void gen_sinc(float *out, int count, double oversample, double treble, double cutoff) +{ + if (cutoff >= 0.999) + cutoff = 0.999; + + if (treble < -300.0) + treble = -300.0; + if (treble > 5.0) + treble = 5.0; + + double const maxh = 4096.0; + double const rolloff = pow(10.0, 1.0 / (maxh * 20.0) * treble / (1.0 - cutoff)); + double const pow_a_n = pow(rolloff, maxh - maxh * cutoff); + double const to_angle = pi / 2 / maxh / oversample; + for (int i = 0; i < count; i++) + { + double angle = ((i - count) * 2 + 1) * to_angle; + double c = rolloff * cos((maxh - 1.0) * angle) - cos(maxh * angle); + double cos_nc_angle = cos(maxh * cutoff * angle); + double cos_nc1_angle = cos((maxh * cutoff - 1.0) * angle); + double cos_angle = cos(angle); + + c = c * pow_a_n - rolloff * cos_nc1_angle + cos_nc_angle; + double d = 1.0 + rolloff * (rolloff - cos_angle - cos_angle); + double b = 2.0 - cos_angle - cos_angle; + double a = 1.0 - cos_angle - cos_nc_angle + cos_nc1_angle; + + out[i] = (float)((a * d + c * b) / (b * d)); // a / b + c / d + } +} + +void blip_eq_t::generate(float *out, int count) const +{ + // lower cutoff freq for narrow kernels with their wider transition band + // (8 points->1.49, 16 points->1.15) + double oversample = blip_res * 2.25 / count + 0.85; + double half_rate = sample_rate * 0.5; + if (cutoff_freq) + oversample = half_rate / cutoff_freq; + double cutoff = rolloff_freq * oversample / half_rate; + + gen_sinc(out, count, blip_res * oversample, treble, cutoff); + + // apply (half of) hamming window + double to_fraction = pi / (count - 1); + for (int i = count; i--;) + out[i] *= 0.54 - 0.46 * cos(i * to_fraction); +} + +void Blip_Synth_::adjust_impulse() +{ + // sum pairs for each phase and add error correction to end of first half + int const size = impulses_size(); + for (int p = blip_res; p-- >= blip_res / 2;) + { + int p2 = blip_res - 2 - p; + long error = kernel_unit; + for (int i = 1; i < size; i += blip_res) + { + error -= impulses[i + p]; + error -= impulses[i + p2]; + } + if (p == p2) + error /= 2; // phase = 0.5 impulse uses same half for both sides + impulses[size - blip_res + p] += error; + // printf( "error: %ld\n", error ); + } + + // for ( int i = blip_res; i--; printf( "\n" ) ) + // for ( int j = 0; j < width / 2; j++ ) + // printf( "%5ld,", impulses [j * blip_res + i + 1] ); +} + +void Blip_Synth_::treble_eq(blip_eq_t const &eq) +{ + float fimpulse[blip_res / 2 * (blip_widest_impulse_ - 1) + blip_res * 2]; + + int const half_size = blip_res / 2 * (width - 1); + eq.generate(&fimpulse[blip_res], half_size); + + int i; + + // need mirror slightly past center for calculation + for (i = blip_res; i--;) + fimpulse[blip_res + half_size + i] = fimpulse[blip_res + half_size - 1 - i]; + + // starts at 0 + for (i = 0; i < blip_res; i++) + fimpulse[i] = 0.0f; + + // find rescale factor + double total = 0.0; + for (i = 0; i < half_size; i++) + total += fimpulse[blip_res + i]; + + // double const base_unit = 44800.0 - 128 * 18; // allows treble up to +0 dB + // double const base_unit = 37888.0; // allows treble to +5 dB + double const base_unit = 32768.0; // necessary for blip_unscaled to work + double rescale = base_unit / 2 / total; + kernel_unit = (long)base_unit; + + // integrate, first difference, rescale, convert to int + double sum = 0.0; + double next = 0.0; + int const impulses_size = this->impulses_size(); + for (i = 0; i < impulses_size; i++) + { + impulses[i] = (short)floor((next - sum) * rescale + 0.5); + sum += fimpulse[i]; + next += fimpulse[i + blip_res]; + } + adjust_impulse(); + + // volume might require rescaling + double vol = volume_unit_; + if (vol) + { + volume_unit_ = 0.0; + volume_unit(vol); + } +} + +void Blip_Synth_::volume_unit(double new_unit) +{ + if (new_unit != volume_unit_) + { + // use default eq if it hasn't been set yet + if (!kernel_unit) + treble_eq(-8.0); + + volume_unit_ = new_unit; + double factor = new_unit * (1L << blip_sample_bits) / kernel_unit; + + if (factor > 0.0) + { + int shift = 0; + + // if unit is really small, might need to attenuate kernel + while (factor < 2.0) + { + shift++; + factor *= 2.0; + } + + if (shift) + { + kernel_unit >>= shift; + + // keep values positive to avoid round-towards-zero of sign-preserving + // right shift for negative values + long offset = 0x8000 + (1 << (shift - 1)); + long offset2 = 0x8000 >> shift; + for (int i = impulses_size(); i--;) + impulses[i] = (short)(((impulses[i] + offset) >> shift) - offset2); + adjust_impulse(); + } + } + delta_factor = (int)floor(factor + 0.5); + // printf( "delta_factor: %d, kernel_unit: %d\n", delta_factor, kernel_unit ); + } +} + +long Blip_Buffer::read_samples(blip_sample_t *out, long max_samples, int stereo) +{ + long count = samples_avail(); + if (count > max_samples) + count = max_samples; + + if (count) + { + int const sample_shift = blip_sample_bits - 16; + int const bass_shift = this->bass_shift; + long accum = reader_accum; + buf_t_ *in = buffer_; + + if (out != NULL) + { + if (!stereo) + { + for (long n = count; n--;) + { + long s = accum >> sample_shift; + accum -= accum >> bass_shift; + accum += *in++; + *out++ = (blip_sample_t)s; + + // clamp sample + if ((blip_sample_t)s != s) + out[-1] = (blip_sample_t)(0x7FFF - (s >> 24)); + } + } + else + { + for (long n = count; n--;) + { + long s = accum >> sample_shift; + accum -= accum >> bass_shift; + accum += *in++; + *out = (blip_sample_t)s; + out += 2; + + // clamp sample + if ((blip_sample_t)s != s) + out[-2] = (blip_sample_t)(0x7FFF - (s >> 24)); + } + } + } + else + { + // only run accumulator, do not output anything + for (long n = count; n--;) + { + accum -= accum >> bass_shift; + accum += *in++; + } + } + + reader_accum = accum; + remove_samples(count); + } + return count; +} + +void Blip_Buffer::mix_samples(blip_sample_t const *in, long count) +{ + buf_t_ *out = buffer_ + (offset_ >> BLIP_BUFFER_ACCURACY) + blip_widest_impulse_ / 2; + + int const sample_shift = blip_sample_bits - 16; + int prev = 0; + while (count--) + { + long s = (long)*in++ << sample_shift; + *out += s - prev; + prev = s; + ++out; + } + *out -= prev; +} + +void Blip_Buffer::SaveAudioBufferState() +{ + extra_length = length_; + extra_offset = offset_; + extra_reader_accum = reader_accum; + memcpy(extra_buffer, buffer_, sizeof(extra_buffer)); +} +void Blip_Buffer::RestoreAudioBufferState() +{ + length_ = extra_length; + offset_ = extra_offset; + reader_accum = extra_reader_accum; + memcpy(buffer_, extra_buffer, sizeof(extra_buffer)); +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/blipBuffer.hpp b/quicknes/source/quickerNES/core/apu/blipBuffer.hpp new file mode 100644 index 00000000000..d3682a7a109 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/blipBuffer.hpp @@ -0,0 +1,380 @@ +#pragma once + +// Band-limited sound synthesis and buffering +// Blip_Buffer 0.4.0 + +namespace quickerNES +{ + +// Time unit at source clock rate +typedef long blip_time_t; + +// Output samples are 16-bit signed, with a range of -32768 to 32767 +typedef short blip_sample_t; +enum +{ + blip_sample_max = 32767 +}; + +class Blip_Buffer +{ + public: + // Set output sample rate and buffer length in milliseconds (1/1000 sec, defaults + // to 1/4 second), then clear buffer. Returns NULL on success, otherwise if there + // isn't enough memory, returns error without affecting current buffer setup. + const char *set_sample_rate(long samples_per_sec, int msec_length = 1000 / 4); + + // Set number of source time units per second + void clock_rate(long); + + // End current time frame of specified duration and make its samples available + // (along with any still-unread samples) for reading with read_samples(). Begins + // a new time frame at the end of the current frame. + void end_frame(blip_time_t time); + + // Read at most 'max_samples' out of buffer into 'dest', removing them from from + // the buffer. Returns number of samples actually read and removed. If stereo is + // true, increments 'dest' one extra time after writing each sample, to allow + // easy interleving of two channels into a stereo output buffer. + long read_samples(blip_sample_t *dest, long max_samples, int stereo = 0); + + // Additional optional features + + // Current output sample rate + long sample_rate() const; + + // Length of buffer, in milliseconds + int length() const; + + // Number of source time units per second + long clock_rate() const; + + // Set frequency high-pass filter frequency, where higher values reduce bass more + void bass_freq(int frequency); + + // Number of samples delay from synthesis to samples read out + int output_latency() const; + + // Remove all available samples and clear buffer to silence. If 'entire_buffer' is + // false, just clears out any samples waiting rather than the entire buffer. + void clear(int entire_buffer = 1); + + // Number of samples available for reading with read_samples() + long samples_avail() const; + + // Remove 'count' samples from those waiting to be read + void remove_samples(long count); + + // Experimental features + + // Number of raw samples that can be mixed within frame of specified duration. + long count_samples(blip_time_t duration) const; + + // Mix 'count' samples from 'buf' into buffer. + void mix_samples(blip_sample_t const *buf, long count); + + // Count number of clocks needed until 'count' samples will be available. + // If buffer can't even hold 'count' samples, returns number of clocks until + // buffer becomes full. + blip_time_t count_clocks(long count) const; + + // not documented yet + typedef unsigned long blip_resampled_time_t; + void remove_silence(long count); + blip_resampled_time_t resampled_duration(int t) const { return t * factor_; } + blip_resampled_time_t resampled_time(blip_time_t t) const { return t * factor_ + offset_; } + blip_resampled_time_t clock_rate_factor(long clock_rate) const; + + public: + Blip_Buffer(); + ~Blip_Buffer(); + + // Deprecated + typedef blip_resampled_time_t resampled_time_t; + const char *sample_rate(long r) { return set_sample_rate(r); } + const char *sample_rate(long r, int msec) { return set_sample_rate(r, msec); } + + private: + // noncopyable + Blip_Buffer(const Blip_Buffer &); + Blip_Buffer &operator=(const Blip_Buffer &); + + public: + typedef long buf_t_; + unsigned long factor_; + blip_resampled_time_t offset_; + buf_t_ *buffer_; + long buffer_size_; + + private: + long reader_accum; + int bass_shift; + long sample_rate_; + long clock_rate_; + int bass_freq_; + int length_; + friend class Blip_Reader; + + private: + // extra information necessary to load state to an exact sample + buf_t_ extra_buffer[32]; + int extra_length; + long extra_reader_accum; + blip_resampled_time_t extra_offset; + + public: + void SaveAudioBufferState(); + void RestoreAudioBufferState(); +}; + +#ifdef HAVE_CONFIG_H + #include "config.h" +#endif + +// Number of bits in resample ratio fraction. Higher values give a more accurate ratio +// but reduce maximum buffer size. +#ifndef BLIP_BUFFER_ACCURACY + #define BLIP_BUFFER_ACCURACY 16 +#endif + +// Number bits in phase offset. Fewer than 6 bits (64 phase offsets) results in +// noticeable broadband noise when synthesizing high frequency square waves. +// Affects size of Blip_Synth objects since they store the waveform directly. +#ifndef BLIP_PHASE_BITS + #define BLIP_PHASE_BITS 6 +#endif + +// Internal +typedef unsigned long blip_resampled_time_t; +int const blip_widest_impulse_ = 16; +int const blip_res = 1 << BLIP_PHASE_BITS; +class blip_eq_t; + +class Blip_Synth_ +{ + double volume_unit_; + short *const impulses; + int const width; + long kernel_unit; + int impulses_size() const { return blip_res / 2 * width + 1; } + void adjust_impulse(); + + public: + Blip_Buffer *buf; + int last_amp; + int delta_factor; + + Blip_Synth_(short *impulses, int width); + void treble_eq(blip_eq_t const &); + void volume_unit(double); +}; + +// Quality level. Start with blip_good_quality. +const int blip_med_quality = 8; +const int blip_good_quality = 12; +const int blip_high_quality = 16; + +// Range specifies the greatest expected change in amplitude. Calculate it +// by finding the difference between the maximum and minimum expected +// amplitudes (max - min). +template +class Blip_Synth +{ + public: + // Set overall volume of waveform + void volume(double v) { impl.volume_unit(v * (1.0 / (range < 0 ? -range : range))); } + + // Configure low-pass filter (see notes.txt) + void treble_eq(blip_eq_t const &eq) { impl.treble_eq(eq); } + + // Get/set Blip_Buffer used for output + Blip_Buffer *output() const { return impl.buf; } + void output(Blip_Buffer *b) + { + impl.buf = b; + impl.last_amp = 0; + } + + // Update amplitude of waveform at given time. Using this requires a separate + // Blip_Synth for each waveform. + void update(blip_time_t time, int amplitude); + + // Low-level interface + + // Add an amplitude transition of specified delta, optionally into specified buffer + // rather than the one set with output(). Delta can be positive or negative. + // The actual change in amplitude is delta * (volume / range) + void offset(blip_time_t, int delta, Blip_Buffer *) const; + void offset(blip_time_t t, int delta) const { offset(t, delta, impl.buf); } + + // Works directly in terms of fractional output samples. Contact author for more. + void offset_resampled(blip_resampled_time_t, int delta, Blip_Buffer *) const; + + // Same as offset(), except code is inlined for higher performance + void offset_inline(blip_time_t t, int delta, Blip_Buffer *buf) const + { + offset_resampled(t * buf->factor_ + buf->offset_, delta, buf); + } + void offset_inline(blip_time_t t, int delta) const + { + offset_resampled(t * impl.buf->factor_ + impl.buf->offset_, delta, impl.buf); + } + + public: + Blip_Synth() : impl(impulses, quality) {} + + private: + typedef short imp_t; + imp_t impulses[blip_res * (quality / 2) + 1]; + Blip_Synth_ impl; +}; + +// Low-pass equalization parameters +class blip_eq_t +{ + public: + // Logarithmic rolloff to treble dB at half sampling rate. Negative values reduce + // treble, small positive values (0 to 5.0) increase treble. + blip_eq_t(double treble_db = 0); + + // See notes.txt + blip_eq_t(double treble, long rolloff_freq, long sample_rate, long cutoff_freq = 0); + + private: + double treble; + long rolloff_freq; + long sample_rate; + long cutoff_freq; + void generate(float *out, int count) const; + friend class Blip_Synth_; +}; + +int const blip_sample_bits = 30; + +// Optimized inline sample reader for custom sample formats and mixing of Blip_Buffer samples +class Blip_Reader +{ + public: + // Begin reading samples from buffer. Returns value to pass to next() (can + // be ignored if default bass_freq is acceptable). + int begin(Blip_Buffer &); + + // Current sample + long read() const { return accum >> (blip_sample_bits - 16); } + + // Current raw sample in full internal resolution + long read_raw() const { return accum; } + + // Advance to next sample + void next(int bass_shift = 9) { accum += *buf++ - (accum >> bass_shift); } + + // End reading samples from buffer. The number of samples read must now be removed + // using Blip_Buffer::remove_samples(). + void end(Blip_Buffer &b) { b.reader_accum = accum; } + + private: + const Blip_Buffer::buf_t_ *buf; + long accum; +}; + +// End of public interface + +// Compatibility with older version +const long blip_unscaled = 65535; +const int blip_low_quality = blip_med_quality; +const int blip_best_quality = blip_high_quality; + +#define BLIP_FWD(i) \ + { \ + long t0 = i0 * delta + buf[fwd + i]; \ + long t1 = imp[blip_res * (i + 1)] * delta + buf[fwd + 1 + i]; \ + i0 = imp[blip_res * (i + 2)]; \ + buf[fwd + i] = t0; \ + buf[fwd + 1 + i] = t1; \ + } + +#define BLIP_REV(r) \ + { \ + long t0 = i0 * delta + buf[rev - r]; \ + long t1 = imp[blip_res * r] * delta + buf[rev + 1 - r]; \ + i0 = imp[blip_res * (r - 1)]; \ + buf[rev - r] = t0; \ + buf[rev + 1 - r] = t1; \ + } + +template +inline void Blip_Synth::offset_resampled(blip_resampled_time_t time, + int delta, + Blip_Buffer *blip_buf) const +{ + // Fails if time is beyond end of Blip_Buffer, due to a bug in caller code or the + // need for a longer buffer as set by set_sample_rate(). + delta *= impl.delta_factor; + int phase = (int)(time >> (BLIP_BUFFER_ACCURACY - BLIP_PHASE_BITS) & (blip_res - 1)); + imp_t const *imp = impulses + blip_res - phase; + long *buf = blip_buf->buffer_ + (time >> BLIP_BUFFER_ACCURACY); + long i0 = *imp; + + int const fwd = (blip_widest_impulse_ - quality) / 2; + int const rev = fwd + quality - 2; + + BLIP_FWD(0) + if (quality > 8) BLIP_FWD(2) + if (quality > 12) BLIP_FWD(4) + { + int const mid = quality / 2 - 1; + long t0 = i0 * delta + buf[fwd + mid - 1]; + long t1 = imp[blip_res * mid] * delta + buf[fwd + mid]; + imp = impulses + phase; + i0 = imp[blip_res * mid]; + buf[fwd + mid - 1] = t0; + buf[fwd + mid] = t1; + } + if (quality > 12) BLIP_REV(6) + if (quality > 8) BLIP_REV(4) + BLIP_REV(2) + + long t0 = i0 * delta + buf[rev]; + long t1 = *imp * delta + buf[rev + 1]; + buf[rev] = t0; + buf[rev + 1] = t1; +} + +#undef BLIP_FWD +#undef BLIP_REV + +template +void Blip_Synth::offset(blip_time_t t, int delta, Blip_Buffer *buf) const +{ + offset_resampled(t * buf->factor_ + buf->offset_, delta, buf); +} + +template +void Blip_Synth::update(blip_time_t t, int amp) +{ + int delta = amp - impl.last_amp; + impl.last_amp = amp; + offset_resampled(t * impl.buf->factor_ + impl.buf->offset_, delta, impl.buf); +} + +inline blip_eq_t::blip_eq_t(double t) : treble(t), rolloff_freq(0), sample_rate(44100), cutoff_freq(0) {} +inline blip_eq_t::blip_eq_t(double t, long rf, long sr, long cf) : treble(t), rolloff_freq(rf), sample_rate(sr), cutoff_freq(cf) {} + +inline int Blip_Buffer::length() const { return length_; } +inline long Blip_Buffer::samples_avail() const { return (long)(offset_ >> BLIP_BUFFER_ACCURACY); } +inline long Blip_Buffer::sample_rate() const { return sample_rate_; } +inline int Blip_Buffer::output_latency() const { return blip_widest_impulse_ / 2; } +inline long Blip_Buffer::clock_rate() const { return clock_rate_; } +inline void Blip_Buffer::clock_rate(long cps) { factor_ = clock_rate_factor(clock_rate_ = cps); } + +inline int Blip_Reader::begin(Blip_Buffer &blip_buf) +{ + buf = blip_buf.buffer_; + accum = blip_buf.reader_accum; + return blip_buf.bass_shift; +} + +int const blip_max_length = 0; +int const blip_default_length = 250; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/buffer.cpp b/quicknes/source/quickerNES/core/apu/buffer.cpp new file mode 100644 index 00000000000..68a513ab431 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/buffer.cpp @@ -0,0 +1,230 @@ +// Emu 0.7.0. http://www.slack.net/~ant/libs/ + +#include "buffer.hpp" +#include "apu.hpp" + +/* Library Copyright (C) 2003-2006 Shay Green. This library is free software; +you can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +details. You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +// Buffer + +Buffer::Buffer() : Multi_Buffer(1) {} + +Buffer::~Buffer() {} + +void Buffer::enable_nonlinearity(bool b) +{ + if (b) + clear(); + + Apu *apu = nonlin.enable(b, &tnd); + apu->osc_output(0, &buf); + apu->osc_output(1, &buf); +} + +const char *Buffer::set_sample_rate(long rate, int msec) +{ + enable_nonlinearity(nonlin.enabled); // reapply + buf.set_sample_rate(rate, msec); + tnd.set_sample_rate(rate, msec); + return Multi_Buffer::set_sample_rate(buf.sample_rate(), buf.length()); +} + +void Buffer::clock_rate(long rate) +{ + buf.clock_rate(rate); + tnd.clock_rate(rate); +} + +void Buffer::bass_freq(int freq) +{ + buf.bass_freq(freq); + tnd.bass_freq(freq); +} + +void Buffer::clear() +{ + nonlin.clear(); + buf.clear(); + tnd.clear(); +} + +Buffer::channel_t Buffer::channel(int i) +{ + channel_t c; + c.center = &buf; + if (2 <= i && i <= 4) + c.center = &tnd; // only use for triangle, noise, and dmc + c.left = c.center; + c.right = c.center; + return c; +} + +void Buffer::end_frame(blip_time_t length, bool) +{ + buf.end_frame(length); + tnd.end_frame(length); +} + +long Buffer::samples_avail() const +{ + return buf.samples_avail(); +} + +long Buffer::read_samples(blip_sample_t *out, long count) +{ + count = nonlin.make_nonlinear(tnd, count); + if (count) + { + Blip_Reader lin; + Blip_Reader nonlin; + + int lin_bass = lin.begin(buf); + int nonlin_bass = nonlin.begin(tnd); + + if (out != 0) + { + for (int n = count; n--;) + { + int s = lin.read() + nonlin.read(); + lin.next(lin_bass); + nonlin.next(nonlin_bass); + *out++ = s; + + if ((int16_t)s != s) + out[-1] = 0x7FFF - (s >> 24); + } + } + else + { + // only run accumulators, do not output audio + for (int n = count; n--;) + { + lin.next(lin_bass); + nonlin.next(nonlin_bass); + } + } + + lin.end(buf); + nonlin.end(tnd); + + buf.remove_samples(count); + tnd.remove_samples(count); + } + + return count; +} + +void Buffer::SaveAudioBufferState() +{ + SaveAudioBufferStatePrivate(); + nonlin.SaveAudioBufferState(); + buf.SaveAudioBufferState(); + tnd.SaveAudioBufferState(); +} + +void Buffer::RestoreAudioBufferState() +{ + RestoreAudioBufferStatePrivate(); + nonlin.RestoreAudioBufferState(); + buf.RestoreAudioBufferState(); + tnd.RestoreAudioBufferState(); +} + +// Nonlinearizer + +Nonlinearizer::Nonlinearizer() +{ + apu = nullptr; + enabled = true; + + float const gain = 0x7fff * 1.3f; + // don't use entire range, so any overflow will stay within table + int const range = (int)((double)table_size * Apu::nonlinear_tnd_gain()); + for (int i = 0; i < table_size; i++) + { + int const offset = table_size - range; + int j = i - offset; + float n = 202.0f / (range - 1) * j; + float d = 0; + // Prevent division by zero + if (n) + d = gain * 163.67f / (24329.0f / n + 100.0f); + int out = (int)d; + table[j & (table_size - 1)] = out; + } + extra_accum = 0; + extra_prev = 0; +} + +Apu *Nonlinearizer::enable(bool b, Blip_Buffer *buf) +{ + apu->osc_output(2, buf); + apu->osc_output(3, buf); + apu->osc_output(4, buf); + enabled = b; + if (b) + apu->enable_nonlinear(1.0); + else + apu->volume(1.0); + return apu; +} + +#define ENTRY(s) table[(s) >> (blip_sample_bits - table_bits - 1) & (table_size - 1)] + +long Nonlinearizer::make_nonlinear(Blip_Buffer &buf, long count) +{ + long avail = buf.samples_avail(); + if (count > avail) + count = avail; + if (count && enabled) + { + Blip_Buffer::buf_t_ *p = buf.buffer_; + long accum = this->accum; + long prev = this->prev; + for (unsigned n = count; n; --n) + { + long entry = ENTRY(accum); + accum += *p; + *p++ = (entry - prev) << (blip_sample_bits - 16); + prev = entry; + } + + this->prev = prev; + this->accum = accum; + } + + return count; +} + +void Nonlinearizer::clear() +{ + accum = 0; + prev = ENTRY(86016000); // avoid thump due to APU's triangle dc bias + // TODO: still results in slight clicks and thumps +} + +void Nonlinearizer::SaveAudioBufferState() +{ + extra_accum = accum; + extra_prev = prev; +} + +void Nonlinearizer::RestoreAudioBufferState() +{ + accum = extra_accum; + prev = extra_prev; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/buffer.hpp b/quicknes/source/quickerNES/core/apu/buffer.hpp new file mode 100644 index 00000000000..9a4b4a98346 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/buffer.hpp @@ -0,0 +1,82 @@ +#pragma once + +// NES non-linear audio buffer +// Emu 0.7.0 + +#include "multiBuffer.hpp" +#include + +namespace quickerNES +{ + +class Apu; + +class Nonlinearizer +{ + private: + enum + { + table_bits = 11 + }; + enum + { + table_size = 1 << table_bits + }; + int16_t table[table_size]; + Apu *apu; + long accum; + long prev; + + long extra_accum; + long extra_prev; + + public: + Nonlinearizer(); + bool enabled; + void clear(); + void set_apu(Apu *a) { apu = a; } + Apu *enable(bool, Blip_Buffer *tnd); + long make_nonlinear(Blip_Buffer &buf, long count); + void SaveAudioBufferState(); + void RestoreAudioBufferState(); +}; + +class Buffer : public Multi_Buffer +{ + public: + Buffer(); + ~Buffer(); + + // Setup APU for use with buffer, including setting its output to this buffer. + // If you're using Emu, this is automatically called for you. + void set_apu(Apu *apu) { nonlin.set_apu(apu); } + + // Enable/disable non-linear output + void enable_nonlinearity(bool = true); + + // Blip_Buffer to output other sound chips to + Blip_Buffer *buffer() { return &buf; } + + // See Multi_Buffer.h + const char *set_sample_rate(long rate, int msec = blip_default_length); + + void clock_rate(long); + void bass_freq(int); + void clear(); + channel_t channel(int); + void end_frame(blip_time_t, bool unused = true); + long samples_avail() const; + long read_samples(blip_sample_t *, long); + + private: + Blip_Buffer buf; + Blip_Buffer tnd; + Nonlinearizer nonlin; + friend Multi_Buffer *set_apu(Buffer *, Apu *); + + public: + virtual void SaveAudioBufferState(); + virtual void RestoreAudioBufferState(); +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/effectsBuffer.cpp b/quicknes/source/quickerNES/core/apu/effectsBuffer.cpp new file mode 100644 index 00000000000..b60006b33d7 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/effectsBuffer.cpp @@ -0,0 +1,518 @@ +// Game_Music_Emu 0.3.0. http://www.slack.net/~ant/ + +#include "effectsBuffer.hpp" +#include + +/* Copyright (C) 2003-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +typedef long fixed_t; + +#define TO_FIXED(f) fixed_t((f) * (1L << 15) + 0.5) +#define FMUL(x, y) (((x) * (y)) >> 15) + +const unsigned echo_size = 4096; +const unsigned echo_mask = echo_size - 1; +static_assert((echo_size & echo_mask) == 0); // must be power of 2 + +const unsigned reverb_size = 8192 * 2; +const unsigned reverb_mask = reverb_size - 1; +static_assert((reverb_size & reverb_mask) == 0); // must be power of 2 + +Effects_Buffer::config_t::config_t() +{ + pan_1 = -0.15f; + pan_2 = 0.15f; + reverb_delay = 88.0f; + reverb_level = 0.12f; + echo_delay = 61.0f; + echo_level = 0.10f; + delay_variance = 18.0f; + effects_enabled = false; +} + +void Effects_Buffer::set_depth(double d) +{ + float f = (float)d; + config_t c; + c.pan_1 = -0.6f * f; + c.pan_2 = 0.6f * f; + c.reverb_delay = 880 * 0.1f; + c.echo_delay = 610 * 0.1f; + if (f > 0.5) + f = 0.5; // TODO: more linear reduction of extreme reverb/echo + c.reverb_level = 0.5f * f; + c.echo_level = 0.30f * f; + c.delay_variance = 180 * 0.1f; + c.effects_enabled = (d > 0.0f); + config(c); +} + +Effects_Buffer::Effects_Buffer(bool center_only) : Multi_Buffer(2) +{ + buf_count = center_only ? max_buf_count - 4 : max_buf_count; + + echo_buf = NULL; + echo_pos = 0; + + reverb_buf = NULL; + reverb_pos = 0; + + stereo_remain = 0; + effect_remain = 0; + effects_enabled = false; + set_depth(0); +} + +Effects_Buffer::~Effects_Buffer() +{ + delete[] echo_buf; + delete[] reverb_buf; +} + +const char *Effects_Buffer::set_sample_rate(long rate, int msec) +{ + if (!echo_buf) + { + echo_buf = new blip_sample_t[echo_size]; + } + + if (!reverb_buf) + { + reverb_buf = new blip_sample_t[reverb_size]; + } + + for (int i = 0; i < buf_count; i++) bufs[i].set_sample_rate(rate, msec); + + config(config_); + clear(); + + return Multi_Buffer::set_sample_rate(bufs[0].sample_rate(), bufs[0].length()); +} + +void Effects_Buffer::clock_rate(long rate) +{ + for (int i = 0; i < buf_count; i++) + bufs[i].clock_rate(rate); +} + +void Effects_Buffer::bass_freq(int freq) +{ + for (int i = 0; i < buf_count; i++) + bufs[i].bass_freq(freq); +} + +void Effects_Buffer::clear() +{ + stereo_remain = 0; + effect_remain = 0; + if (echo_buf) + memset(echo_buf, 0, echo_size * sizeof *echo_buf); + if (reverb_buf) + memset(reverb_buf, 0, reverb_size * sizeof *reverb_buf); + for (int i = 0; i < buf_count; i++) + bufs[i].clear(); +} + +inline int pin_range(int n, int max, int min = 0) +{ + if (n < min) + return min; + if (n > max) + return max; + return n; +} + +void Effects_Buffer::config(const config_t &cfg) +{ + channels_changed(); + + // clear echo and reverb buffers + if (!config_.effects_enabled && cfg.effects_enabled && echo_buf) + { + memset(echo_buf, 0, echo_size * sizeof(blip_sample_t)); + memset(reverb_buf, 0, reverb_size * sizeof(blip_sample_t)); + } + + config_ = cfg; + + if (config_.effects_enabled) + { + // convert to internal format + + chans.pan_1_levels[0] = TO_FIXED(1) - TO_FIXED(config_.pan_1); + chans.pan_1_levels[1] = TO_FIXED(2) - chans.pan_1_levels[0]; + + chans.pan_2_levels[0] = TO_FIXED(1) - TO_FIXED(config_.pan_2); + chans.pan_2_levels[1] = TO_FIXED(2) - chans.pan_2_levels[0]; + + chans.reverb_level = TO_FIXED(config_.reverb_level); + chans.echo_level = TO_FIXED(config_.echo_level); + + int delay_offset = int(1.0 / 2000 * config_.delay_variance * sample_rate()); + + int reverb_sample_delay = int(1.0 / 1000 * config_.reverb_delay * sample_rate()); + chans.reverb_delay_l = pin_range(reverb_size - + (reverb_sample_delay - delay_offset) * 2, + reverb_size - 2, + 0); + chans.reverb_delay_r = pin_range(reverb_size + 1 - + (reverb_sample_delay + delay_offset) * 2, + reverb_size - 1, + 1); + + int echo_sample_delay = int(1.0 / 1000 * config_.echo_delay * sample_rate()); + chans.echo_delay_l = pin_range(echo_size - 1 - (echo_sample_delay - delay_offset), + echo_size - 1); + chans.echo_delay_r = pin_range(echo_size - 1 - (echo_sample_delay + delay_offset), + echo_size - 1); + + // set up outputs + for (unsigned i = 0; i < chan_count; i++) + { + channel_t &o = channels[i]; + if (i < 2) + { + o.center = &bufs[i]; + o.left = &bufs[3]; + o.right = &bufs[4]; + } + else + { + o.center = &bufs[2]; + o.left = &bufs[5]; + o.right = &bufs[6]; + } + } + } + else + { + // set up outputs + for (unsigned i = 0; i < chan_count; i++) + { + channel_t &o = channels[i]; + o.center = &bufs[0]; + o.left = &bufs[1]; + o.right = &bufs[2]; + } + } + + if (buf_count < max_buf_count) + { + for (unsigned i = 0; i < chan_count; i++) + { + channel_t &o = channels[i]; + o.left = o.center; + o.right = o.center; + } + } +} + +void Effects_Buffer::end_frame(blip_time_t clock_count, bool stereo) +{ + for (int i = 0; i < buf_count; i++) + bufs[i].end_frame(clock_count); + + if (stereo && buf_count == max_buf_count) + stereo_remain = bufs[0].samples_avail() + bufs[0].output_latency(); + + if (effects_enabled || config_.effects_enabled) + effect_remain = bufs[0].samples_avail() + bufs[0].output_latency(); + + effects_enabled = config_.effects_enabled; +} + +long Effects_Buffer::samples_avail() const +{ + return bufs[0].samples_avail() * 2; +} + +long Effects_Buffer::read_samples(blip_sample_t *out, long total_samples) +{ + long remain = bufs[0].samples_avail(); + if (remain > (total_samples >> 1)) + remain = (total_samples >> 1); + total_samples = remain; + while (remain) + { + int active_bufs = buf_count; + long count = remain; + + // optimizing mixing to skip any channels which had nothing added + if (effect_remain) + { + if (count > effect_remain) + count = effect_remain; + + if (stereo_remain) + { + mix_enhanced(out, count); + } + else + { + mix_mono_enhanced(out, count); + active_bufs = 3; + } + } + else if (stereo_remain) + { + mix_stereo(out, count); + active_bufs = 3; + } + else + { + mix_mono(out, count); + active_bufs = 1; + } + + out += count * 2; + remain -= count; + + stereo_remain -= count; + if (stereo_remain < 0) + stereo_remain = 0; + + effect_remain -= count; + if (effect_remain < 0) + effect_remain = 0; + + for (int i = 0; i < buf_count; i++) + { + if (i < active_bufs) + bufs[i].remove_samples(count); + else + bufs[i].remove_silence(count); // keep time synchronized + } + } + + return total_samples * 2; +} + +void Effects_Buffer::mix_mono(blip_sample_t *out, long count) +{ + Blip_Reader c; + int shift = c.begin(bufs[0]); + + // unrolled loop + for (long n = count >> 1; n--;) + { + long cs0 = c.read(); + c.next(shift); + + long cs1 = c.read(); + c.next(shift); + + if ((int16_t)cs0 != cs0) + cs0 = 0x7FFF - (cs0 >> 24); + ((uint32_t *)out)[0] = ((uint16_t)cs0) | (cs0 << 16); + + if ((int16_t)cs1 != cs1) + cs1 = 0x7FFF - (cs1 >> 24); + ((uint32_t *)out)[1] = ((uint16_t)cs1) | (cs1 << 16); + out += 4; + } + + if (count & 1) + { + int s = c.read(); + c.next(shift); + out[0] = s; + out[1] = s; + if ((int16_t)s != s) + { + s = 0x7FFF - (s >> 24); + out[0] = s; + out[1] = s; + } + } + + c.end(bufs[0]); +} + +void Effects_Buffer::mix_stereo(blip_sample_t *out, long count) +{ + Blip_Reader l; + l.begin(bufs[1]); + Blip_Reader r; + r.begin(bufs[2]); + Blip_Reader c; + int shift = c.begin(bufs[0]); + + while (count--) + { + int cs = c.read(); + c.next(shift); + int left = cs + l.read(); + int right = cs + r.read(); + l.next(shift); + r.next(shift); + + if ((int16_t)left != left) + left = 0x7FFF - (left >> 24); + + out[0] = left; + out[1] = right; + + out += 2; + + if ((int16_t)right != right) + out[-1] = 0x7FFF - (right >> 24); + } + + c.end(bufs[0]); + r.end(bufs[2]); + l.end(bufs[1]); +} + +void Effects_Buffer::mix_mono_enhanced(blip_sample_t *out, long count) +{ + Blip_Reader sq1; + sq1.begin(bufs[0]); + Blip_Reader sq2; + sq2.begin(bufs[1]); + Blip_Reader center; + int shift = center.begin(bufs[2]); + + int echo_pos = this->echo_pos; + int reverb_pos = this->reverb_pos; + + while (count--) + { + int sum1_s = sq1.read(); + int sum2_s = sq2.read(); + + sq1.next(shift); + sq2.next(shift); + + int new_reverb_l = FMUL(sum1_s, chans.pan_1_levels[0]) + + FMUL(sum2_s, chans.pan_2_levels[0]) + + reverb_buf[(reverb_pos + chans.reverb_delay_l) & reverb_mask]; + + int new_reverb_r = FMUL(sum1_s, chans.pan_1_levels[1]) + + FMUL(sum2_s, chans.pan_2_levels[1]) + + reverb_buf[(reverb_pos + chans.reverb_delay_r) & reverb_mask]; + + fixed_t reverb_level = chans.reverb_level; + reverb_buf[reverb_pos] = FMUL(new_reverb_l, reverb_level); + reverb_buf[reverb_pos + 1] = FMUL(new_reverb_r, reverb_level); + reverb_pos = (reverb_pos + 2) & reverb_mask; + + int sum3_s = center.read(); + center.next(shift); + + int left = new_reverb_l + sum3_s + FMUL(chans.echo_level, echo_buf[(echo_pos + chans.echo_delay_l) & echo_mask]); + int right = new_reverb_r + sum3_s + FMUL(chans.echo_level, echo_buf[(echo_pos + chans.echo_delay_r) & echo_mask]); + + echo_buf[echo_pos] = sum3_s; + echo_pos = (echo_pos + 1) & echo_mask; + + if ((int16_t)left != left) + left = 0x7FFF - (left >> 24); + + out[0] = left; + out[1] = right; + + out += 2; + + if ((int16_t)right != right) + out[-1] = 0x7FFF - (right >> 24); + } + this->reverb_pos = reverb_pos; + this->echo_pos = echo_pos; + + sq1.end(bufs[0]); + sq2.end(bufs[1]); + center.end(bufs[2]); +} + +void Effects_Buffer::mix_enhanced(blip_sample_t *out, long count) +{ + Blip_Reader l1; + l1.begin(bufs[3]); + Blip_Reader r1; + r1.begin(bufs[4]); + Blip_Reader l2; + l2.begin(bufs[5]); + Blip_Reader r2; + r2.begin(bufs[6]); + Blip_Reader sq1; + sq1.begin(bufs[0]); + Blip_Reader sq2; + sq2.begin(bufs[1]); + Blip_Reader center; + int shift = center.begin(bufs[2]); + + int echo_pos = this->echo_pos; + int reverb_pos = this->reverb_pos; + + while (count--) + { + int sum1_s = sq1.read(); + int sum2_s = sq2.read(); + + sq1.next(shift); + sq2.next(shift); + + int new_reverb_l = FMUL(sum1_s, chans.pan_1_levels[0]) + + FMUL(sum2_s, chans.pan_2_levels[0]) + l1.read() + + reverb_buf[(reverb_pos + chans.reverb_delay_l) & reverb_mask]; + + int new_reverb_r = FMUL(sum1_s, chans.pan_1_levels[1]) + + FMUL(sum2_s, chans.pan_2_levels[1]) + r1.read() + + reverb_buf[(reverb_pos + chans.reverb_delay_r) & reverb_mask]; + + l1.next(shift); + r1.next(shift); + + fixed_t reverb_level = chans.reverb_level; + reverb_buf[reverb_pos] = FMUL(new_reverb_l, reverb_level); + reverb_buf[reverb_pos + 1] = FMUL(new_reverb_r, reverb_level); + reverb_pos = (reverb_pos + 2) & reverb_mask; + + int sum3_s = center.read(); + center.next(shift); + + int left = new_reverb_l + sum3_s + l2.read() + FMUL(chans.echo_level, echo_buf[(echo_pos + chans.echo_delay_l) & echo_mask]); + int right = new_reverb_r + sum3_s + r2.read() + FMUL(chans.echo_level, echo_buf[(echo_pos + chans.echo_delay_r) & echo_mask]); + + l2.next(shift); + r2.next(shift); + + echo_buf[echo_pos] = sum3_s; + echo_pos = (echo_pos + 1) & echo_mask; + + if ((int16_t)left != left) + left = 0x7FFF - (left >> 24); + + out[0] = left; + out[1] = right; + + out += 2; + + if ((int16_t)right != right) + out[-1] = 0x7FFF - (right >> 24); + } + this->reverb_pos = reverb_pos; + this->echo_pos = echo_pos; + + sq1.end(bufs[0]); + sq2.end(bufs[1]); + center.end(bufs[2]); + l1.end(bufs[3]); + r1.end(bufs[4]); + l2.end(bufs[5]); + r2.end(bufs[6]); +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/effectsBuffer.hpp b/quicknes/source/quickerNES/core/apu/effectsBuffer.hpp new file mode 100644 index 00000000000..46809a9a3cf --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/effectsBuffer.hpp @@ -0,0 +1,104 @@ +#pragma once + +// Multi-channel effects buffer with panning, echo and reverb +// Game_Music_Emu 0.3.0 + +#include "multiBuffer.hpp" +#include + +namespace quickerNES +{ + +// Effects_Buffer uses several buffers and outputs stereo sample pairs. +class Effects_Buffer : public Multi_Buffer +{ + public: + // If center_only is true, only center buffers are created and + // less memory is used. + Effects_Buffer(bool center_only = false); + + // Channel Effect Center Pan + // --------------------------------- + // 0,5 reverb pan_1 + // 1,6 reverb pan_2 + // 2,7 echo - + // 3 echo - + // 4 echo - + + // Channel configuration + struct config_t + { + double pan_1; // -1.0 = left, 0.0 = center, 1.0 = right + double pan_2; + double echo_delay; // msec + double echo_level; // 0.0 to 1.0 + double reverb_delay; // msec + double delay_variance; // difference between left/right delays (msec) + double reverb_level; // 0.0 to 1.0 + bool effects_enabled; // if false, use optimized simple mixer + config_t(); + }; + + // Set configuration of buffer + virtual void config(const config_t &); + void set_depth(double); + + public: + ~Effects_Buffer(); + const char *set_sample_rate(long samples_per_sec, int msec = blip_default_length); + void clock_rate(long); + void bass_freq(int); + void clear(); + channel_t channel(int); + void end_frame(blip_time_t, bool was_stereo = true); + long read_samples(blip_sample_t *, long); + long samples_avail() const; + + private: + typedef long fixed_t; + + enum + { + max_buf_count = 7 + }; + Blip_Buffer bufs[max_buf_count]; + enum + { + chan_count = 5 + }; + channel_t channels[chan_count]; + config_t config_; + long stereo_remain; + long effect_remain; + int buf_count; + bool effects_enabled; + + blip_sample_t *reverb_buf; + blip_sample_t *echo_buf; + int reverb_pos; + int echo_pos; + + struct + { + fixed_t pan_1_levels[2]; + fixed_t pan_2_levels[2]; + int echo_delay_l; + int echo_delay_r; + fixed_t echo_level; + int reverb_delay_l; + int reverb_delay_r; + fixed_t reverb_level; + } chans; + + void mix_mono(blip_sample_t *, long); + void mix_stereo(blip_sample_t *, long); + void mix_enhanced(blip_sample_t *, long); + void mix_mono_enhanced(blip_sample_t *, long); +}; + +inline Effects_Buffer::channel_t Effects_Buffer::channel(int i) +{ + return channels[i % chan_count]; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/fme7/apu_fme7.cpp b/quicknes/source/quickerNES/core/apu/fme7/apu_fme7.cpp new file mode 100644 index 00000000000..40159e0197c --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/fme7/apu_fme7.cpp @@ -0,0 +1,108 @@ + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "apu_fme7.hpp" +#include + +/* Copyright (C) 2003-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +void Fme7_Apu::reset() +{ + last_time = 0; + + for (int i = 0; i < osc_count; i++) + oscs[i].last_amp = 0; + + fme7_apu_state_t *state = this; + memset(state, 0, sizeof *state); +} + +unsigned char Fme7_Apu::amp_table[16] = + { +#define ENTRY(n) (unsigned char)(n * +amp_range + 0.5) + ENTRY(0.0000), ENTRY(0.0078), ENTRY(0.0110), ENTRY(0.0156), ENTRY(0.0221), ENTRY(0.0312), ENTRY(0.0441), ENTRY(0.0624), ENTRY(0.0883), ENTRY(0.1249), ENTRY(0.1766), ENTRY(0.2498), ENTRY(0.3534), ENTRY(0.4998), ENTRY(0.7070), ENTRY(1.0000) +#undef ENTRY +}; + +void Fme7_Apu::run_until(blip_time_t end_time) +{ + for (int index = 0; index < osc_count; index++) + { + int mode = regs[7] >> index; + int vol_mode = regs[010 + index]; + int volume = amp_table[vol_mode & 0x0f]; + + if (!oscs[index].output) + continue; + + if ((mode & 001) | (vol_mode & 0x10)) + volume = 0; // noise and envelope aren't supported + + // period + int const period_factor = 16; + unsigned period = (regs[index * 2 + 1] & 0x0f) * 0x100 * period_factor + + regs[index * 2] * period_factor; + if (period < 50) // around 22 kHz + { + volume = 0; + if (!period) // on my AY-3-8910A, period doesn't have extra one added + period = period_factor; + } + + // current amplitude + int amp = volume; + if (!phases[index]) + amp = 0; + int delta = amp - oscs[index].last_amp; + if (delta) + { + oscs[index].last_amp = amp; + synth.offset(last_time, delta, oscs[index].output); + } + + blip_time_t time = last_time + delays[index]; + if (time < end_time) + { + Blip_Buffer *const osc_output = oscs[index].output; + int delta = amp * 2 - volume; + + if (volume) + { + do + { + delta = -delta; + synth.offset_inline(time, delta, osc_output); + time += period; + } while (time < end_time); + + oscs[index].last_amp = (delta + volume) >> 1; + phases[index] = (delta > 0); + } + else + { + // maintain phase when silent + int count = (end_time - time + period - 1) / period; + phases[index] ^= count & 1; + time += (long)count * period; + } + } + + delays[index] = time - end_time; + } + + last_time = end_time; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/fme7/apu_fme7.hpp b/quicknes/source/quickerNES/core/apu/fme7/apu_fme7.hpp new file mode 100644 index 00000000000..440b4641c5e --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/fme7/apu_fme7.hpp @@ -0,0 +1,155 @@ +#pragma once + +// Sunsoft FME-7 sound emulator +// Emu 0.7.0 + +#include "../blipBuffer.hpp" +#include + +namespace quickerNES +{ + +struct fme7_apu_state_t +{ + enum + { + reg_count = 14 + }; + uint8_t regs[reg_count]; + uint8_t phases[3]; // 0 or 1 + uint8_t latch; + uint16_t delays[3]; // a, b, c +}; +static_assert(sizeof(fme7_apu_state_t) == 24); + +class Fme7_Apu : private fme7_apu_state_t +{ + public: + Fme7_Apu(); + + // See Apu.h for reference + void reset(); + void volume(double); + void treble_eq(blip_eq_t const &); + void output(Blip_Buffer *); + enum + { + osc_count = 3 + }; + void osc_output(int index, Blip_Buffer *); + void end_frame(blip_time_t); + void save_state(fme7_apu_state_t *) const; + void load_state(fme7_apu_state_t const &); + + // Mask and addresses of registers + enum + { + addr_mask = 0xe000 + }; + enum + { + data_addr = 0xe000 + }; + enum + { + latch_addr = 0xc000 + }; + + // (addr & addr_mask) == latch_addr + void write_latch(int); + + // (addr & addr_mask) == data_addr + void write_data(blip_time_t, int data); + + // End of public interface + private: + // noncopyable + Fme7_Apu(const Fme7_Apu &); + Fme7_Apu &operator=(const Fme7_Apu &); + + static unsigned char amp_table[16]; + + struct + { + Blip_Buffer *output; + int last_amp; + } oscs[osc_count]; + blip_time_t last_time; + + enum + { + amp_range = 192 + }; // can be any value; this gives best error/quality tradeoff + Blip_Synth synth; + + void run_until(blip_time_t); +}; + +inline void Fme7_Apu::volume(double v) +{ + synth.volume(0.38 / +amp_range * v); // to do: fine-tune +} + +inline void Fme7_Apu::treble_eq(blip_eq_t const &eq) +{ + synth.treble_eq(eq); +} + +inline void Fme7_Apu::osc_output(int i, Blip_Buffer *buf) +{ + oscs[i].output = buf; +} + +inline void Fme7_Apu::output(Blip_Buffer *buf) +{ + for (int i = 0; i < osc_count; i++) + osc_output(i, buf); +} + +inline Fme7_Apu::Fme7_Apu() +{ + output(0); + volume(1.0); + reset(); +} + +inline void Fme7_Apu::write_latch(int data) { latch = data; } + +inline void Fme7_Apu::write_data(blip_time_t time, int data) +{ + if ((unsigned)latch >= reg_count) + { +#ifdef dprintf + dprintf("FME7 write to %02X (past end of sound registers)\n", (int)latch); +#endif + return; + } + + run_until(time); + regs[latch] = data; +} + +inline void Fme7_Apu::end_frame(blip_time_t time) +{ + if (time > last_time) + run_until(time); + + last_time -= time; +} + +inline void Fme7_Apu::save_state(fme7_apu_state_t *out) const +{ + *out = *this; +} + +inline void Fme7_Apu::load_state(fme7_apu_state_t const &in) +{ + reset(); + fme7_apu_state_t *state = this; + *state = in; + + // Run sound channels for 0 cycles for clean audio after loading state + run_until(last_time); +} + +} // namespace quickerNES diff --git a/quicknes/source/quickerNES/core/apu/multiBuffer.cpp b/quicknes/source/quickerNES/core/apu/multiBuffer.cpp new file mode 100644 index 00000000000..e40b910911c --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/multiBuffer.cpp @@ -0,0 +1,287 @@ + +// Blip_Buffer 0.4.0. http://www.slack.net/~ant/ + +#include "multiBuffer.hpp" +#include + +/* Copyright (C) 2003-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +Multi_Buffer::Multi_Buffer(int spf) : samples_per_frame_(spf) +{ + length_ = 0; + sample_rate_ = 0; + channels_changed_count_ = 1; + channels_changed_count_save_ = 1; +} + +const char *Multi_Buffer::set_channel_count(int) +{ + return 0; +} + +void Multi_Buffer::SaveAudioBufferStatePrivate() +{ + channels_changed_count_save_ = channels_changed_count_; +} + +void Multi_Buffer::RestoreAudioBufferStatePrivate() +{ + channels_changed_count_ = channels_changed_count_save_; +} + +Mono_Buffer::Mono_Buffer() : Multi_Buffer(1) +{ +} + +Mono_Buffer::~Mono_Buffer() +{ +} + +const char *Mono_Buffer::set_sample_rate(long rate, int msec) +{ + buf.set_sample_rate(rate, msec); + return Multi_Buffer::set_sample_rate(buf.sample_rate(), buf.length()); +} + +void Mono_Buffer::SaveAudioBufferState() +{ + SaveAudioBufferStatePrivate(); + center()->SaveAudioBufferState(); +} + +void Mono_Buffer::RestoreAudioBufferState() +{ + RestoreAudioBufferStatePrivate(); + center()->RestoreAudioBufferState(); +} + +// Silent_Buffer + +Silent_Buffer::Silent_Buffer() : Multi_Buffer(1) // 0 channels would probably confuse +{ + chan.left = 0; + chan.center = 0; + chan.right = 0; +} + +void Silent_Buffer::SaveAudioBufferState() +{ + SaveAudioBufferStatePrivate(); +} + +void Silent_Buffer::RestoreAudioBufferState() +{ + RestoreAudioBufferStatePrivate(); +} + +// Mono_Buffer + +Mono_Buffer::channel_t Mono_Buffer::channel(int) +{ + channel_t ch; + ch.center = &buf; + ch.left = &buf; + ch.right = &buf; + return ch; +} + +void Mono_Buffer::end_frame(blip_time_t t, bool) +{ + buf.end_frame(t); +} + +// Stereo_Buffer + +Stereo_Buffer::Stereo_Buffer() : Multi_Buffer(2) +{ + chan.center = &bufs[0]; + chan.left = &bufs[1]; + chan.right = &bufs[2]; +} + +Stereo_Buffer::~Stereo_Buffer() +{ +} + +const char *Stereo_Buffer::set_sample_rate(long rate, int msec) +{ + for (int i = 0; i < buf_count; i++) bufs[i].set_sample_rate(rate, msec); + return Multi_Buffer::set_sample_rate(bufs[0].sample_rate(), bufs[0].length()); +} + +void Stereo_Buffer::clock_rate(long rate) +{ + for (int i = 0; i < buf_count; i++) + bufs[i].clock_rate(rate); +} + +void Stereo_Buffer::bass_freq(int bass) +{ + for (unsigned i = 0; i < buf_count; i++) + bufs[i].bass_freq(bass); +} + +void Stereo_Buffer::clear() +{ + stereo_added = false; + was_stereo = false; + for (int i = 0; i < buf_count; i++) + bufs[i].clear(); +} + +void Stereo_Buffer::end_frame(blip_time_t clock_count, bool stereo) +{ + for (unsigned i = 0; i < buf_count; i++) + bufs[i].end_frame(clock_count); + + stereo_added |= stereo; +} + +long Stereo_Buffer::read_samples(blip_sample_t *out, long count) +{ + count = (unsigned)count / 2; + + long avail = bufs[0].samples_avail(); + if (count > avail) + count = avail; + if (count) + { + if (stereo_added || was_stereo) + { + mix_stereo(out, count); + + bufs[0].remove_samples(count); + bufs[1].remove_samples(count); + bufs[2].remove_samples(count); + } + else + { + mix_mono(out, count); + + bufs[0].remove_samples(count); + + bufs[1].remove_silence(count); + bufs[2].remove_silence(count); + } + + // to do: this might miss opportunities for optimization + if (!bufs[0].samples_avail()) + { + was_stereo = stereo_added; + stereo_added = false; + } + } + + return count * 2; +} + +void Stereo_Buffer::mix_stereo(blip_sample_t *out, long count) +{ + Blip_Reader left; + Blip_Reader right; + Blip_Reader center; + + left.begin(bufs[1]); + right.begin(bufs[2]); + int bass = center.begin(bufs[0]); + + if (out != 0) + { + while (count--) + { + int c = center.read(); + long l = c + left.read(); + long r = c + right.read(); + center.next(bass); + out[0] = l; + out[1] = r; + out += 2; + + if ((int16_t)l != l) + out[-2] = 0x7FFF - (l >> 24); + + left.next(bass); + right.next(bass); + + if ((int16_t)r != r) + out[-1] = 0x7FFF - (r >> 24); + } + } + else + { + // only run accumulators, do not output any audio + while (count--) + { + center.next(bass); + left.next(bass); + right.next(bass); + } + } + + center.end(bufs[0]); + right.end(bufs[2]); + left.end(bufs[1]); +} + +void Stereo_Buffer::mix_mono(blip_sample_t *out, long count) +{ + Blip_Reader in; + int bass = in.begin(bufs[0]); + + if (out != 0) + { + while (count--) + { + long s = in.read(); + in.next(bass); + out[0] = s; + out[1] = s; + out += 2; + + if ((int16_t)s != s) + { + s = 0x7FFF - (s >> 24); + out[-2] = s; + out[-1] = s; + } + } + } + else + { + while (count--) + { + in.next(bass); + } + } + + in.end(bufs[0]); +} + +void Stereo_Buffer::SaveAudioBufferState() +{ + SaveAudioBufferStatePrivate(); + left()->SaveAudioBufferState(); + center()->SaveAudioBufferState(); + right()->SaveAudioBufferState(); +} +void Stereo_Buffer::RestoreAudioBufferState() +{ + RestoreAudioBufferStatePrivate(); + left()->RestoreAudioBufferState(); + center()->RestoreAudioBufferState(); + right()->RestoreAudioBufferState(); +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/multiBuffer.hpp b/quicknes/source/quickerNES/core/apu/multiBuffer.hpp new file mode 100644 index 00000000000..f673ebd7c99 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/multiBuffer.hpp @@ -0,0 +1,202 @@ + +#pragma once + +// Multi-channel sound buffer interface, and basic mono and stereo buffers +// Blip_Buffer 0.4.0 + +#include "blipBuffer.hpp" + +namespace quickerNES +{ + +// Interface to one or more Blip_Buffers mapped to one or more channels +// consisting of left, center, and right buffers. +class Multi_Buffer +{ + public: + Multi_Buffer(int samples_per_frame); + virtual ~Multi_Buffer() {} + + // Set the number of channels available + virtual const char *set_channel_count(int); + + // Get indexed channel, from 0 to channel count - 1 + struct channel_t + { + Blip_Buffer *center; + Blip_Buffer *left; + Blip_Buffer *right; + }; + virtual channel_t channel(int index) = 0; + + // See Blip_Buffer.h + virtual const char *set_sample_rate(long rate, int msec = blip_default_length) = 0; + virtual void clock_rate(long) = 0; + virtual void bass_freq(int) = 0; + virtual void clear() = 0; + long sample_rate() const; + + // Length of buffer, in milliseconds + int length() const; + + // See Blip_Buffer.h. For optimal operation, pass false for 'added_stereo' + // if nothing was added to the left and right buffers of any channel for + // this time frame. + virtual void end_frame(blip_time_t, bool added_stereo = true) = 0; + + // Number of samples per output frame (1 = mono, 2 = stereo) + int samples_per_frame() const; + + // Count of changes to channel configuration. Incremented whenever + // a change is made to any of the Blip_Buffers for any channel. + unsigned channels_changed_count() { return channels_changed_count_; } + + // See Blip_Buffer.h + virtual long read_samples(blip_sample_t *, long) = 0; + virtual long samples_avail() const = 0; + + protected: + void channels_changed() { channels_changed_count_++; } + + private: + // noncopyable + Multi_Buffer(const Multi_Buffer &); + Multi_Buffer &operator=(const Multi_Buffer &); + + unsigned channels_changed_count_; + long sample_rate_; + int length_; + int const samples_per_frame_; + unsigned channels_changed_count_save_; + + protected: + void SaveAudioBufferStatePrivate(); + void RestoreAudioBufferStatePrivate(); + + public: + virtual void SaveAudioBufferState() = 0; + virtual void RestoreAudioBufferState() = 0; +}; + +// Uses a single buffer and outputs mono samples. +class Mono_Buffer : public Multi_Buffer +{ + Blip_Buffer buf; + + public: + Mono_Buffer(); + ~Mono_Buffer(); + + // Buffer used for all channels + Blip_Buffer *center() { return &buf; } + + // See Multi_Buffer + const char *set_sample_rate(long rate, int msec = blip_default_length); + void clock_rate(long); + void bass_freq(int); + void clear(); + channel_t channel(int); + void end_frame(blip_time_t, bool unused = true); + long samples_avail() const; + long read_samples(blip_sample_t *, long); + + virtual void SaveAudioBufferState(); + virtual void RestoreAudioBufferState(); +}; + +// Uses three buffers (one for center) and outputs stereo sample pairs. +class Stereo_Buffer : public Multi_Buffer +{ + public: + Stereo_Buffer(); + ~Stereo_Buffer(); + + // Buffers used for all channels + Blip_Buffer *center() { return &bufs[0]; } + Blip_Buffer *left() { return &bufs[1]; } + Blip_Buffer *right() { return &bufs[2]; } + + // See Multi_Buffer + const char *set_sample_rate(long, int msec = blip_default_length); + void clock_rate(long); + void bass_freq(int); + void clear(); + channel_t channel(int index); + void end_frame(blip_time_t, bool added_stereo = true); + + long samples_avail() const; + long read_samples(blip_sample_t *, long); + + private: + enum + { + buf_count = 3 + }; + Blip_Buffer bufs[buf_count]; + channel_t chan; + bool stereo_added; + bool was_stereo; + + void mix_stereo(blip_sample_t *, long); + void mix_mono(blip_sample_t *, long); + + virtual void SaveAudioBufferState(); + virtual void RestoreAudioBufferState(); +}; + +// Silent_Buffer generates no samples, useful where no sound is wanted +class Silent_Buffer : public Multi_Buffer +{ + channel_t chan; + + public: + Silent_Buffer(); + + const char *set_sample_rate(long rate, int msec = blip_default_length); + void clock_rate(long) {} + void bass_freq(int) {} + void clear() {} + channel_t channel(int) { return chan; } + void end_frame(blip_time_t, bool unused = true) {} + long samples_avail() const { return 0; } + long read_samples(blip_sample_t *, long) { return 0; } + + virtual void SaveAudioBufferState(); + virtual void RestoreAudioBufferState(); +}; + +// End of public interface + +inline const char *Multi_Buffer::set_sample_rate(long rate, int msec) +{ + sample_rate_ = rate; + length_ = msec; + return 0; +} + +inline const char *Silent_Buffer::set_sample_rate(long rate, int msec) +{ + return Multi_Buffer::set_sample_rate(rate, msec); +} + +inline int Multi_Buffer::samples_per_frame() const { return samples_per_frame_; } + +inline long Stereo_Buffer::samples_avail() const { return bufs[0].samples_avail() * 2; } + +inline Stereo_Buffer::channel_t Stereo_Buffer::channel(int) { return chan; } + +inline long Multi_Buffer::sample_rate() const { return sample_rate_; } + +inline int Multi_Buffer::length() const { return length_; } + +inline void Mono_Buffer::clock_rate(long rate) { buf.clock_rate(rate); } + +inline void Mono_Buffer::clear() { buf.clear(); } + +inline void Mono_Buffer::bass_freq(int freq) { buf.bass_freq(freq); } + +inline long Mono_Buffer::read_samples(blip_sample_t *p, long s) { return buf.read_samples(p, s); } + +inline long Mono_Buffer::samples_avail() const { return buf.samples_avail(); } + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/namco/apu_namco.cpp b/quicknes/source/quickerNES/core/apu/namco/apu_namco.cpp new file mode 100644 index 00000000000..bc9c544d2c5 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/namco/apu_namco.cpp @@ -0,0 +1,183 @@ + +// Snd_Emu 0.1.7. http://www.slack.net/~ant/ + +#include "apu_namco.hpp" +#include "../blipBuffer.hpp" + +/* Copyright (C) 2003-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +Namco_Apu::Namco_Apu() +{ + output(0); + volume(1.0); + reset(); +} + +Namco_Apu::~Namco_Apu() +{ +} + +void Namco_Apu::reset() +{ + last_time = 0; + addr_reg = 0; + + int i; + for (i = 0; i < reg_count; i++) + reg[i] = 0; + + for (i = 0; i < osc_count; i++) + { + Namco_Osc &osc = oscs[i]; + osc.delay = 0; + osc.last_amp = 0; + osc.wave_pos = 0; + } +} + +void Namco_Apu::output(Blip_Buffer *buf) +{ + for (int i = 0; i < osc_count; i++) + osc_output(i, buf); +} + +/* +void Namco_Apu::reflect_state( Tagged_Data& data ) +{ + reflect_int16( data, 'ADDR', &addr_reg ); + + static const char hex [17] = "0123456789ABCDEF"; + int i; + for ( i = 0; i < reg_count; i++ ) + reflect_int16( data, 'RG\0\0' + hex [i >> 4] * 0x100 + hex [i & 15], ® [i] ); + + for ( i = 0; i < osc_count; i++ ) + { + reflect_int32( data, 'DLY0' + i, &oscs [i].delay ); + reflect_int16( data, 'POS0' + i, &oscs [i].wave_pos ); + } +} +*/ + +void Namco_Apu::end_frame(nes_time_t time) +{ + if (time > last_time) + run_until(time); + + last_time -= time; +} + +void Namco_Apu::run_until(nes_time_t nes_end_time) +{ + int active_oscs = (reg[0x7F] >> 4 & 7) + 1; + for (int i = osc_count - active_oscs; i < osc_count; i++) + { + Namco_Osc &osc = oscs[i]; + Blip_Buffer *output = osc.output; + if (!output) + continue; + + blip_resampled_time_t time = + output->resampled_time(last_time) + osc.delay; + blip_resampled_time_t end_time = output->resampled_time(nes_end_time); + osc.delay = 0; + if (time < end_time) + { + const uint8_t *osc_reg = ®[i * 8 + 0x40]; + if (!(osc_reg[4] & 0xE0)) + continue; + + int volume = osc_reg[7] & 15; + if (!volume) + continue; + + long freq = (osc_reg[4] & 3) * 0x10000 + osc_reg[2] * 0x100L + osc_reg[0]; + if (freq < 64 * active_oscs) + continue; // prevent low frequencies from excessively delaying freq changes + blip_resampled_time_t period = + output->resampled_duration(983040) / freq * active_oscs; + + int wave_size = 32 - (osc_reg[4] >> 2 & 7) * 4; + if (!wave_size) + continue; + + int last_amp = osc.last_amp; + int wave_pos = osc.wave_pos; + + do + { + // read wave sample + int addr = wave_pos + osc_reg[6]; + int sample = reg[addr >> 1] >> (addr << 2 & 4); + wave_pos++; + sample = (sample & 15) * volume; + + // output impulse if amplitude changed + int delta = sample - last_amp; + if (delta) + { + last_amp = sample; + synth.offset_resampled(time, delta, output); + } + + // next sample + time += period; + if (wave_pos >= wave_size) + wave_pos = 0; + } while (time < end_time); + + osc.wave_pos = wave_pos; + osc.last_amp = last_amp; + } + osc.delay = time - end_time; + } + + last_time = nes_end_time; +} + +void Namco_Apu::save_state(namco_state_t *out) const +{ + out->addr = addr_reg; + for (int r = 0; r < reg_count; r++) + out->regs[r] = reg[r]; + + for (int i = 0; i < osc_count; i++) + { + Namco_Osc const &osc = oscs[i]; + + out->delays[i] = osc.delay; + out->positions[i] = osc.wave_pos; + } +} + +void Namco_Apu::load_state(namco_state_t const &in) +{ + reset(); + addr_reg = in.addr; + for (int r = 0; r < reg_count; r++) + reg[r] = in.regs[r]; + + for (int i = 0; i < osc_count; i++) + { + Namco_Osc &osc = oscs[i]; + + osc.delay = in.delays[i]; + osc.wave_pos = in.positions[i]; + } + + run_until(last_time); +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/namco/apu_namco.hpp b/quicknes/source/quickerNES/core/apu/namco/apu_namco.hpp new file mode 100644 index 00000000000..f747eed9151 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/namco/apu_namco.hpp @@ -0,0 +1,115 @@ +#pragma once + +// Namco 106 sound chip emulator +// Snd_Emu 0.1.7 + +#include "../apu.hpp" +#include + +namespace quickerNES +{ + +struct namco_state_t +{ + uint8_t regs[0x80]; + uint8_t addr; + uint8_t unused; + uint8_t positions[8]; + uint32_t delays[8]; +}; +static_assert(sizeof(namco_state_t) == 172); + +class Namco_Apu +{ + public: + Namco_Apu(); + ~Namco_Apu(); + + // See Apu.h for reference. + void volume(double); + void treble_eq(const blip_eq_t &); + void output(Blip_Buffer *); + enum + { + osc_count = 8 + }; + void osc_output(int index, Blip_Buffer *); + void reset(); + void end_frame(nes_time_t); + + // Read/write data register is at 0x4800 + enum + { + data_reg_addr = 0x4800 + }; + void write_data(nes_time_t, int); + int read_data(); + + // Write-only address register is at 0xF800 + enum + { + addr_reg_addr = 0xF800 + }; + void write_addr(int); + + // to do: implement save/restore + void save_state(namco_state_t *out) const; + void load_state(namco_state_t const &); + + private: + // noncopyable + Namco_Apu(const Namco_Apu &); + Namco_Apu &operator=(const Namco_Apu &); + + struct Namco_Osc + { + long delay; + Blip_Buffer *output; + short last_amp; + short wave_pos; + }; + + Namco_Osc oscs[osc_count]; + + nes_time_t last_time; + int addr_reg; + + enum + { + reg_count = 0x80 + }; + uint8_t reg[reg_count]; + Blip_Synth synth; + + uint8_t &access(); + void run_until(nes_time_t); +}; + +inline uint8_t &Namco_Apu::access() +{ + int addr = addr_reg & 0x7f; + if (addr_reg & 0x80) + addr_reg = (addr + 1) | 0x80; + return reg[addr]; +} + +inline void Namco_Apu::volume(double v) { synth.volume(0.10 / +osc_count * v); } + +inline void Namco_Apu::treble_eq(const blip_eq_t &eq) { synth.treble_eq(eq); } + +inline void Namco_Apu::write_addr(int v) { addr_reg = v; } + +inline int Namco_Apu::read_data() { return access(); } + +inline void Namco_Apu::osc_output(int i, Blip_Buffer *buf) +{ + oscs[i].output = buf; +} + +inline void Namco_Apu::write_data(nes_time_t time, int data) +{ + run_until(time); + access() = data; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/oscs.cpp b/quicknes/source/quickerNES/core/apu/oscs.cpp new file mode 100644 index 00000000000..ef9185469f9 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/oscs.cpp @@ -0,0 +1,682 @@ + +// Snd_Emu 0.1.7. http://www.slack.net/~ant/ + +#include "apu.hpp" + +/* Copyright (C) 2003-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +// Osc + +void Osc::clock_length(int halt_mask) +{ + if (length_counter && !(regs[0] & halt_mask)) + length_counter--; +} + +void Envelope::clock_envelope() +{ + int period = regs[0] & 15; + if (reg_written[3]) + { + reg_written[3] = false; + env_delay = period; + envelope = 15; + } + else if (--env_delay < 0) + { + env_delay = period; + if (envelope | (regs[0] & 0x20)) + envelope = (envelope - 1) & 15; + } +} + +int Envelope::volume() const +{ + return length_counter == 0 ? 0 : (regs[0] & 0x10) ? (regs[0] & 15) + : envelope; +} + +// Square + +void Square::clock_sweep(int negative_adjust) +{ + int sweep = regs[1]; + + if (--sweep_delay < 0) + { + reg_written[1] = true; + + int period = this->period(); + int shift = sweep & shift_mask; + if (shift && (sweep & 0x80) && period >= 8) + { + int offset = period >> shift; + + if (sweep & negate_flag) + offset = negative_adjust - offset; + + if (period + offset < 0x800) + { + period += offset; + // rewrite period + regs[2] = period & 0xff; + regs[3] = (regs[3] & ~7) | ((period >> 8) & 7); + } + } + } + + if (reg_written[1]) + { + reg_written[1] = false; + sweep_delay = (sweep >> 4) & 7; + } +} + +// TODO: clean up +inline nes_time_t Square::maintain_phase(nes_time_t time, nes_time_t end_time, nes_time_t timer_period) +{ + long remain = end_time - time; + if (remain > 0) + { + int count = (remain + timer_period - 1) / timer_period; + phase = (phase + count) & (phase_range - 1); + time += (long)count * timer_period; + } + return time; +} + +void Square::run(nes_time_t time, nes_time_t end_time) +{ + const int period = this->period(); + const int timer_period = (period + 1) * 2; + + if (!output) + { + delay = maintain_phase(time + delay, end_time, timer_period) - end_time; + return; + } + + int offset = period >> (regs[1] & shift_mask); + if (regs[1] & negate_flag) + offset = 0; + + const int volume = this->volume(); + if (volume == 0 || period < 8 || (period + offset) >= 0x800) + { + if (last_amp) + { + synth.offset(time, -last_amp, output); + last_amp = 0; + } + + time += delay; + time = maintain_phase(time, end_time, timer_period); + } + else + { + // handle duty select + int duty_select = (regs[0] >> 6) & 3; + int duty = 1 << duty_select; // 1, 2, 4, 2 + int amp = 0; + if (duty_select == 3) + { + duty = 2; // negated 25% + amp = volume; + } + if (phase < duty) + amp ^= volume; + + int delta = update_amp(amp); + if (delta) + synth.offset(time, delta, output); + + time += delay; + if (time < end_time) + { + Blip_Buffer *const output = this->output; + const Synth &synth = this->synth; + int delta = amp * 2 - volume; + int phase = this->phase; + + do { + phase = (phase + 1) & (phase_range - 1); + if (phase == 0 || phase == duty) + { + delta = -delta; + synth.offset_inline(time, delta, output); + } + time += timer_period; + } while (time < end_time); + + last_amp = (delta + volume) >> 1; + this->phase = phase; + } + } + + delay = time - end_time; +} + +// Triangle + +void Triangle::clock_linear_counter() +{ + if (reg_written[3]) + linear_counter = regs[0] & 0x7f; + else if (linear_counter) + linear_counter--; + + if (!(regs[0] & 0x80)) + reg_written[3] = false; +} + +inline int Triangle::calc_amp() const +{ + int amp = phase_range - phase; + if (amp < 0) + amp = phase - (phase_range + 1); + return amp; +} + +// TODO: clean up +inline nes_time_t Triangle::maintain_phase(nes_time_t time, nes_time_t end_time, nes_time_t timer_period) +{ + long remain = end_time - time; + if (remain > 0) + { + int count = (remain + timer_period - 1) / timer_period; + phase = ((unsigned)phase + 1 - count) & (phase_range * 2 - 1); + phase++; + time += (long)count * timer_period; + } + return time; +} + +void Triangle::run(nes_time_t time, nes_time_t end_time) +{ + const int timer_period = period() + 1; + if (!output) + { + time += delay; + delay = 0; + if (length_counter && linear_counter && timer_period >= 3) + delay = maintain_phase(time, end_time, timer_period) - end_time; + return; + } + + // to do: track phase when period < 3 + // to do: Output 7.5 on dac when period < 2? More accurate, but results in more clicks. + + int delta = update_amp(calc_amp()); + if (delta) + synth.offset(time, delta, output); + + time += delay; + if (length_counter == 0 || linear_counter == 0 || timer_period < 3) + { + time = end_time; + } + else if (time < end_time) + { + Blip_Buffer *const output = this->output; + + int phase = this->phase; + int volume = 1; + if (phase > phase_range) + { + phase -= phase_range; + volume = -volume; + } + + do { + if (--phase == 0) + { + phase = phase_range; + volume = -volume; + } + else + { + synth.offset_inline(time, volume, output); + } + + time += timer_period; + } while (time < end_time); + + if (volume < 0) + phase += phase_range; + this->phase = phase; + last_amp = calc_amp(); + } + delay = time - end_time; +} + +// Dmc + +void Dmc::reset() +{ + address = 0; + dac = 0; + buf = 0; + bits_remain = 1; + bits = 0; + buf_full = false; + silence = true; + next_irq = Apu::no_irq; + irq_flag = false; + irq_enabled = false; + + Osc::reset(); + period = 0x1ac; +} + +void Dmc::recalc_irq() +{ + nes_time_t irq = Apu::no_irq; + if (irq_enabled && length_counter) + irq = apu->last_dmc_time + delay + + ((length_counter - 1) * 8 + bits_remain - 1) * nes_time_t(period) + 1; + if (irq != next_irq) + { + next_irq = irq; + apu->irq_changed(); + } +} + +int Dmc::count_reads(nes_time_t time, nes_time_t *last_read) const +{ + if (last_read) + *last_read = time; + + if (length_counter == 0) + return 0; // not reading + + long first_read = next_read_time(); + long avail = time - first_read; + if (avail <= 0) + return 0; + + int count = (avail - 1) / (period * 8) + 1; + if (!(regs[0] & loop_flag) && count > length_counter) + count = length_counter; + + if (last_read) + *last_read = first_read + (count - 1) * (period * 8) + 1; + + return count; +} + +static const short dmc_period_table[2][16] = { + {0x1ac, 0x17c, 0x154, 0x140, 0x11e, 0x0fe, 0x0e2, 0x0d6, // NTSC + 0x0be, + 0x0a0, + 0x08e, + 0x080, + 0x06a, + 0x054, + 0x048, + 0x036}, + + {0x18e, 0x161, 0x13c, 0x129, 0x10a, 0x0ec, 0x0d2, 0x0c7, // PAL (totally untested) + 0x0b1, + 0x095, + 0x084, + 0x077, + 0x062, + 0x04e, + 0x043, + 0x032} // to do: verify PAL periods +}; + +inline void Dmc::reload_sample() +{ + address = 0x4000 + regs[2] * 0x40; + length_counter = regs[3] * 0x10 + 1; +} + +static const unsigned char dac_table[128] = + { + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 24, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 31, + 31, + 32, + 33, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 38, + 39, + 40, + 41, + 41, + 42, + 43, + 43, + 44, + 45, + 45, + 46, + 47, + 47, + 48, + 48, + 49, + 50, + 50, + 51, + 52, + 52, + 53, + 53, + 54, + 55, + 55, + 56, + 56, + 57, + 58, + 58, + 59, + 59, + 60, + 60, + 61, + 61, + 62, + 63, + 63, + 64, + 64, + 65, + 65, + 66, + 66, + 67, + 67, + 68, + 68, + 69, + 70, + 70, + 71, + 71, + 72, + 72, + 73, + 73, + 74, + 74, + 75, + 75, + 75, + 76, + 76, + 77, + 77, + 78, + 78, + 79, + 79, + 80, + 80, + 81, + 81, + 82, + 82, + 82, + 83, +}; + +void Dmc::write_register(int addr, int data) +{ + if (addr == 0) + { + period = dmc_period_table[pal_mode][data & 15]; + irq_enabled = (data & 0xc0) == 0x80; // enabled only if loop disabled + irq_flag &= irq_enabled; + recalc_irq(); + } + else if (addr == 1) + { + int old_dac = dac; + dac = data & 0x7F; + + // adjust last_amp so that "pop" amplitude will be properly non-linear + // with respect to change in dac + int faked_nonlinear = dac - (dac_table[dac] - dac_table[old_dac]); + if (!nonlinear) + last_amp = faked_nonlinear; + } +} + +void Dmc::start() +{ + reload_sample(); + fill_buffer(); + recalc_irq(); +} + +void Dmc::fill_buffer() +{ + if (!buf_full && length_counter) + { + buf = prg_reader(prg_reader_data, 0x8000u + address); + address = (address + 1) & 0x7FFF; + buf_full = true; + if (--length_counter == 0) + { + if (regs[0] & loop_flag) + { + reload_sample(); + } + else + { + apu->osc_enables &= ~0x10; + irq_flag = irq_enabled; + next_irq = Apu::no_irq; + apu->irq_changed(); + } + } + } +} + +void Dmc::run(nes_time_t time, nes_time_t end_time) +{ + int delta = update_amp(dac); + if (!output) + silence = true; + else if (delta) + synth.offset(time, delta, output); + + time += delay; + if (time < end_time) + { + int bits_remain = this->bits_remain; + if (silence && !buf_full) + { + int count = (end_time - time + period - 1) / period; + bits_remain = (bits_remain - 1 + 8 - (count % 8)) % 8 + 1; + time += count * period; + } + else + { + Blip_Buffer *const output = this->output; + const int period = this->period; + int bits = this->bits; + int dac = this->dac; + + do + { + if (!silence) + { + int step = (bits & 1) * 4 - 2; + bits >>= 1; + if (unsigned(dac + step) <= 0x7F) + { + dac += step; + synth.offset_inline(time, step, output); + } + } + + time += period; + + if (--bits_remain == 0) + { + bits_remain = 8; + if (!buf_full) + { + silence = true; + } + else + { + silence = false; + bits = buf; + buf_full = false; + if (!output) + silence = true; + fill_buffer(); + } + } + } while (time < end_time); + + this->dac = dac; + this->last_amp = dac; + this->bits = bits; + } + this->bits_remain = bits_remain; + } + delay = time - end_time; +} + +// Noise + +static const short noise_period_table[16] = { + 0x004, 0x008, 0x010, 0x020, 0x040, 0x060, 0x080, 0x0A0, 0x0CA, 0x0FE, 0x17C, 0x1FC, 0x2FA, 0x3F8, 0x7F2, 0xFE4}; + +void Noise::run(nes_time_t time, nes_time_t end_time) +{ + int period = noise_period_table[regs[2] & 15]; +#if NES_APU_NOISE_LOW_CPU + if (period < 8) + { + period = 8; + } +#endif + + if (!output) + { + // TODO: clean up + time += delay; + delay = time + (end_time - time + period - 1) / period * period - end_time; + return; + } + + const int volume = this->volume(); + int amp = (noise & 1) ? volume : 0; + int delta = update_amp(amp); + if (delta) + synth.offset(time, delta, output); + + time += delay; + if (time < end_time) + { + const int mode_flag = 0x80; + + if (!volume) + { + // round to next multiple of period + time += (end_time - time + period - 1) / period * period; + + // approximate noise cycling while muted, by shuffling up noise register + // to do: precise muted noise cycling? + if (!(regs[2] & mode_flag)) + { + int feedback = (noise << 13) ^ (noise << 14); + noise = (feedback & 0x4000) | (noise >> 1); + } + } + else + { + Blip_Buffer *const output = this->output; + + // using resampled time avoids conversion in synth.offset() + blip_resampled_time_t rperiod = output->resampled_duration(period); + blip_resampled_time_t rtime = output->resampled_time(time); + + int noise = this->noise; + int delta = amp * 2 - volume; + const int tap = (regs[2] & mode_flag ? 8 : 13); + + do { + int feedback = (noise << tap) ^ (noise << 14); + time += period; + + if ((noise + 1) & 2) + { + // bits 0 and 1 of noise differ + delta = -delta; + synth.offset_resampled(rtime, delta, output); + } + + rtime += rperiod; + noise = (feedback & 0x4000) | (noise >> 1); + } while (time < end_time); + + last_amp = (delta + volume) >> 1; + this->noise = noise; + } + } + + delay = time - end_time; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/oscs.hpp b/quicknes/source/quickerNES/core/apu/oscs.hpp new file mode 100644 index 00000000000..c26a2673754 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/oscs.hpp @@ -0,0 +1,172 @@ + +#pragma once + +// Private oscillators used by Apu +// Snd_Emu 0.1.7 + +#include "blipBuffer.hpp" + +namespace quickerNES +{ + +class Apu; + +typedef long nes_time_t; // CPU clock cycle count +typedef unsigned nes_addr_t; // 16-bit memory address + +struct Osc +{ + unsigned char regs[4]; + bool reg_written[4]; + Blip_Buffer *output; + int length_counter; // length counter (0 if unused by oscillator) + int delay; // delay until next (potential) transition + int last_amp; // last amplitude oscillator was outputting + + void clock_length(int halt_mask); + int period() const + { + return (regs[3] & 7) * 0x100 + (regs[2] & 0xff); + } + void reset() + { + delay = 0; + last_amp = 0; + } + int update_amp(int amp) + { + int delta = amp - last_amp; + last_amp = amp; + return delta; + } +}; + +struct Envelope : Osc +{ + int envelope; + int env_delay; + + void clock_envelope(); + int volume() const; + void reset() + { + envelope = 0; + env_delay = 0; + Osc::reset(); + } +}; + +// Square +struct Square : Envelope +{ + enum + { + negate_flag = 0x08 + }; + enum + { + shift_mask = 0x07 + }; + enum + { + phase_range = 8 + }; + int phase; + int sweep_delay; + + typedef Blip_Synth Synth; + Synth const &synth; // shared between squares + + Square(Synth const *s) : synth(*s) {} + + void clock_sweep(int adjust); + void run(nes_time_t, nes_time_t); + void reset() + { + sweep_delay = 0; + Envelope::reset(); + } + nes_time_t maintain_phase(nes_time_t time, nes_time_t end_time, nes_time_t timer_period); +}; + +// Triangle +struct Triangle : Osc +{ + enum + { + phase_range = 16 + }; + int phase; + int linear_counter; + Blip_Synth synth; + + int calc_amp() const; + void run(nes_time_t, nes_time_t); + void clock_linear_counter(); + void reset() + { + linear_counter = 0; + phase = 1; + Osc::reset(); + } + nes_time_t maintain_phase(nes_time_t time, nes_time_t end_time, nes_time_t timer_period); +}; + +// Noise +struct Noise : Envelope +{ + int noise; + Blip_Synth synth; + + void run(nes_time_t, nes_time_t); + void reset() + { + noise = 1 << 14; + Envelope::reset(); + } +}; + +// Dmc +struct Dmc : Osc +{ + int address; // address of next byte to read + int period; + // int length_counter; // bytes remaining to play (already defined in Osc) + int buf; + int bits_remain; + int bits; + bool buf_full; + bool silence; + + enum + { + loop_flag = 0x40 + }; + + int dac; + + nes_time_t next_irq; + bool irq_enabled; + bool irq_flag; + bool pal_mode; + bool nonlinear; + + int (*prg_reader)(void *, nes_addr_t); // needs to be initialized to prg read function + void *prg_reader_data; + + Apu *apu; + + Blip_Synth synth; + + void start(); + void write_register(int, int); + void run(nes_time_t, nes_time_t); + void recalc_irq(); + void fill_buffer(); + void reload_sample(); + void reset(); + int count_reads(nes_time_t, nes_time_t *) const; + nes_time_t next_read_time() const; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.cpp b/quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.cpp new file mode 100644 index 00000000000..1ea2b44007c --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.cpp @@ -0,0 +1,215 @@ + +// Snd_Emu 0.1.7. http://www.slack.net/~ant/ + +#include "apu_vrc6.hpp" + +/* Copyright (C) 2003-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +Vrc6_Apu::Vrc6_Apu() +{ + output(0); + volume(1.0); + reset(); +} + +Vrc6_Apu::~Vrc6_Apu() +{ +} + +void Vrc6_Apu::reset() +{ + last_time = 0; + for (int i = 0; i < osc_count; i++) + { + Vrc6_Osc &osc = oscs[i]; + for (int j = 0; j < reg_count; j++) + osc.regs[j] = 0; + osc.delay = 0; + osc.last_amp = 0; + osc.phase = 1; + osc.amp = 0; + } +} + +void Vrc6_Apu::output(Blip_Buffer *buf) +{ + for (int i = 0; i < osc_count; i++) + osc_output(i, buf); +} + +void Vrc6_Apu::run_until(nes_time_t time) +{ + run_square(oscs[0], time); + run_square(oscs[1], time); + run_saw(time); + last_time = time; +} + +void Vrc6_Apu::write_osc(nes_time_t time, int osc_index, int reg, int data) +{ + run_until(time); + oscs[osc_index].regs[reg] = data; +} + +void Vrc6_Apu::end_frame(nes_time_t time) +{ + if (time > last_time) + run_until(time); + + last_time -= time; +} + +void Vrc6_Apu::save_state(vrc6_apu_state_t *out) const +{ + out->saw_amp = oscs[2].amp; + for (int i = 0; i < osc_count; i++) + { + Vrc6_Osc const &osc = oscs[i]; + for (int r = 0; r < reg_count; r++) + out->regs[i][r] = osc.regs[r]; + + out->delays[i] = osc.delay; + out->phases[i] = osc.phase; + } +} + +void Vrc6_Apu::load_state(vrc6_apu_state_t const &in) +{ + reset(); + oscs[2].amp = in.saw_amp; + for (int i = 0; i < osc_count; i++) + { + Vrc6_Osc &osc = oscs[i]; + for (int r = 0; r < reg_count; r++) + osc.regs[r] = in.regs[i][r]; + + osc.delay = in.delays[i]; + osc.phase = in.phases[i]; + } + if (!oscs[2].phase) + oscs[2].phase = 1; + + // Run sound channels for 0 cycles for clean audio after loading state + this->run_until(this->last_time); +} + +void Vrc6_Apu::run_square(Vrc6_Osc &osc, nes_time_t end_time) +{ + Blip_Buffer *output = osc.output; + if (!output) + return; + + int volume = osc.regs[0] & 15; + if (!(osc.regs[2] & 0x80)) + volume = 0; + + int gate = osc.regs[0] & 0x80; + int duty = ((osc.regs[0] >> 4) & 7) + 1; + int delta = ((gate || osc.phase < duty) ? volume : 0) - osc.last_amp; + nes_time_t time = last_time; + if (delta) + { + osc.last_amp += delta; + square_synth.offset(time, delta, output); + } + + time += osc.delay; + osc.delay = 0; + int period = osc.period(); + if (volume && !gate && period > 4) + { + if (time < end_time) + { + int phase = osc.phase; + + do + { + phase++; + if (phase == 16) + { + phase = 0; + osc.last_amp = volume; + square_synth.offset(time, volume, output); + } + if (phase == duty) + { + osc.last_amp = 0; + square_synth.offset(time, -volume, output); + } + time += period; + } while (time < end_time); + + osc.phase = phase; + } + osc.delay = time - end_time; + } +} + +void Vrc6_Apu::run_saw(nes_time_t end_time) +{ + Vrc6_Osc &osc = oscs[2]; + Blip_Buffer *output = osc.output; + if (!output) + return; + + int amp = osc.amp; + int amp_step = osc.regs[0] & 0x3F; + nes_time_t time = last_time; + int last_amp = osc.last_amp; + if (!(osc.regs[2] & 0x80) || !(amp_step | amp)) + { + osc.delay = 0; + int delta = (amp >> 3) - last_amp; + last_amp = amp >> 3; + saw_synth.offset(time, delta, output); + } + else + { + time += osc.delay; + if (time < end_time) + { + int period = osc.period() * 2; + int phase = osc.phase; + + do + { + if (--phase == 0) + { + phase = 7; + amp = 0; + } + + int delta = (amp >> 3) - last_amp; + if (delta) + { + last_amp = amp >> 3; + saw_synth.offset(time, delta, output); + } + + time += period; + amp = (amp + amp_step) & 0xFF; + } while (time < end_time); + + osc.phase = phase; + osc.amp = amp; + } + + osc.delay = time - end_time; + } + + osc.last_amp = last_amp; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.hpp b/quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.hpp new file mode 100644 index 00000000000..40f03375cfc --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.hpp @@ -0,0 +1,112 @@ + +#pragma once + +// Konami VRC6 sound chip emulator +// Snd_Emu 0.1.7 + +#include "../apu.hpp" +#include "../blipBuffer.hpp" +#include + +namespace quickerNES +{ + +struct vrc6_apu_state_t; + +class Vrc6_Apu +{ + public: + Vrc6_Apu(); + ~Vrc6_Apu(); + + // See Apu.h for reference + void reset(); + void volume(double); + void treble_eq(blip_eq_t const &); + void output(Blip_Buffer *); + enum + { + osc_count = 3 + }; + void osc_output(int index, Blip_Buffer *); + void end_frame(nes_time_t); + void save_state(vrc6_apu_state_t *) const; + void load_state(vrc6_apu_state_t const &); + + // Oscillator 0 write-only registers are at $9000-$9002 + // Oscillator 1 write-only registers are at $A000-$A002 + // Oscillator 2 write-only registers are at $B000-$B002 + enum + { + reg_count = 3 + }; + enum + { + base_addr = 0x9000 + }; + enum + { + addr_step = 0x1000 + }; + void write_osc(nes_time_t, int osc, int reg, int data); + + private: + // noncopyable + Vrc6_Apu(const Vrc6_Apu &); + Vrc6_Apu &operator=(const Vrc6_Apu &); + + struct Vrc6_Osc + { + uint8_t regs[3]; + Blip_Buffer *output; + int delay; + int last_amp; + int phase; + int amp; // only used by saw + + int period() const + { + return (regs[2] & 0x0f) * 0x100L + regs[1] + 1; + } + }; + + Vrc6_Osc oscs[osc_count]; + nes_time_t last_time; + + Blip_Synth saw_synth; + Blip_Synth square_synth; + + void run_until(nes_time_t); + void run_square(Vrc6_Osc &osc, nes_time_t); + void run_saw(nes_time_t); +}; + +struct vrc6_apu_state_t +{ + uint8_t regs[3][3]; + uint8_t saw_amp; + uint16_t delays[3]; + uint8_t phases[3]; + uint8_t unused; +}; +static_assert(sizeof(vrc6_apu_state_t) == 20); + +inline void Vrc6_Apu::osc_output(int i, Blip_Buffer *buf) +{ + oscs[i].output = buf; +} + +inline void Vrc6_Apu::volume(double v) +{ + double const factor = 0.0967 * 2; + saw_synth.volume(factor / 31 * v); + square_synth.volume(factor * 0.5 / 15 * v); +} + +inline void Vrc6_Apu::treble_eq(blip_eq_t const &eq) +{ + saw_synth.treble_eq(eq); + square_synth.treble_eq(eq); +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.cpp b/quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.cpp new file mode 100644 index 00000000000..b9abb177ff9 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.cpp @@ -0,0 +1,211 @@ +#include "apu_vrc7.hpp" +#include "emu2413.hpp" +#include + +namespace quickerNES +{ + +#define BYTESWAP(xxxx) \ + { \ + uint32_t _temp = (uint32_t)(xxxx); \ + ((uint8_t *)&(xxxx))[0] = (uint8_t)((_temp) >> 24); \ + ((uint8_t *)&(xxxx))[1] = (uint8_t)((_temp) >> 16); \ + ((uint8_t *)&(xxxx))[2] = (uint8_t)((_temp) >> 8); \ + ((uint8_t *)&(xxxx))[3] = (uint8_t)((_temp) >> 0); \ + } + +static bool IsLittleEndian() +{ + int i = 42; + if (((char *)&i)[0] == 42) + { + return true; + } + return false; +} + +Vrc7::Vrc7() +{ + opll = OPLL_new(3579545); + output(NULL); + volume(1.0); + reset(); +} + +Vrc7::~Vrc7() +{ + OPLL_delete((OPLL *)opll); +} + +void Vrc7::reset() +{ + last_time = 0; + count = 0; + + for (int i = 0; i < osc_count; ++i) + { + Vrc7_Osc &osc = oscs[i]; + for (int j = 0; j < 3; ++j) + osc.regs[j] = 0; + osc.last_amp = 0; + } + + OPLL_reset((OPLL *)opll); +} + +void Vrc7::volume(double v) +{ + synth.volume(v * 1. / 3.); +} + +void Vrc7::treble_eq(blip_eq_t const &eq) +{ + synth.treble_eq(eq); +} + +void Vrc7::output(Blip_Buffer *buf) +{ + for (int i = 0; i < osc_count; i++) + osc_output(i, buf); +} + +void Vrc7::run_until(nes_time_t end_time) +{ + nes_time_t time = last_time; + + while (time < end_time) + { + if (++count == 36) + { + count = 0; + bool run = false; + for (unsigned i = 0; i < osc_count; ++i) + { + Vrc7_Osc &osc = oscs[i]; + if (osc.output) + { + if (!run) + { + run = true; + OPLL_run((OPLL *)opll); + } + int amp = OPLL_calcCh((OPLL *)opll, i); + int delta = amp - osc.last_amp; + if (delta) + { + osc.last_amp = amp; + synth.offset(time, delta, osc.output); + } + } + } + } + ++time; + } + + last_time = end_time; +} + +void Vrc7::write_reg(int data) +{ + OPLL_writeIO((OPLL *)opll, 0, data); +} + +void Vrc7::write_data(nes_time_t time, int data) +{ + if ((unsigned)(((OPLL *)opll)->adr - 0x10) < 0x36) + { + int type = ((OPLL *)opll)->adr >> 4; + int chan = ((OPLL *)opll)->adr & 15; + + if (chan < 6) oscs[chan].regs[type - 1] = data; + } + + run_until(time); + OPLL_writeIO((OPLL *)opll, 1, data); +} + +void Vrc7::end_frame(nes_time_t time) +{ + if (time > last_time) + run_until(time); + last_time -= time; +} + +void Vrc7::save_snapshot(vrc7_snapshot_t *out) +{ + out->latch = ((OPLL *)opll)->adr; + memcpy(out->inst, ((OPLL *)opll)->CustInst, 8); + for (int i = 0; i < osc_count; ++i) + { + for (int j = 0; j < 3; ++j) + { + out->regs[i][j] = oscs[i].regs[j]; + } + } + out->count = count; + out->internal_opl_state_size = sizeof(OPLL_STATE); + if (!IsLittleEndian()) + { + BYTESWAP(out->internal_opl_state_size); + } + OPLL_serialize((OPLL *)opll, &(out->internal_opl_state)); + OPLL_state_byteswap(&(out->internal_opl_state)); +} + +void Vrc7::load_snapshot(vrc7_snapshot_t &in, int dataSize) +{ + reset(); + write_reg(in.latch); + int i; + for (i = 0; i < osc_count; ++i) + { + for (int j = 0; j < 3; ++j) + { + oscs[i].regs[j] = in.regs[i][j]; + } + } + count = in.count; + + for (i = 0; i < 8; ++i) + { + OPLL_writeReg((OPLL *)opll, i, in.inst[i]); + } + + for (i = 0; i < 3; ++i) + { + for (int j = 0; j < 6; ++j) + { + OPLL_writeReg((OPLL *)opll, 0x10 + i * 0x10 + j, oscs[j].regs[i]); + } + } + if (!IsLittleEndian()) + { + BYTESWAP(in.internal_opl_state_size); + } + if (in.internal_opl_state_size == sizeof(OPLL_STATE)) + { + OPLL_state_byteswap(&(in.internal_opl_state)); + OPLL_deserialize((OPLL *)opll, &(in.internal_opl_state)); + } + update_last_amp(); +} + +void Vrc7::update_last_amp() +{ + for (unsigned i = 0; i < osc_count; ++i) + { + Vrc7_Osc &osc = oscs[i]; + if (osc.output) + { + int amp = OPLL_calcCh((OPLL *)opll, i); + int delta = amp - osc.last_amp; + if (delta) + { + osc.last_amp = amp; + synth.offset(last_time, delta, osc.output); + } + } + } +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.hpp b/quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.hpp new file mode 100644 index 00000000000..4b340362614 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.hpp @@ -0,0 +1,79 @@ + +#pragma once + +// Konami VRC7 sound chip emulator +// Snd_Emu 0.1.7. Copyright (C) 2003-2005 Shay Green. GNU LGPL license. + +#include "../blipBuffer.hpp" +#include "emu2413_state.hpp" +#include + +namespace quickerNES +{ + +struct vrc7_snapshot_t; +typedef long nes_time_t; + +class Vrc7 +{ + public: + Vrc7(); + ~Vrc7(); + + // See Apu.h for reference + void reset(); + void volume(double); + void treble_eq(blip_eq_t const &); + void output(Blip_Buffer *); + enum + { + osc_count = 6 + }; + void osc_output(int index, Blip_Buffer *); + void end_frame(nes_time_t); + void save_snapshot(vrc7_snapshot_t *); + void load_snapshot(vrc7_snapshot_t &, int dataSize); + void update_last_amp(); + + void write_reg(int reg); + void write_data(nes_time_t, int data); + + private: + // noncopyable + Vrc7(const Vrc7 &); + Vrc7 &operator=(const Vrc7 &); + + struct Vrc7_Osc + { + uint8_t regs[3]; + Blip_Buffer *output; + int last_amp; + }; + + void *opll; + nes_time_t last_time; + + Blip_Synth synth; // DB2LIN_AMP_BITS == 11, * 2 + int count; + Vrc7_Osc oscs[osc_count]; + + void run_until(nes_time_t); +}; + +struct vrc7_snapshot_t +{ + uint8_t latch; + uint8_t inst[8]; + uint8_t regs[6][3]; + uint8_t count; + int internal_opl_state_size; + OPLL_STATE internal_opl_state; +}; +static_assert(sizeof(vrc7_snapshot_t) == 28 + 440 + 4); + +inline void Vrc7::osc_output(int i, Blip_Buffer *buf) +{ + oscs[i].output = buf; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc7/emu2413.cpp b/quicknes/source/quickerNES/core/apu/vrc7/emu2413.cpp new file mode 100644 index 00000000000..deca0d74dd5 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/vrc7/emu2413.cpp @@ -0,0 +1,1155 @@ +/* +Permission is granted to anyone to use this software for any purpose, +including commercial applications. To alter this software and redistribute it freely, +if the origin of this software is not misrepresented. +*/ + +/* This software has been heavily modified for VRC7. To get a stock YM2413 emulator, download + MSXplug. +*/ + +/*********************************************************************************** + + emu2413.c -- YM2413 emulator written by Mitsutaka Okazaki 2001 + + 2001 01-08 : Version 0.10 -- 1st version. + 2001 01-15 : Version 0.20 -- semi-public version. + 2001 01-16 : Version 0.30 -- 1st public version. + 2001 01-17 : Version 0.31 -- Fixed bassdrum problem. + : Version 0.32 -- LPF implemented. + 2001 01-18 : Version 0.33 -- Fixed the drum problem, refine the mix-down method. + -- Fixed the LFO bug. + 2001 01-24 : Version 0.35 -- Fixed the drum problem, + support undocumented EG behavior. + 2001 02-02 : Version 0.38 -- Improved the performance. + Fixed the hi-hat and cymbal model. + Fixed the default percussive datas. + Noise reduction. + Fixed the feedback problem. + 2001 03-03 : Version 0.39 -- Fixed some drum bugs. + Improved the performance. + 2001 03-04 : Version 0.40 -- Improved the feedback. + Change the default table size. + Clock and Rate can be changed during play. + 2001 06-24 : Version 0.50 -- Improved the hi-hat and the cymbal tone. + Added VRC7 patch (OPLL_reset_patch is changed). + Fixed OPLL_reset() bug. + Added OPLL_setMask, OPLL_getMask and OPLL_toggleMask. + Added OPLL_writeIO. + 2001 09-28 : Version 0.51 -- Removed the noise table. + 2002 01-28 : Version 0.52 -- Added Stereo mode. + 2002 02-07 : Version 0.53 -- Fixed some drum bugs. + 2002 02-20 : Version 0.54 -- Added the best quality mode. + 2002 03-02 : Version 0.55 -- Removed OPLL_init & OPLL_close. + 2002 05-30 : Version 0.60 -- Fixed HH&CYM generator and all voice datas. + + 2004 01-24 : Modified by xodnizel to remove code not needed for the VRC7, among other things. + + References: + fmopl.c -- 1999,2000 written by Tatsuyuki Satoh (MAME development). + fmopl.c(fixed) -- (C) 2002 Jarek Burczynski. + s_opl.c -- 2001 written by Mamiya (NEZplug development). + fmgen.cpp -- 1999,2000 written by cisc. + fmpac.ill -- 2000 created by NARUTO. + MSX-Datapack + YMU757 data sheet + YM2143 data sheet + +**************************************************************************************/ +#include "emu2413.hpp" +#include +#include +#include + +namespace quickerNES +{ + +static const unsigned char default_inst[15][8] = { + /* 2019-03-19 VRC7 instrument patchset dumped by Nuke.YKT */ + /* https://wiki.nesdev.com/w/index.php/VRC7_audio */ + {0x03, 0x21, 0x05, 0x06, 0xE8, 0x81, 0x42, 0x27}, + {0x13, 0x41, 0x14, 0x0D, 0xD8, 0xF6, 0x23, 0x12}, + {0x11, 0x11, 0x08, 0x08, 0xFA, 0xB2, 0x20, 0x12}, + {0x31, 0x61, 0x0C, 0x07, 0xA8, 0x64, 0x61, 0x27}, + {0x32, 0x21, 0x1E, 0x06, 0xE1, 0x76, 0x01, 0x28}, + {0x02, 0x01, 0x06, 0x00, 0xA3, 0xE2, 0xF4, 0xF4}, + {0x21, 0x61, 0x1D, 0x07, 0x82, 0x81, 0x11, 0x07}, + {0x23, 0x21, 0x22, 0x17, 0xA2, 0x72, 0x01, 0x17}, + {0x35, 0x11, 0x25, 0x00, 0x40, 0x73, 0x72, 0x01}, + {0xB5, 0x01, 0x0F, 0x0F, 0xA8, 0xA5, 0x51, 0x02}, + {0x17, 0xC1, 0x24, 0x07, 0xF8, 0xF8, 0x22, 0x12}, + {0x71, 0x23, 0x11, 0x06, 0x65, 0x74, 0x18, 0x16}, + {0x01, 0x02, 0xD3, 0x05, 0xC9, 0x95, 0x03, 0x02}, + {0x61, 0x63, 0x0C, 0x00, 0x94, 0xC0, 0x33, 0xF6}, + {0x21, 0x72, 0x0D, 0x00, 0xC1, 0xD5, 0x56, 0x06}}; + +#define EG2DB(d) ((d) * (e_int32)(EG_STEP / DB_STEP)) +#define TL2EG(d) ((d) * (e_int32)(TL_STEP / EG_STEP)) +#define SL2EG(d) ((d) * (e_int32)(SL_STEP / EG_STEP)) + +#define DB_POS(x) (e_uint32)((x) / DB_STEP) +#define DB_NEG(x) (e_uint32)(DB_MUTE + DB_MUTE + (x) / DB_STEP) + +/* Bits for liner value */ +#define DB2LIN_AMP_BITS 11 +#define SLOT_AMP_BITS (DB2LIN_AMP_BITS) + +/* Bits for envelope phase incremental counter */ +#define EG_DP_BITS 22 +#define EG_DP_WIDTH (1 << EG_DP_BITS) + +/* PM table is calcurated by PM_AMP * pow(2,PM_DEPTH*sin(x)/1200) */ +#define PM_AMP_BITS 8 +#define PM_AMP (1 << PM_AMP_BITS) + +/* PM speed(Hz) and depth(cent) */ +#define PM_SPEED 6.4 +#define PM_DEPTH 13.75 + +/* AM speed(Hz) and depth(dB) */ +#define AM_SPEED 3.7 +// #define AM_DEPTH 4.8 +#define AM_DEPTH 2.4 + +/* Cut the lower b bit(s) off. */ +#define HIGHBITS(c, b) ((c) >> (b)) + +/* Leave the lower b bit(s). */ +#define LOWBITS(c, b) ((c) & ((1 << (b)) - 1)) + +/* Expand x which is s bits to d bits. */ +#define EXPAND_BITS(x, s, d) ((x) << ((d) - (s))) + +/* Expand x which is s bits to d bits and fill expanded bits '1' */ +#define EXPAND_BITS_X(x, s, d) (((x) << ((d) - (s))) | ((1 << ((d) - (s))) - 1)) + +#define MOD(o, x) (&(o)->slot[(x) << 1]) +#define CAR(o, x) (&(o)->slot[((x) << 1) | 1]) + +#define BIT(s, b) (((s) >> (b)) & 1) + +/* Definition of envelope mode */ +enum +{ + SETTLE, + ATTACK, + DECAY, + SUSHOLD, + SUSTINE, + RELEASE, + FINISH +}; + +/*************************************************** + + Create tables + +****************************************************/ +INLINE static e_int32 Min(e_int32 i, e_int32 j) +{ + if (i < j) + return i; + else + return j; +} + +/* Table for AR to LogCurve. */ +static void makeAdjustTable(OPLL *opll) +{ + e_int32 i; + + opll->AR_ADJUST_TABLE[0] = (1 << EG_BITS); + for (i = 1; i < 128; i++) + opll->AR_ADJUST_TABLE[i] = (e_uint16)((double)(1 << EG_BITS) - 1 - (1 << EG_BITS) * log((double)i) / log(128.)); +} + +/* Table for dB(0 -- (1<DB2LIN_TABLE[i] = (e_int16)((double)((1 << DB2LIN_AMP_BITS) - 1) * powf(10, -(double)i * DB_STEP / 20)); + if (i >= DB_MUTE) opll->DB2LIN_TABLE[i] = 0; + opll->DB2LIN_TABLE[i + DB_MUTE + DB_MUTE] = (e_int16)(-opll->DB2LIN_TABLE[i]); + } +} + +/* Liner(+0.0 - +1.0) to dB((1<fullsintable[i] = (e_uint32)lin2db(sin(2.0 * PI * i / PG_WIDTH)); + } + + for (i = 0; i < PG_WIDTH / 4; i++) + { + opll->fullsintable[PG_WIDTH / 2 - 1 - i] = opll->fullsintable[i]; + } + + for (i = 0; i < PG_WIDTH / 2; i++) + { + opll->fullsintable[PG_WIDTH / 2 + i] = (e_uint32)(DB_MUTE + DB_MUTE + opll->fullsintable[i]); + } + + for (i = 0; i < PG_WIDTH / 2; i++) + opll->halfsintable[i] = opll->fullsintable[i]; + for (i = PG_WIDTH / 2; i < PG_WIDTH; i++) + opll->halfsintable[i] = opll->fullsintable[0]; +} + +/* Table for Pitch Modulator */ +static void makePmTable(OPLL *opll) +{ + e_int32 i; + + for (i = 0; i < PM_PG_WIDTH; i++) + opll->pmtable[i] = (e_int32)((double)PM_AMP * powf(2, (double)PM_DEPTH * sin(2.0 * PI * i / PM_PG_WIDTH) / 1200)); +} + +/* Table for Amp Modulator */ +static void makeAmTable(OPLL *opll) +{ + e_int32 i; + + for (i = 0; i < AM_PG_WIDTH; i++) + opll->amtable[i] = (e_int32)((double)AM_DEPTH / 2 / DB_STEP * (1.0 + sin(2.0 * PI * i / PM_PG_WIDTH))); +} + +/* Phase increment counter table */ +static void makeDphaseTable(OPLL *opll) +{ + e_uint32 fnum, block, ML; + e_uint32 mltable[16] = + {1, 1 * 2, 2 * 2, 3 * 2, 4 * 2, 5 * 2, 6 * 2, 7 * 2, 8 * 2, 9 * 2, 10 * 2, 10 * 2, 12 * 2, 12 * 2, 15 * 2, 15 * 2}; + + for (fnum = 0; fnum < 512; fnum++) + for (block = 0; block < 8; block++) + for (ML = 0; ML < 16; ML++) + opll->dphaseTable[fnum][block][ML] = (((fnum * mltable[ML]) << block) >> (20 - DP_BITS)); +} + +static void makeTllTable(OPLL *opll) +{ +#define dB2(x) ((x) * 2) + + static const double kltable[16] = { + dB2(0.000), dB2(9.000), dB2(12.000), dB2(13.875), dB2(15.000), dB2(16.125), dB2(16.875), dB2(17.625), dB2(18.000), dB2(18.750), dB2(19.125), dB2(19.500), dB2(19.875), dB2(20.250), dB2(20.625), dB2(21.000)}; + + e_int32 tmp; + e_int32 fnum, block, TL, KL; + + for (fnum = 0; fnum < 16; fnum++) + for (block = 0; block < 8; block++) + for (TL = 0; TL < 64; TL++) + for (KL = 0; KL < 4; KL++) + { + if (KL == 0) + { + opll->tllTable[fnum][block][TL][KL] = TL2EG(TL); + } + else + { + tmp = (e_int32)(kltable[fnum] - dB2(3.000) * (7 - block)); + if (tmp <= 0) + opll->tllTable[fnum][block][TL][KL] = TL2EG(TL); + else + opll->tllTable[fnum][block][TL][KL] = (e_uint32)((tmp >> (3 - KL)) / EG_STEP) + TL2EG(TL); + } + } +} + +#ifdef USE_SPEC_ENV_SPEED +static const double attacktime[16][4] = { + {0, 0, 0, 0}, + {1730.15, 1400.60, 1153.43, 988.66}, + {865.08, 700.30, 576.72, 494.33}, + {432.54, 350.15, 288.36, 247.16}, + {216.27, 175.07, 144.18, 123.58}, + {108.13, 87.54, 72.09, 61.79}, + {54.07, 43.77, 36.04, 30.90}, + {27.03, 21.88, 18.02, 15.45}, + {13.52, 10.94, 9.01, 7.72}, + {6.76, 5.47, 4.51, 3.86}, + {3.38, 2.74, 2.25, 1.93}, + {1.69, 1.37, 1.13, 0.97}, + {0.84, 0.70, 0.60, 0.54}, + {0.50, 0.42, 0.34, 0.30}, + {0.28, 0.22, 0.18, 0.14}, + {0.00, 0.00, 0.00, 0.00}}; + +static const double decaytime[16][4] = { + {0, 0, 0, 0}, + {20926.60, 16807.20, 14006.00, 12028.60}, + {10463.30, 8403.58, 7002.98, 6014.32}, + {5231.64, 4201.79, 3501.49, 3007.16}, + {2615.82, 2100.89, 1750.75, 1503.58}, + {1307.91, 1050.45, 875.37, 751.79}, + {653.95, 525.22, 437.69, 375.90}, + {326.98, 262.61, 218.84, 187.95}, + {163.49, 131.31, 109.42, 93.97}, + {81.74, 65.65, 54.71, 46.99}, + {40.87, 32.83, 27.36, 23.49}, + {20.44, 16.41, 13.68, 11.75}, + {10.22, 8.21, 6.84, 5.87}, + {5.11, 4.10, 3.42, 2.94}, + {2.55, 2.05, 1.71, 1.47}, + {1.27, 1.27, 1.27, 1.27}}; +#endif + +/* Rate Table for Attack */ +static void makeDphaseARTable(OPLL *opll) +{ + e_int32 AR, Rks, RM, RL; +#ifdef USE_SPEC_ENV_SPEED + e_uint32 attacktable[16][4]; + + for (RM = 0; RM < 16; RM++) + for (RL = 0; RL < 4; RL++) + { + if (RM == 0) + attacktable[RM][RL] = 0; + else if (RM == 15) + attacktable[RM][RL] = EG_DP_WIDTH; + else + attacktable[RM][RL] = (e_uint32)((double)(1 << EG_DP_BITS) / (attacktime[RM][RL] * 3579545 / 72000)); + } +#endif + + for (AR = 0; AR < 16; AR++) + for (Rks = 0; Rks < 16; Rks++) + { + RM = AR + (Rks >> 2); + RL = Rks & 3; + if (RM > 15) + RM = 15; + switch (AR) + { + case 0: + opll->dphaseARTable[AR][Rks] = 0; + break; + case 15: + opll->dphaseARTable[AR][Rks] = 0; /*EG_DP_WIDTH;*/ + break; + default: +#ifdef USE_SPEC_ENV_SPEED + opll->dphaseARTable[AR][Rks] = (attacktable[RM][RL]); +#else + opll->dphaseARTable[AR][Rks] = ((3 * (RL + 4) << (RM + 1))); +#endif + break; + } + } +} + +/* Rate Table for Decay and Release */ +static void makeDphaseDRTable(OPLL *opll) +{ + e_int32 DR, Rks, RM, RL; + +#ifdef USE_SPEC_ENV_SPEED + e_uint32 decaytable[16][4]; + + for (RM = 0; RM < 16; RM++) + for (RL = 0; RL < 4; RL++) + if (RM == 0) + decaytable[RM][RL] = 0; + else + decaytable[RM][RL] = (e_uint32)((double)(1 << EG_DP_BITS) / (decaytime[RM][RL] * 3579545 / 72000)); +#endif + + for (DR = 0; DR < 16; DR++) + for (Rks = 0; Rks < 16; Rks++) + { + RM = DR + (Rks >> 2); + RL = Rks & 3; + if (RM > 15) + RM = 15; + switch (DR) + { + case 0: + opll->dphaseDRTable[DR][Rks] = 0; + break; + default: +#ifdef USE_SPEC_ENV_SPEED + opll->dphaseDRTable[DR][Rks] = (decaytable[RM][RL]); +#else + opll->dphaseDRTable[DR][Rks] = ((RL + 4) << (RM - 1)); +#endif + break; + } + } +} + +static void makeRksTable(OPLL *opll) +{ + e_int32 fnum8, block, KR; + + for (fnum8 = 0; fnum8 < 2; fnum8++) + for (block = 0; block < 8; block++) + for (KR = 0; KR < 2; KR++) + { + if (KR != 0) + opll->rksTable[fnum8][block][KR] = (block << 1) + fnum8; + else + opll->rksTable[fnum8][block][KR] = block >> 1; + } +} + +/************************************************************ + + Calc Parameters + +************************************************************/ + +INLINE static e_uint32 calc_eg_dphase(OPLL *opll, OPLL_SLOT *slot) +{ + switch (slot->eg_mode) + { + case ATTACK: + return opll->dphaseARTable[slot->patch.AR][slot->rks]; + + case DECAY: + return opll->dphaseDRTable[slot->patch.DR][slot->rks]; + + case SUSHOLD: + return 0; + + case SUSTINE: + return opll->dphaseDRTable[slot->patch.RR][slot->rks]; + + case RELEASE: + if (slot->sustine) + return opll->dphaseDRTable[5][slot->rks]; + else if (slot->patch.EG) + return opll->dphaseDRTable[slot->patch.RR][slot->rks]; + else + return opll->dphaseDRTable[7][slot->rks]; + + case FINISH: + return 0; + + default: + return 0; + } +} + +/************************************************************* + + OPLL internal interfaces + +*************************************************************/ + +#define UPDATE_PG(S) (S)->dphase = opll->dphaseTable[(S)->fnum][(S)->block][(S)->patch.ML] +#define UPDATE_TLL(S) \ + (((S)->type == 0) ? ((S)->tll = opll->tllTable[((S)->fnum) >> 5][(S)->block][(S)->patch.TL][(S)->patch.KL]) : ((S)->tll = opll->tllTable[((S)->fnum) >> 5][(S)->block][(S)->volume][(S)->patch.KL])) +#define UPDATE_RKS(S) (S)->rks = opll->rksTable[((S)->fnum) >> 8][(S)->block][(S)->patch.KR] +#define UPDATE_WF(S) (S)->sintbl = opll->waveform[(S)->patch.WF] +#define UPDATE_EG(S) (S)->eg_dphase = calc_eg_dphase(opll, S) +#define UPDATE_ALL(S) \ + UPDATE_PG(S); \ + UPDATE_TLL(S); \ + UPDATE_RKS(S); \ + UPDATE_WF(S); \ + UPDATE_EG(S) /* EG should be updated last. */ + +/* Slot key on */ +INLINE static void slotOn(OPLL_SLOT *slot) +{ + slot->eg_mode = ATTACK; + slot->eg_phase = 0; + slot->phase = 0; +} + +/* Slot key off */ +INLINE static void slotOff(OPLL *opll, OPLL_SLOT *slot) +{ + if (slot->eg_mode == ATTACK) + slot->eg_phase = EXPAND_BITS(opll->AR_ADJUST_TABLE[HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS)], EG_BITS, EG_DP_BITS); + slot->eg_mode = RELEASE; +} + +/* Channel key on */ +INLINE static void keyOn(OPLL *opll, e_int32 i) +{ + if (!opll->slot_on_flag[i * 2]) + slotOn(MOD(opll, i)); + if (!opll->slot_on_flag[i * 2 + 1]) + slotOn(CAR(opll, i)); + opll->key_status[i] = 1; +} + +/* Channel key off */ +INLINE static void keyOff(OPLL *opll, e_int32 i) +{ + if (opll->slot_on_flag[i * 2 + 1]) + slotOff(opll, CAR(opll, i)); + opll->key_status[i] = 0; +} + +/* Set sustine parameter */ +INLINE static void setSustine(OPLL *opll, e_int32 c, e_int32 sustine) +{ + CAR(opll, c)->sustine = sustine; + if (MOD(opll, c)->type) + MOD(opll, c)->sustine = sustine; +} + +/* Volume : 6bit ( Volume register << 2 ) */ +INLINE static void setVolume(OPLL *opll, e_int32 c, e_int32 volume) +{ + CAR(opll, c)->volume = volume; +} + +/* Set F-Number ( fnum : 9bit ) */ +INLINE static void setFnumber(OPLL *opll, e_int32 c, e_int32 fnum) +{ + CAR(opll, c)->fnum = fnum; + MOD(opll, c)->fnum = fnum; +} + +/* Set Block data (block : 3bit ) */ +INLINE static void setBlock(OPLL *opll, e_int32 c, e_int32 block) +{ + CAR(opll, c)->block = block; + MOD(opll, c)->block = block; +} + +INLINE static void update_key_status(OPLL *opll) +{ + int ch; + + for (ch = 0; ch < 6; ch++) + opll->slot_on_flag[ch * 2] = opll->slot_on_flag[ch * 2 + 1] = (opll->HiFreq[ch]) & 0x10; +} + +/*********************************************************** + + Initializing + +***********************************************************/ + +static void OPLL_SLOT_reset(OPLL *opll, OPLL_SLOT *slot, int type) +{ + slot->type = type; + slot->sintbl = opll->waveform[0]; + slot->phase = 0; + slot->dphase = 0; + slot->output[0] = 0; + slot->output[1] = 0; + slot->feedback = 0; + slot->eg_mode = SETTLE; + slot->eg_phase = EG_DP_WIDTH; + slot->eg_dphase = 0; + slot->rks = 0; + slot->tll = 0; + slot->sustine = 0; + slot->fnum = 0; + slot->block = 0; + slot->volume = 0; + slot->pgout = 0; + slot->egout = 0; +} + +static void internal_refresh(OPLL *opll) +{ + makeDphaseTable(opll); + makeDphaseARTable(opll); + makeDphaseDRTable(opll); + opll->pm_dphase = (e_uint32)(PM_SPEED * PM_DP_WIDTH / (opll->clk / 72)); + opll->am_dphase = (e_uint32)(AM_SPEED * AM_DP_WIDTH / (opll->clk / 72)); +} + +static void maketables(OPLL *opll, e_uint32 c) +{ + opll->clk = c; + makePmTable(opll); + makeAmTable(opll); + makeDB2LinTable(opll); + makeAdjustTable(opll); + makeTllTable(opll); + makeRksTable(opll); + makeSinTable(opll); + // makeDefaultPatch (); + internal_refresh(opll); +} + +OPLL *OPLL_new(e_uint32 clk) +{ + OPLL *opll; + + opll = (OPLL *)calloc(sizeof(OPLL), 1); + if (opll == NULL) + return NULL; + maketables(opll, clk); + + opll->waveform[0] = opll->fullsintable; + opll->waveform[1] = opll->halfsintable; + + opll->mask = 0; + + OPLL_reset(opll); + + return opll; +} + +void OPLL_delete(OPLL *opll) +{ + free(opll); +} + +/* Reset whole of OPLL except patch datas. */ +void OPLL_reset(OPLL *opll) +{ + e_int32 i; + + if (!opll) + return; + + opll->adr = 0; + opll->out = 0; + + opll->pm_phase = 0; + opll->am_phase = 0; + + opll->mask = 0; + + for (i = 0; i < 12; i++) + OPLL_SLOT_reset(opll, &opll->slot[i], i % 2); + + for (i = 0; i < 6; i++) + { + opll->key_status[i] = 0; + // setPatch (opll, i, 0); + } + + for (i = 0; i < 0x40; i++) + OPLL_writeReg(opll, i, 0); +} + +/* Force Refresh (When external program changes some parameters). */ +void OPLL_forceRefresh(OPLL *opll) +{ + e_int32 i; + + if (opll == NULL) + return; + + for (i = 0; i < 12; i++) + { + UPDATE_PG(&opll->slot[i]); + UPDATE_RKS(&opll->slot[i]); + UPDATE_TLL(&opll->slot[i]); + UPDATE_WF(&opll->slot[i]); + UPDATE_EG(&opll->slot[i]); + } +} + +/********************************************************* + + Generate wave data + +*********************************************************/ +/* Convert Amp(0 to EG_HEIGHT) to Phase(0 to 2PI). */ +#if (SLOT_AMP_BITS - PG_BITS) > 0 + #define wave2_2pi(e) ((e) >> (SLOT_AMP_BITS - PG_BITS)) +#else + #define wave2_2pi(e) ((e) << (PG_BITS - SLOT_AMP_BITS)) +#endif + +/* Convert Amp(0 to EG_HEIGHT) to Phase(0 to 4PI). */ +#if (SLOT_AMP_BITS - PG_BITS - 1) == 0 + #define wave2_4pi(e) (e) +#elif (SLOT_AMP_BITS - PG_BITS - 1) > 0 + #define wave2_4pi(e) ((e) >> (SLOT_AMP_BITS - PG_BITS - 1)) +#else + #define wave2_4pi(e) ((e) << (1 + PG_BITS - SLOT_AMP_BITS)) +#endif + +/* Convert Amp(0 to EG_HEIGHT) to Phase(0 to 8PI). */ +#if (SLOT_AMP_BITS - PG_BITS - 2) == 0 + #define wave2_8pi(e) (e) +#elif (SLOT_AMP_BITS - PG_BITS - 2) > 0 + #define wave2_8pi(e) ((e) >> (SLOT_AMP_BITS - PG_BITS - 2)) +#else + #define wave2_8pi(e) ((e) << (2 + PG_BITS - SLOT_AMP_BITS)) +#endif + +/* Update AM, PM unit */ +static void update_ampm(OPLL *opll) +{ + opll->pm_phase = (opll->pm_phase + opll->pm_dphase) & (PM_DP_WIDTH - 1); + opll->am_phase = (opll->am_phase + opll->am_dphase) & (AM_DP_WIDTH - 1); + opll->lfo_am = opll->amtable[HIGHBITS(opll->am_phase, AM_DP_BITS - AM_PG_BITS)]; + opll->lfo_pm = opll->pmtable[HIGHBITS(opll->pm_phase, PM_DP_BITS - PM_PG_BITS)]; +} + +/* PG */ +INLINE static void +calc_phase(OPLL_SLOT *slot, e_int32 lfo) +{ + if (slot->patch.PM) + slot->phase += (slot->dphase * lfo) >> PM_AMP_BITS; + else + slot->phase += slot->dphase; + + slot->phase &= (DP_WIDTH - 1); + + slot->pgout = HIGHBITS(slot->phase, DP_BASE_BITS); +} + +/* EG */ +static void calc_envelope(OPLL *opll, OPLL_SLOT *slot, e_int32 lfo) +{ +#define S2E(x) (SL2EG((e_int32)(x / SL_STEP)) << (EG_DP_BITS - EG_BITS)) + + static const e_uint32 SL[16] = { + S2E(0.0), S2E(3.0), S2E(6.0), S2E(9.0), S2E(12.0), S2E(15.0), S2E(18.0), S2E(21.0), S2E(24.0), S2E(27.0), S2E(30.0), S2E(33.0), S2E(36.0), S2E(39.0), S2E(42.0), S2E(48.0)}; + + e_uint32 egout; + + switch (slot->eg_mode) + { + case ATTACK: + egout = opll->AR_ADJUST_TABLE[HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS)]; + slot->eg_phase += slot->eg_dphase; + if ((EG_DP_WIDTH & slot->eg_phase) || (slot->patch.AR == 15)) + { + egout = 0; + slot->eg_phase = 0; + slot->eg_mode = DECAY; + UPDATE_EG(slot); + } + break; + + case DECAY: + egout = HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS); + slot->eg_phase += slot->eg_dphase; + if (slot->eg_phase >= SL[slot->patch.SL]) + { + if (slot->patch.EG) + { + slot->eg_phase = SL[slot->patch.SL]; + slot->eg_mode = SUSHOLD; + UPDATE_EG(slot); + } + else + { + slot->eg_phase = SL[slot->patch.SL]; + slot->eg_mode = SUSTINE; + UPDATE_EG(slot); + } + } + break; + + case SUSHOLD: + egout = HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS); + if (slot->patch.EG == 0) + { + slot->eg_mode = SUSTINE; + UPDATE_EG(slot); + } + break; + + case SUSTINE: + case RELEASE: + egout = HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS); + slot->eg_phase += slot->eg_dphase; + if (egout >= (1 << EG_BITS)) + { + slot->eg_mode = FINISH; + egout = (1 << EG_BITS) - 1; + } + break; + + case FINISH: + egout = (1 << EG_BITS) - 1; + break; + + default: + egout = (1 << EG_BITS) - 1; + break; + } + + if (slot->patch.AM) + egout = EG2DB(egout + slot->tll) + lfo; + else + egout = EG2DB(egout + slot->tll); + + if (egout >= DB_MUTE) + egout = DB_MUTE - 1; + + slot->egout = egout; +} + +/* CARRIOR */ +INLINE static e_int32 calc_slot_car(OPLL *opll, OPLL_SLOT *slot, e_int32 fm) +{ + slot->output[1] = slot->output[0]; + + if (slot->egout >= (DB_MUTE - 1)) + { + slot->output[0] = 0; + } + else + { + slot->output[0] = opll->DB2LIN_TABLE[slot->sintbl[(slot->pgout + wave2_8pi(fm)) & (PG_WIDTH - 1)] + slot->egout]; + } + + return (slot->output[1] + slot->output[0]) >> 1; +} + +/* MODULATOR */ +INLINE static e_int32 calc_slot_mod(OPLL *opll, OPLL_SLOT *slot) +{ + e_int32 fm; + + slot->output[1] = slot->output[0]; + + if (slot->egout >= (DB_MUTE - 1)) + { + slot->output[0] = 0; + } + else if (slot->patch.FB != 0) + { + fm = wave2_4pi(slot->feedback) >> (7 - slot->patch.FB); + slot->output[0] = opll->DB2LIN_TABLE[slot->sintbl[(slot->pgout + fm) & (PG_WIDTH - 1)] + slot->egout]; + } + else + { + slot->output[0] = opll->DB2LIN_TABLE[slot->sintbl[slot->pgout] + slot->egout]; + } + + slot->feedback = (slot->output[1] + slot->output[0]) >> 1; + + return slot->feedback; +} + +static INLINE e_int16 calc(OPLL *opll) +{ + e_int32 inst = 0, out = 0; + e_int32 i; + + update_ampm(opll); + + for (i = 0; i < 12; i++) + { + calc_phase(&opll->slot[i], opll->lfo_pm); + calc_envelope(opll, &opll->slot[i], opll->lfo_am); + } + + for (i = 0; i < 6; i++) + if (!(opll->mask & OPLL_MASK_CH(i)) && (CAR(opll, i)->eg_mode != FINISH)) + inst += calc_slot_car(opll, CAR(opll, i), calc_slot_mod(opll, MOD(opll, i))); + + out = inst; + return (e_int16)out; +} + +static INLINE void run(OPLL *opll) +{ + e_int32 i; + + update_ampm(opll); + + for (i = 0; i < 12; i++) + { + calc_phase(&opll->slot[i], opll->lfo_pm); + calc_envelope(opll, &opll->slot[i], opll->lfo_am); + } +} + +static INLINE e_int16 calc_ch(OPLL *opll, int ch) +{ + if (/*!(opll->mask & OPLL_MASK_CH (i)) &&*/ (CAR(opll, ch)->eg_mode != FINISH)) + return calc_slot_car(opll, CAR(opll, ch), calc_slot_mod(opll, MOD(opll, ch))); + else + return 0; +} + +e_int16 OPLL_calc(OPLL *opll) +{ + return calc(opll); +} + +void OPLL_run(OPLL *opll) +{ + run(opll); +} + +e_uint32 OPLL_calcCh(OPLL *opll, e_uint32 ch) +{ + return calc_ch(opll, ch); +} + +e_uint32 +OPLL_setMask(OPLL *opll, e_uint32 mask) +{ + e_uint32 ret; + + if (opll) + { + ret = opll->mask; + opll->mask = mask; + return ret; + } + else + return 0; +} + +e_uint32 +OPLL_toggleMask(OPLL *opll, e_uint32 mask) +{ + e_uint32 ret; + + if (opll) + { + ret = opll->mask; + opll->mask ^= mask; + return ret; + } + else + return 0; +} + +/**************************************************** + + I/O Ctrl + +*****************************************************/ + +static void setInstrument(OPLL *opll, e_uint i, e_uint inst) +{ + const e_uint8 *src; + OPLL_PATCH *modp, *carp; + + opll->patch_number[i] = inst; + + if (inst) + src = default_inst[inst - 1]; + else + src = opll->CustInst; + + modp = &MOD(opll, i)->patch; + carp = &CAR(opll, i)->patch; + + modp->AM = (src[0] >> 7) & 1; + modp->PM = (src[0] >> 6) & 1; + modp->EG = (src[0] >> 5) & 1; + modp->KR = (src[0] >> 4) & 1; + modp->ML = (src[0] & 0xF); + + carp->AM = (src[1] >> 7) & 1; + carp->PM = (src[1] >> 6) & 1; + carp->EG = (src[1] >> 5) & 1; + carp->KR = (src[1] >> 4) & 1; + carp->ML = (src[1] & 0xF); + + modp->KL = (src[2] >> 6) & 3; + modp->TL = (src[2] & 0x3F); + + carp->KL = (src[3] >> 6) & 3; + carp->WF = (src[3] >> 4) & 1; + + modp->WF = (src[3] >> 3) & 1; + + modp->FB = (src[3]) & 7; + + modp->AR = (src[4] >> 4) & 0xF; + modp->DR = (src[4] & 0xF); + + carp->AR = (src[5] >> 4) & 0xF; + carp->DR = (src[5] & 0xF); + + modp->SL = (src[6] >> 4) & 0xF; + modp->RR = (src[6] & 0xF); + + carp->SL = (src[7] >> 4) & 0xF; + carp->RR = (src[7] & 0xF); +} + +void OPLL_writeReg(OPLL *opll, e_uint32 reg, e_uint32 data) +{ + e_int32 i, v, ch; + + data = data & 0xff; + reg = reg & 0x3f; + + switch (reg) + { + case 0x00: + opll->CustInst[0] = data; + for (i = 0; i < 6; i++) + { + if (opll->patch_number[i] == 0) + { + setInstrument(opll, i, 0); + UPDATE_PG(MOD(opll, i)); + UPDATE_RKS(MOD(opll, i)); + UPDATE_EG(MOD(opll, i)); + } + } + break; + + case 0x01: + opll->CustInst[1] = data; + for (i = 0; i < 6; i++) + { + if (opll->patch_number[i] == 0) + { + setInstrument(opll, i, 0); + UPDATE_PG(CAR(opll, i)); + UPDATE_RKS(CAR(opll, i)); + UPDATE_EG(CAR(opll, i)); + } + } + break; + + case 0x02: + opll->CustInst[2] = data; + for (i = 0; i < 6; i++) + { + if (opll->patch_number[i] == 0) + { + setInstrument(opll, i, 0); + UPDATE_TLL(MOD(opll, i)); + } + } + break; + + case 0x03: + opll->CustInst[3] = data; + for (i = 0; i < 6; i++) + { + if (opll->patch_number[i] == 0) + { + setInstrument(opll, i, 0); + UPDATE_WF(MOD(opll, i)); + UPDATE_WF(CAR(opll, i)); + } + } + break; + + case 0x04: + opll->CustInst[4] = data; + for (i = 0; i < 6; i++) + { + if (opll->patch_number[i] == 0) + { + setInstrument(opll, i, 0); + UPDATE_EG(MOD(opll, i)); + } + } + break; + + case 0x05: + opll->CustInst[5] = data; + for (i = 0; i < 6; i++) + { + if (opll->patch_number[i] == 0) + { + setInstrument(opll, i, 0); + UPDATE_EG(CAR(opll, i)); + } + } + break; + + case 0x06: + opll->CustInst[6] = data; + for (i = 0; i < 6; i++) + { + if (opll->patch_number[i] == 0) + { + setInstrument(opll, i, 0); + UPDATE_EG(MOD(opll, i)); + } + } + break; + + case 0x07: + opll->CustInst[7] = data; + for (i = 0; i < 6; i++) + { + if (opll->patch_number[i] == 0) + { + setInstrument(opll, i, 0); + UPDATE_EG(CAR(opll, i)); + } + } + break; + + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + ch = reg - 0x10; + opll->LowFreq[ch] = data; + setFnumber(opll, ch, data + ((opll->HiFreq[ch] & 1) << 8)); + UPDATE_ALL(MOD(opll, ch)); + UPDATE_ALL(CAR(opll, ch)); + break; + + case 0x20: + case 0x21: + case 0x22: + case 0x23: + case 0x24: + case 0x25: + ch = reg - 0x20; + opll->HiFreq[ch] = data; + + setFnumber(opll, ch, ((data & 1) << 8) + opll->LowFreq[ch]); + setBlock(opll, ch, (data >> 1) & 7); + setSustine(opll, ch, (data >> 5) & 1); + if (data & 0x10) + keyOn(opll, ch); + else + keyOff(opll, ch); + UPDATE_ALL(MOD(opll, ch)); + UPDATE_ALL(CAR(opll, ch)); + update_key_status(opll); + break; + + case 0x30: + case 0x31: + case 0x32: + case 0x33: + case 0x34: + case 0x35: + opll->InstVol[reg - 0x30] = data; + i = (data >> 4) & 15; + v = data & 15; + setInstrument(opll, reg - 0x30, i); + setVolume(opll, reg - 0x30, v << 2); + UPDATE_ALL(MOD(opll, reg - 0x30)); + UPDATE_ALL(CAR(opll, reg - 0x30)); + break; + + default: + break; + } +} + +void OPLL_writeIO(OPLL *opll, e_uint32 adr, e_uint32 val) +{ + if (adr & 1) + OPLL_writeReg(opll, opll->adr, val); + else + opll->adr = val; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc7/emu2413.hpp b/quicknes/source/quickerNES/core/apu/vrc7/emu2413.hpp new file mode 100644 index 00000000000..a9d6e34f609 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/vrc7/emu2413.hpp @@ -0,0 +1,223 @@ +#pragma once + +namespace quickerNES +{ + +typedef signed int e_int; +typedef unsigned int e_uint; +typedef signed char e_int8; +typedef unsigned char e_uint8; +typedef signed short e_int16; +typedef unsigned short e_uint16; +typedef signed int e_int32; +typedef unsigned int e_uint32; + +#define INLINE inline + +/* Size of Sintable ( 8 -- 18 can be used. 9 recommended.)*/ +#define PG_BITS 9 +#define PG_WIDTH (1 << PG_BITS) + +/* Phase increment counter */ +#define DP_BITS 18 +#define DP_WIDTH (1 << DP_BITS) +#define DP_BASE_BITS (DP_BITS - PG_BITS) + +/* Dynamic range (Accuracy of sin table) */ +#define DB_BITS 8 +#define DB_STEP (48.0 / (1 << DB_BITS)) +#define DB_MUTE (1 << DB_BITS) + +/* Dynamic range of envelope */ +#define EG_STEP 0.375 +#define EG_BITS 7 +#define EG_MUTE (1 << EG_BITS) + +/* Dynamic range of total level */ +#define TL_STEP 0.75 +#define TL_BITS 6 +#define TL_MUTE (1 << TL_BITS) + +/* Dynamic range of sustine level */ +#define SL_STEP 3.0 +#define SL_BITS 4 +#define SL_MUTE (1 << SL_BITS) + +/* Bits for Pitch and Amp modulator */ +#define PM_PG_BITS 8 +#define PM_PG_WIDTH (1 << PM_PG_BITS) +#define PM_DP_BITS 16 +#define PM_DP_WIDTH (1 << PM_DP_BITS) +#define AM_PG_BITS 8 +#define AM_PG_WIDTH (1 << AM_PG_BITS) +#define AM_DP_BITS 16 +#define AM_DP_WIDTH (1 << AM_DP_BITS) + +#ifdef EMU2413_DLL_EXPORTS + #define EMU2413_API __declspec(dllexport) +#elif defined(EMU2413_DLL_IMPORTS) + #define EMU2413_API __declspec(dllimport) +#else + #define EMU2413_API +#endif + +#ifdef __cplusplus +extern "C" +{ +#endif + +#define PI 3.14159265358979323846 + + enum + { + OPLL_VRC7_TONE = 0 + }; + + /* voice data */ + typedef struct + { + e_uint32 TL, FB, EG, ML, AR, DR, SL, RR, KR, KL, AM, PM, WF; + } OPLL_PATCH; + + /* slot */ + typedef struct + { + OPLL_PATCH patch; + + e_int32 type; /* 0 : modulator 1 : carrier */ + + /* OUTPUT */ + e_int32 feedback; + e_int32 output[2]; /* Output value of slot */ + + /* for Phase Generator (PG) */ + e_uint16 *sintbl; /* Wavetable */ + e_uint32 phase; /* Phase */ + e_uint32 dphase; /* Phase increment amount */ + e_uint32 pgout; /* output */ + + /* for Envelope Generator (EG) */ + e_int32 fnum; /* F-Number */ + e_int32 block; /* Block */ + e_int32 volume; /* Current volume */ + e_int32 sustine; /* Sustine 1 = ON, 0 = OFF */ + e_uint32 tll; /* Total Level + Key scale level*/ + e_uint32 rks; /* Key scale offset (Rks) */ + e_int32 eg_mode; /* Current state */ + e_uint32 eg_phase; /* Phase */ + e_uint32 eg_dphase; /* Phase increment amount */ + e_uint32 egout; /* output */ + + } OPLL_SLOT; + +/* Mask */ +#define OPLL_MASK_CH(x) (1 << (x)) + + /* opll */ + typedef struct + { + e_uint32 adr; + e_int32 out; + +#ifndef EMU2413_COMPACTION + e_uint32 realstep; + e_uint32 oplltime; + e_uint32 opllstep; + e_int32 prev, next; +#endif + + /* Register */ + e_uint8 LowFreq[6]; + e_uint8 HiFreq[6]; + e_uint8 InstVol[6]; + + e_uint8 CustInst[8]; + + e_int32 slot_on_flag[6 * 2]; + + /* Pitch Modulator */ + e_uint32 pm_phase; + e_int32 lfo_pm; + + /* Amp Modulator */ + e_int32 am_phase; + e_int32 lfo_am; + + e_uint32 quality; + + /* Channel Data */ + e_int32 patch_number[6]; + e_int32 key_status[6]; + + /* Slot */ + OPLL_SLOT slot[6 * 2]; + + e_uint32 mask; + + /* Input clock */ + e_uint32 clk; + + /* WaveTable for each envelope amp */ + e_uint16 fullsintable[PG_WIDTH]; + e_uint16 halfsintable[PG_WIDTH]; + + e_uint16 *waveform[2]; + + /* LFO Table */ + e_int32 pmtable[PM_PG_WIDTH]; + e_int32 amtable[AM_PG_WIDTH]; + + /* Phase delta for LFO */ + e_uint32 pm_dphase; + e_uint32 am_dphase; + + /* dB to Liner table */ + e_int16 DB2LIN_TABLE[(DB_MUTE + DB_MUTE) * 2]; + + /* Liner to Log curve conversion table (for Attack rate). */ + e_uint16 AR_ADJUST_TABLE[1 << EG_BITS]; + + /* Phase incr table for Attack */ + e_uint32 dphaseARTable[16][16]; + + /* Phase incr table for Decay and Release */ + e_uint32 dphaseDRTable[16][16]; + + /* KSL + TL Table */ + e_uint32 tllTable[16][8][1 << TL_BITS][4]; + e_int32 rksTable[2][8][2]; + + /* Phase incr table for PG */ + e_uint32 dphaseTable[512][8][16]; + } OPLL; + + /* Create Object */ + EMU2413_API OPLL *OPLL_new(e_uint32 clk); + EMU2413_API void OPLL_delete(OPLL *); + + /* Setup */ + EMU2413_API void OPLL_reset(OPLL *); + // EMU2413_API void OPLL_set_rate(OPLL *opll, e_uint32 r) ; + + /* Port/Register access */ + EMU2413_API void OPLL_writeIO(OPLL *, e_uint32 reg, e_uint32 val); + EMU2413_API void OPLL_writeReg(OPLL *, e_uint32 reg, e_uint32 val); + + /* Synthsize */ + EMU2413_API e_int16 OPLL_calc(OPLL *); + /* or */ + EMU2413_API void OPLL_run(OPLL *); + EMU2413_API e_uint32 OPLL_calcCh(OPLL *, e_uint32 ch); + + /* Misc */ + EMU2413_API void OPLL_forceRefresh(OPLL *); + + /* Channel Mask */ + EMU2413_API e_uint32 OPLL_setMask(OPLL *, e_uint32 mask); + EMU2413_API e_uint32 OPLL_toggleMask(OPLL *, e_uint32 mask); + +#ifdef __cplusplus +} +#endif + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.cpp b/quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.cpp new file mode 100644 index 00000000000..4fff23a09c9 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.cpp @@ -0,0 +1,116 @@ +#include "emu2413_state.hpp" +#include + +namespace quickerNES +{ + +#ifdef __cplusplus +extern "C" +{ +#endif + + int OPLL_serialize_size() + { + return sizeof(OPLL_STATE); + } + + void OPLL_serialize(const OPLL *opll, OPLL_STATE *state) + { + int i; + + state->pm_phase = opll->pm_phase; + state->am_phase = opll->am_phase; + + for (i = 0; i < 12; i++) + { + OPLL_SLOT_STATE *slotState = &(state->slot[i]); + const OPLL_SLOT *slot = &(opll->slot[i]); + slotState->feedback = slot->feedback; + slotState->output[0] = slot->output[0]; + slotState->output[1] = slot->output[1]; + slotState->phase = slot->phase; + slotState->pgout = slot->pgout; + slotState->eg_mode = slot->eg_mode; + slotState->eg_phase = slot->eg_phase; + slotState->eg_dphase = slot->eg_dphase; + slotState->egout = slot->egout; + } + } + +#define BYTESWAP(xxxx) \ + { \ + uint32_t _temp = (uint32_t)(xxxx); \ + ((uint8_t *)&(xxxx))[0] = (uint8_t)((_temp) >> 24); \ + ((uint8_t *)&(xxxx))[1] = (uint8_t)((_temp) >> 16); \ + ((uint8_t *)&(xxxx))[2] = (uint8_t)((_temp) >> 8); \ + ((uint8_t *)&(xxxx))[3] = (uint8_t)((_temp) >> 0); \ + } + +#define SET(xxxx, yyyy) \ + { \ + if ((xxxx) != (yyyy)) \ + { \ + (xxxx) = (yyyy); \ + } + + void OPLL_deserialize(OPLL *opll, const OPLL_STATE *state) + { + int i; + + opll->pm_phase = state->pm_phase; + opll->am_phase = state->am_phase; + + for (i = 0; i < 12; i++) + { + const OPLL_SLOT_STATE *slotState = &(state->slot[i]); + OPLL_SLOT *slot = &(opll->slot[i]); + slot->feedback = slotState->feedback; + slot->output[0] = slotState->output[0]; + slot->output[1] = slotState->output[1]; + slot->phase = slotState->phase; + slot->pgout = slotState->pgout; + slot->eg_mode = slotState->eg_mode; + slot->eg_phase = slotState->eg_phase; + slot->eg_dphase = slotState->eg_dphase; + slot->egout = slotState->egout; + } + } + + static bool IsLittleEndian() + { + int i = 42; + if (((char *)&i)[0] == 42) + { + return true; + } + return false; + } + + void OPLL_state_byteswap(OPLL_STATE *state) + { + int i; + if (IsLittleEndian()) return; + + BYTESWAP(state->pm_phase); + BYTESWAP(state->am_phase); + + for (i = 0; i < 12; i++) + { + OPLL_SLOT_STATE *slotState = &(state->slot[i]); + BYTESWAP(slotState->feedback); + BYTESWAP(slotState->output[0]); + BYTESWAP(slotState->output[1]); + BYTESWAP(slotState->phase); + BYTESWAP(slotState->pgout); + BYTESWAP(slotState->eg_mode); + BYTESWAP(slotState->eg_phase); + BYTESWAP(slotState->eg_dphase); + BYTESWAP(slotState->egout); + } + } + +#ifdef __cplusplus +} +#endif + +} // namespace quickNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.hpp b/quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.hpp new file mode 100644 index 00000000000..ebd2e25b269 --- /dev/null +++ b/quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.hpp @@ -0,0 +1,41 @@ +#pragma once + +#include "emu2413.hpp" + +namespace quickerNES +{ + +typedef struct +{ + e_int32 feedback; + e_int32 output[2]; + e_uint32 phase; + e_uint32 pgout; + e_int32 eg_mode; + e_uint32 eg_phase; + e_uint32 eg_dphase; + e_uint32 egout; +} OPLL_SLOT_STATE; + +typedef struct +{ + e_uint32 pm_phase; + e_int32 am_phase; + OPLL_SLOT_STATE slot[6 * 2]; +} OPLL_STATE; + +#ifdef __cplusplus +extern "C" +{ +#endif + + int OPLL_serialize_size(); + void OPLL_serialize(const OPLL *opll, OPLL_STATE *state); + void OPLL_deserialize(OPLL *opll, const OPLL_STATE *state); + void OPLL_state_byteswap(OPLL_STATE *state); + +#ifdef __cplusplus +} +#endif + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/cart.hpp b/quicknes/source/quickerNES/core/cart.hpp new file mode 100644 index 00000000000..ccd61f441de --- /dev/null +++ b/quicknes/source/quickerNES/core/cart.hpp @@ -0,0 +1,117 @@ +#pragma once + +// NES cartridge data (PRG, CHR, mapper) + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include +#include +#include + +namespace quickerNES +{ + +class Cart +{ + public: + Cart() = default; + + struct ines_header_t + { + uint8_t signature[4]; + uint8_t prg_count; // number of 16K PRG banks + uint8_t chr_count; // number of 8K CHR banks + uint8_t flags; // MMMM FTBV Mapper low, Four-screen, Trainer, Battery, V mirror + uint8_t flags2; // MMMM --XX Mapper high 4 bits + uint8_t zero[8]; + }; + static_assert(sizeof(ines_header_t) == 16); + + // Load iNES file + void load_ines(const uint8_t *buffer) + { + ines_header_t h; + + size_t bufferPos = 0; + { + size_t copySize = sizeof(ines_header_t); + memcpy(&h, &buffer[bufferPos], copySize); + bufferPos += copySize; + } + + set_mapper(h.flags, h.flags2); + + // skip trainer + if (h.flags & 0x04) bufferPos += 512; + + // Allocating memory for prg and chr + prg_size_ = h.prg_count * 16 * 1024L; + chr_size_ = h.chr_count * 8 * 1024L; + + auto p = malloc(prg_size_ + chr_size_); + prg_ = (uint8_t *)p; + chr_ = &prg_[prg_size_]; + + { + size_t copySize = prg_size(); + memcpy(prg(), &buffer[bufferPos], copySize); + bufferPos += copySize; + } + { + size_t copySize = chr_size(); + memcpy(chr(), &buffer[bufferPos], copySize); + bufferPos += copySize; + } + } + + inline bool has_battery_ram() const { return mapper & 0x02; } + + // Set mapper and information bytes. LSB and MSB are the standard iNES header + // bytes at offsets 6 and 7. + inline void set_mapper(int mapper_lsb, int mapper_msb) + { + mapper = mapper_msb * 0x100 + mapper_lsb; + } + + inline int mapper_code() const { return ((mapper >> 8) & 0xf0) | ((mapper >> 4) & 0x0f); } + + // Size of PRG data + long prg_size() const { return prg_size_; } + + // Size of CHR data + long chr_size() const { return chr_size_; } + + unsigned mapper_data() const { return mapper; } + + // Initial mirroring setup + int mirroring() const { return mapper & 0x09; } + + // Pointer to beginning of PRG data + inline uint8_t *prg() { return prg_; } + inline uint8_t const *prg() const { return prg_; } + + // Pointer to beginning of CHR data + inline uint8_t *chr() { return chr_; } + inline uint8_t const *chr() const { return chr_; } + + // End of public interface + private: + uint8_t *prg_; + uint8_t *chr_; + long prg_size_; + long chr_size_; + unsigned mapper; +}; + +} // namespace quickerNES diff --git a/quicknes/source/quickerNES/core/core.hpp b/quicknes/source/quickerNES/core/core.hpp new file mode 100644 index 00000000000..95c9813fc99 --- /dev/null +++ b/quicknes/source/quickerNES/core/core.hpp @@ -0,0 +1,1208 @@ +#pragma once + +// Internal NES emulator + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +// Emu 0.7.0 + +#include "apu/apu.hpp" +#include "cpu.hpp" +#include "mappers/mapper.hpp" +#include "ppu/ppu.hpp" +#include +#include +#include +#include +#include +#include + +#ifdef _QUICKERNES_ENABLE_INPUT_CALLBACK +extern void (*input_callback_cb)(void); +#endif + +namespace quickerNES +{ + +class Cart; + +#undef NES_EMU_CPU_HOOK +#ifndef NES_EMU_CPU_HOOK + #define NES_EMU_CPU_HOOK(cpu, end_time) cpu::run(end_time) +#endif + +bool const wait_states_enabled = true; +bool const single_instruction_mode = false; // for debugging irq/nmi timing issues +const int unmapped_fill = Cpu::page_wrap_opcode; +unsigned const low_ram_size = 0x800; +unsigned const low_ram_end = 0x2000; +unsigned const sram_end = 0x8000; +const int irq_inhibit_mask = 0x04; + +struct nes_state_t +{ + uint16_t timestamp; // CPU clocks * 15 (for NTSC) + uint8_t pal; + uint8_t unused[1]; + uint32_t frame_count; // number of frames emulated since power-up +}; + +struct nes_state_lite_t +{ + uint16_t timestamp; // CPU clocks * 15 (for NTSC) + uint8_t frame_count; // number of frames emulated since power-up +}; + +struct input_state_t +{ + uint32_t joypad_latches[2]; // input_state 1 & 2 shift registers + + #ifdef _QUICKERNES_SUPPORT_ARKANOID_INPUTS + uint32_t arkanoid_latch; // arkanoid latch + uint8_t arkanoid_fire; // arkanoid latch + #endif + + uint8_t w4016; // strobe +}; + +struct cpu_state_t +{ + uint16_t pc; + uint8_t s; + uint8_t p; + uint8_t a; + uint8_t x; + uint8_t y; + uint8_t unused[1]; +}; +static_assert(sizeof(cpu_state_t) == 8); + +class Core : private Cpu +{ + typedef Cpu cpu; + + public: + size_t _NTABBlockSize = 0x1000; + + // Flags for lite state storage + bool TIMEBlockEnabled = true; + bool CPURBlockEnabled = true; + bool PPURBlockEnabled = true; + bool APURBlockEnabled = true; + bool CTRLBlockEnabled = true; + bool MAPRBlockEnabled = true; + bool LRAMBlockEnabled = true; + bool SPRTBlockEnabled = true; + bool NTABBlockEnabled = true; + bool CHRRBlockEnabled = true; + bool SRAMBlockEnabled = true; + + // APU and Joypad + enum controllerType_t + { + none_t = 0, + joypad_t = 1, + arkanoidNES_t = 2, + arkanoidFamicom_t = 3, + }; + + Core() : ppu(this) + { + cart = NULL; + impl = NULL; + mapper = NULL; + memset(&nes, 0, sizeof nes); + memset(&input_state, 0, sizeof input_state); + } + + ~Core() + { + close(); + delete impl; + } + + const char *init() + { + if (!impl) + { + impl = new impl_t; + impl->apu.dmc_reader(read_dmc, this); + impl->apu.irq_notifier(apu_irq_changed, this); + } + + return 0; + } + + const char *open(Cart const *new_cart) + { + close(); + init(); + + // Getting cartdrige mapper code + auto mapperCode = new_cart->mapper_code(); + + // Getting mapper corresponding to that code + mapper = Mapper::getMapperFromCode(mapperCode); + + // If no mapper was found, return null (error) now + if (mapper == nullptr) + { + fprintf(stderr, "Could not find mapper for code: %u\n", mapperCode); + return "Unsupported mapper"; + } + + // Assigning backwards pointers to cartdrige and emulator now + mapper->cart_ = new_cart; + mapper->emu_ = this; + + ppu.open_chr(new_cart->chr(), new_cart->chr_size()); + + cart = new_cart; + memset(impl->unmapped_page, unmapped_fill, sizeof impl->unmapped_page); + reset(true, true); + + return nullptr; + } + + inline void serializeState(jaffarCommon::serializer::Base &serializer) const + { + // TIME Block + if (TIMEBlockEnabled == true) + { + nes_state_t state = nes; + state.timestamp *= 5; + + const auto inputDataSize = sizeof(nes_state_t); + const auto inputData = (uint8_t *)&state; + serializer.pushContiguous(inputData, inputDataSize); + } + + // CPUR Block + if (CPURBlockEnabled == true) + { + cpu_state_t s; + memset(&s, 0, sizeof s); + s.pc = r.pc; + s.s = r.sp; + s.a = r.a; + s.x = r.x; + s.y = r.y; + s.p = r.status; + + const auto inputDataSize = sizeof(cpu_state_t); + const auto inputData = (uint8_t *)&s; + + serializer.pushContiguous(inputData, inputDataSize); + } + + if (PPURBlockEnabled == true) + { + const auto inputDataSize = sizeof(ppu_state_t); + const auto inputData = (const uint8_t *)&ppu; + serializer.pushContiguous(inputData, inputDataSize); + } + + // APUR Block + if (APURBlockEnabled == true) + { + Apu::apu_state_t apuState; + impl->apu.save_state(&apuState); + + const auto inputDataSize = sizeof(Apu::apu_state_t); + const auto inputData = (uint8_t *)&apuState; + serializer.pushContiguous(inputData, inputDataSize); + } + + // CTRL Block + if (CTRLBlockEnabled == true) + { + const auto inputDataSize = sizeof(input_state_t); + const auto inputData = (uint8_t *)&input_state; + serializer.pushContiguous(inputData, inputDataSize); + } + + // MAPR Block + if (MAPRBlockEnabled == true) + { + const auto inputDataSize = mapper->state_size; + const auto inputData = (uint8_t *)mapper->state; + serializer.pushContiguous(inputData, inputDataSize); + } + + // LRAM Block + if (LRAMBlockEnabled == true) + { + const auto inputDataSize = low_ram_size; + const auto inputData = (uint8_t *)low_mem; + serializer.push(inputData, inputDataSize); + } + + // SPRT Block + if (SPRTBlockEnabled == true) + { + const auto inputDataSize = Ppu::spr_ram_size; + const auto inputData = (uint8_t *)ppu.spr_ram; + serializer.push(inputData, inputDataSize); + } + + // NTAB Block + if (NTABBlockEnabled == true) + { + const auto inputDataSize = _NTABBlockSize; + const auto inputData = (uint8_t *)ppu.impl->nt_ram; + serializer.push(inputData, inputDataSize); + } + + // CHRR Block + if (CHRRBlockEnabled == true) + { + if (ppu.chr_is_writable) + { + const auto inputDataSize = ppu.chr_size; + const auto inputData = (uint8_t *)ppu.impl->chr_ram; + serializer.push(inputData, inputDataSize); + } + } + + // SRAM Block + if (SRAMBlockEnabled == true) + { + if (sram_present) + { + const auto inputDataSize = impl->sram_size; + const auto inputData = (uint8_t *)impl->sram; + serializer.push(inputData, inputDataSize); + } + } + } + + inline void deserializeState(jaffarCommon::deserializer::Base &deserializer) + { + disable_rendering(); + error_count = 0; + ppu.burst_phase = 0; // avoids shimmer when seeking to same time over and over + + // TIME Block + if (TIMEBlockEnabled == true) + { + const auto outputData = (uint8_t *)&nes; + const auto inputDataSize = sizeof(nes_state_t); + deserializer.popContiguous(outputData, inputDataSize); + + nes.timestamp /= 5; + } + + // CPUR Block + if (CPURBlockEnabled == true) + { + cpu_state_t s; + + const auto outputData = (uint8_t *)&s; + const auto inputDataSize = sizeof(cpu_state_t); + deserializer.popContiguous(outputData, inputDataSize); + + r.pc = s.pc; + r.sp = s.s; + r.a = s.a; + r.x = s.x; + r.y = s.y; + r.status = s.p; + } + + // PPUR Block + if (PPURBlockEnabled == true) + { + const auto outputData = (uint8_t *)&ppu; + const auto inputDataSize = sizeof(ppu_state_t); + deserializer.popContiguous(outputData, inputDataSize); + } + + // APUR Block + if (APURBlockEnabled == true) + { + Apu::apu_state_t apuState; + + const auto outputData = (uint8_t *)&apuState; + const auto inputDataSize = sizeof(Apu::apu_state_t); + deserializer.popContiguous(outputData, inputDataSize); + + impl->apu.load_state(apuState); + impl->apu.end_frame(-(int)nes.timestamp / ppu_overclock); + } + + // CTRL Block + if (CTRLBlockEnabled == true) + { + const auto outputData = (uint8_t *)&input_state; + const auto inputDataSize = sizeof(input_state_t); + deserializer.popContiguous(outputData, inputDataSize); + } + + // MAPR Block + if (MAPRBlockEnabled == true) + { + mapper->default_reset_state(); + + const auto outputData = (uint8_t *)mapper->state; + const auto inputDataSize = mapper->state_size; + deserializer.popContiguous(outputData, inputDataSize); + + mapper->apply_mapping(); + } + + // LRAM Block + if (LRAMBlockEnabled == true) + { + const auto outputData = (uint8_t *)low_mem; + const auto inputDataSize = low_ram_size; + deserializer.pop(outputData, inputDataSize); + } + + // SPRT Block + if (SPRTBlockEnabled == true) + { + const auto outputData = (uint8_t *)ppu.spr_ram; + const auto inputDataSize = Ppu::spr_ram_size; + deserializer.pop(outputData, inputDataSize); + } + + // NTAB Block + if (NTABBlockEnabled == true) + { + const auto outputData = (uint8_t *)ppu.impl->nt_ram; + const auto inputDataSize = _NTABBlockSize; + deserializer.pop(outputData, inputDataSize); + } + + // CHRR Block + if (CHRRBlockEnabled == true) + { + if (ppu.chr_is_writable) + { + const auto outputData = (uint8_t *)ppu.impl->chr_ram; + const auto inputDataSize = ppu.chr_size; + deserializer.pop(outputData, inputDataSize); + + ppu.all_tiles_modified(); + } + } + + // SRAM Block + if (SRAMBlockEnabled == true) + { + if (sram_present) + { + const auto outputData = (uint8_t *)impl->sram; + const auto inputDataSize = impl->sram_size; + deserializer.pop(outputData, inputDataSize); + } + } + + if (sram_present) enable_sram(true); + } + + void setNTABBlockSize(const size_t size) { _NTABBlockSize = size; } + + void enableStateBlock(const std::string &block) + { + bool recognizedBlock = false; + + if (block == "TIME") + { + TIMEBlockEnabled = true; + recognizedBlock = true; + } + if (block == "CPUR") + { + CPURBlockEnabled = true; + recognizedBlock = true; + } + if (block == "PPUR") + { + PPURBlockEnabled = true; + recognizedBlock = true; + } + if (block == "APUR") + { + APURBlockEnabled = true; + recognizedBlock = true; + } + if (block == "CTRL") + { + CTRLBlockEnabled = true; + recognizedBlock = true; + } + if (block == "MAPR") + { + MAPRBlockEnabled = true; + recognizedBlock = true; + } + if (block == "LRAM") + { + LRAMBlockEnabled = true; + recognizedBlock = true; + } + if (block == "SPRT") + { + SPRTBlockEnabled = true; + recognizedBlock = true; + } + if (block == "NTAB") + { + NTABBlockEnabled = true; + recognizedBlock = true; + } + if (block == "CHRR") + { + CHRRBlockEnabled = true; + recognizedBlock = true; + } + if (block == "SRAM") + { + SRAMBlockEnabled = true; + recognizedBlock = true; + } + + if (recognizedBlock == false) + { + fprintf(stderr, "Unrecognized block type: %s\n", block.c_str()); + exit(-1); + } + }; + + void disableStateBlock(const std::string &block) + { + bool recognizedBlock = false; + + if (block == "TIME") + { + TIMEBlockEnabled = false; + recognizedBlock = true; + } + if (block == "CPUR") + { + CPURBlockEnabled = false; + recognizedBlock = true; + } + if (block == "PPUR") + { + PPURBlockEnabled = false; + recognizedBlock = true; + } + if (block == "APUR") + { + APURBlockEnabled = false; + recognizedBlock = true; + } + if (block == "CTRL") + { + CTRLBlockEnabled = false; + recognizedBlock = true; + } + if (block == "MAPR") + { + MAPRBlockEnabled = false; + recognizedBlock = true; + } + if (block == "LRAM") + { + LRAMBlockEnabled = false; + recognizedBlock = true; + } + if (block == "SPRT") + { + SPRTBlockEnabled = false; + recognizedBlock = true; + } + if (block == "NTAB") + { + NTABBlockEnabled = false; + recognizedBlock = true; + } + if (block == "CHRR") + { + CHRRBlockEnabled = false; + recognizedBlock = true; + } + if (block == "SRAM") + { + SRAMBlockEnabled = false; + recognizedBlock = true; + } + + if (recognizedBlock == false) + { + fprintf(stderr, "Unrecognized block type: %s\n", block.c_str()); + exit(-1); + } + }; + + void reset(bool full_reset, bool erase_battery_ram) + { + if (full_reset) + { + cpu::reset(impl->unmapped_page); + cpu_time_offset = -1; + clock_ = 0; + + // Low RAM + memset(cpu::low_mem, 0xFF, low_ram_size); + cpu::low_mem[8] = 0xf7; + cpu::low_mem[9] = 0xef; + cpu::low_mem[10] = 0xdf; + cpu::low_mem[15] = 0xbf; + + // SRAM + lrom_readable = 0; + sram_present = true; + enable_sram(false); + if (!cart->has_battery_ram() || erase_battery_ram) + memset(impl->sram, 0xFF, impl->sram_size); + + input_state.joypad_latches[0] = 0; + input_state.joypad_latches[1] = 0; + + #ifdef _QUICKERNES_SUPPORT_ARKANOID_INPUTS + input_state.arkanoid_latch = 0; + input_state.arkanoid_fire = 0; + #endif + + nes.frame_count = 0; + } + + // to do: emulate partial reset + + ppu.reset(full_reset); + impl->apu.reset(); + + mapper->reset(); + + cpu::r.pc = read_vector(0xFFFC); + cpu::r.sp = 0xfd; + cpu::r.a = 0; + cpu::r.x = 0; + cpu::r.y = 0; + cpu::r.status = irq_inhibit_mask; + nes.timestamp = 0; + error_count = 0; + } + + nes_time_t emulate_frame(uint32_t joypad1, uint32_t joypad2, uint32_t arkanoid_latch, uint8_t arkanoid_fire) + { +#ifdef _QUICKERNES_DETECT_JOYPAD_READS + joypad_read_count = 0; +#endif + + current_joypad[0] = joypad1; + current_joypad[1] = joypad2; + current_arkanoid_latch = arkanoid_latch; + current_arkanoid_fire = arkanoid_fire; + + cpu_time_offset = ppu.begin_frame(nes.timestamp) - 1; + ppu_2002_time = 0; + clock_ = cpu_time_offset; + + // TODO: clean this fucking mess up + auto t0 = emulate_frame_(); + impl->apu.run_until_(t0); + clock_ = cpu_time_offset; + auto t1 = cpu_time(); + impl->apu.run_until_(t1); + + nes_time_t ppu_frame_length = ppu.frame_length(); + nes_time_t length = cpu_time(); + nes.timestamp = ppu.end_frame(length); + mapper->end_frame(length); + + impl->apu.end_frame(ppu_frame_length); + + disable_rendering(); + nes.frame_count++; + + return ppu_frame_length; + } + + void close() + { + cart = NULL; + delete mapper; + mapper = NULL; + + ppu.close_chr(); + + disable_rendering(); + } + + void irq_changed() + { + cpu_set_irq_time(earliest_irq(cpu_time())); + } + + void event_changed() + { + cpu_set_end_time(earliest_event(cpu_time())); + } + + public: + private: + friend class Emu; + + struct impl_t + { + enum + { + sram_size = 0x2000 + }; + uint8_t sram[sram_size]; + Apu apu; + + // extra byte allows CPU to always read operand of instruction, which + // might go past end of data + uint8_t unmapped_page[Cpu::page_size + 1]; + }; + impl_t *impl; // keep large arrays separate + unsigned long error_count; + bool sram_present; + + public: + uint32_t current_joypad[2]; + uint32_t current_arkanoid_latch; + uint8_t current_arkanoid_fire; + Cart const *cart; + Mapper *mapper; + nes_state_t nes; + Ppu ppu; + int joypad_read_count = 0; + + private: + // noncopyable + Core(const Core &); + Core &operator=(const Core &); + + // Timing + nes_time_t ppu_2002_time; + void disable_rendering() { clock_ = 0; } + + inline nes_time_t earliest_irq(nes_time_t present) + { + return std::min(impl->apu.earliest_irq(present), mapper->next_irq(present)); + } + + inline nes_time_t ppu_frame_length(nes_time_t present) + { + nes_time_t t = ppu.frame_length(); + if (t > present) + return t; + + ppu.render_bg_until(clock()); // to do: why this call to clock() rather than using present? + return ppu.frame_length(); + } + + inline nes_time_t earliest_event(nes_time_t present) + { + // PPU frame + nes_time_t t = ppu_frame_length(present); + + // DMC + if (wait_states_enabled) + t = std::min(t, impl->apu.next_dmc_read_time() + 1); + + // NMI + t = std::min(t, ppu.nmi_time()); + + if (single_instruction_mode) + t = std::min(t, present + 1); + + return t; + } + + + controllerType_t _controllerType = controllerType_t::none_t; + + input_state_t input_state; + + void setControllerType(controllerType_t type) { _controllerType = type; } + +#ifdef _QUICKERNES_SUPPORT_ARKANOID_INPUTS + int read_io(nes_addr_t addr) + { + if ((addr & 0xFFFE) == 0x4016) + { + // For performance's sake, this counter is only kept on demand + #ifdef _QUICKERNES_DETECT_JOYPAD_READS + joypad_read_count++; + #endif + + // If write flag is put into w4016, reading from it returns nothing + if (input_state.w4016 & 1) return 0; + + // Proceed depending on input type + switch(_controllerType) + { + case controllerType_t::joypad_t: + { + const uint8_t result = input_state.joypad_latches[addr & 1] & 1; + input_state.joypad_latches[addr & 1] >>= 1; + return result; + } + + case controllerType_t::arkanoidNES_t: + { + if (addr == 0x4017) + { + // latch 0 encodes fire, latch 1 encodes potentiometer + const uint8_t result = (input_state.arkanoid_latch & 1) * 16 + input_state.arkanoid_fire * 8; + + // Advancing latch 1 + input_state.arkanoid_latch >>= 1; + return result; + } + } + + case controllerType_t::arkanoidFamicom_t: + { + if (addr == 0x4016) + { + // latch 0 encodes fire + uint8_t result = (input_state.arkanoid_fire & 1) * 2; + + // latch 0 also encodes input_state 1 + result += (input_state.joypad_latches[0] & 1) & 1; + + // Advancing input_state latch + input_state.joypad_latches[0] >>= 1; + + return result; + } + + if (addr == 0x4017) + { + // latch 1 encodes potentiometer + const uint8_t result = (input_state.arkanoid_latch & 1) * 2; + + // Advancing latch 1 + input_state.arkanoid_latch >>= 1; + return result; + } + } + + default: + return 0; + } + } + + + if (addr == Apu::status_addr) + return impl->apu.read_status(clock()); + + return addr >> 8; // simulate open bus + } +#else + int read_io(nes_addr_t addr) + { + if ((addr & 0xFFFE) == 0x4016) + { + // to do: to aid with recording, doesn't emulate transparent latch, + // so a game that held strobe at 1 and read $4016 or $4017 would not get + // the current A status as occurs on a NES + if (input_state.w4016 & 1) return 0; + const uint8_t result = input_state.joypad_latches[addr & 1] & 1; + input_state.joypad_latches[addr & 1] >>= 1; + return result; + } + + if (addr == Apu::status_addr) + return impl->apu.read_status(clock()); + + return addr >> 8; // simulate open bus + } +#endif + + void write_io(nes_addr_t addr, int data) + { + // sprite dma + if (addr == 0x4014) + { + ppu.dma_sprites(clock(), cpu::get_code(data * 0x100)); + cpu_adjust_time(513); + return; + } + + // input_state strobe + if (addr == 0x4016) + { + // if strobe goes low, latch data + if (input_state.w4016 & 1 & ~data) + { + input_state.joypad_latches[0] = current_joypad[0]; + input_state.joypad_latches[1] = current_joypad[1]; + + #ifdef _QUICKERNES_SUPPORT_ARKANOID_INPUTS + input_state.arkanoid_latch = current_arkanoid_latch; + input_state.arkanoid_fire = current_arkanoid_fire; + #endif + + #ifdef _QUICKERNES_ENABLE_INPUT_CALLBACK + input_callback_cb(); + #endif + } + input_state.w4016 = data; + return; + } + + // apu + if (unsigned(addr - impl->apu.start_addr) <= impl->apu.end_addr - impl->apu.start_addr) + { + impl->apu.write_register(clock(), addr, data); + if (wait_states_enabled) + { + if (addr == 0x4010 || (addr == 0x4015 && (data & 0x10))) + { + impl->apu.run_until(clock() + 1); + event_changed(); + } + } + return; + } + } + + static inline int read_dmc(void *data, nes_addr_t addr) + { + Core *emu = (Core *)data; + int result = *emu->cpu::get_code(addr); + if (wait_states_enabled) + emu->cpu_adjust_time(4); + return result; + } + + static inline void apu_irq_changed(void *emu) + { + ((Core *)emu)->irq_changed(); + } + + // CPU + unsigned sram_readable; + unsigned sram_writable; + unsigned lrom_readable; + nes_time_t clock_; + nes_time_t cpu_time_offset; + + nes_time_t emulate_frame_() + { + Cpu::result_t last_result = cpu::result_cycles; + int extra_instructions = 0; + while (true) + { + // Add DMC wait-states to CPU time + if (wait_states_enabled) + { + impl->apu.run_until(cpu_time()); + clock_ = cpu_time_offset; + } + + nes_time_t present = cpu_time(); + if (present >= ppu_frame_length(present)) + { + if (ppu.nmi_time() <= present) + { + // NMI will occur next, so delayed CLI and SEI don't need to be handled. + // If NMI will occur normally ($2000.7 and $2002.7 set), let it occur + // next frame, otherwise vector it now. + + if (!(ppu.w2000 & 0x80 & ppu.r2002)) + { + /* vectored NMI at end of frame */ + vector_interrupt(0xFFFA); + present += 7; + } + return present; + } + + if (extra_instructions > 2) + { + return present; + } + + if (last_result != cpu::result_cli && last_result != cpu::result_sei && + (ppu.nmi_time() >= 0x10000 || (ppu.w2000 & 0x80 & ppu.r2002))) + return present; + + /* Executing extra instructions for frame */ + extra_instructions++; // execute one more instruction + } + + // NMI + if (present >= ppu.nmi_time()) + { + ppu.acknowledge_nmi(); + vector_interrupt(0xFFFA); + last_result = cpu::result_cycles; // most recent sei/cli won't be delayed now + } + + // IRQ + nes_time_t irq_time = earliest_irq(present); + cpu_set_irq_time(irq_time); + if (present >= irq_time && (!(cpu::r.status & irq_inhibit_mask) || + last_result == cpu::result_sei)) + { + if (last_result != cpu::result_cli) + { + /* IRQ vectored */ + mapper->run_until(present); + vector_interrupt(0xFFFE); + } + else + { + // CLI delays IRQ + cpu_set_irq_time(present + 1); + } + } + + // CPU + nes_time_t end_time = earliest_event(present); + if (extra_instructions) + end_time = present + 1; + unsigned long cpu_error_count = cpu::error_count(); + last_result = NES_EMU_CPU_HOOK(cpu, end_time - cpu_time_offset - 1); + cpu_adjust_time(cpu::time()); + clock_ = cpu_time_offset; + error_count += cpu::error_count() - cpu_error_count; + } + } + + nes_addr_t read_vector(nes_addr_t addr) + { + uint8_t const *p = cpu::get_code(addr); + return p[1] * 0x100 + p[0]; + } + + void vector_interrupt(nes_addr_t vector) + { + cpu::push_byte(cpu::r.pc >> 8); + cpu::push_byte(cpu::r.pc & 0xFF); + cpu::push_byte(cpu::r.status | 0x20); // reserved bit is set + + cpu_adjust_time(7); + cpu::r.status |= irq_inhibit_mask; + cpu::r.pc = read_vector(vector); + } + + static void log_unmapped(nes_addr_t addr, int data = -1); + void cpu_set_irq_time(nes_time_t t) { cpu::set_irq_time_(t - 1 - cpu_time_offset); } + void cpu_set_end_time(nes_time_t t) { cpu::set_end_time_(t - 1 - cpu_time_offset); } + nes_time_t cpu_time() const { return clock_ + 1; } + + inline void cpu_adjust_time(int n) + { + ppu_2002_time -= n; + cpu_time_offset += n; + cpu::reduce_limit(n); + } + + public: + private: + friend class Ppu; + void set_ppu_2002_time(nes_time_t t) { ppu_2002_time = t - 1 - cpu_time_offset; } + + public: + private: + friend class Mapper; + + void enable_prg_6000() + { + sram_writable = 0; + sram_readable = 0; + lrom_readable = 0x8000; + } + + void enable_sram(bool b, bool read_only = false) + { + sram_writable = 0; + if (b) + { + if (!sram_present) + { + sram_present = true; + memset(impl->sram, 0xFF, impl->sram_size); + } + sram_readable = sram_end; + if (!read_only) + sram_writable = sram_end; + cpu::map_code(0x6000, impl->sram_size, impl->sram); + } + else + { + sram_readable = 0; + for (int i = 0; i < impl->sram_size; i += cpu::page_size) + cpu::map_code(0x6000 + i, cpu::page_size, impl->unmapped_page); + } + } + + nes_time_t clock() const { return clock_; } + + void add_mapper_intercept(nes_addr_t addr, unsigned size, bool read, bool write) + { + int end = (addr + size + (page_size - 1)) >> page_bits; + for (int page = addr >> page_bits; page < end; page++) + { + data_reader_mapped[page] |= read; + data_writer_mapped[page] |= write; + } + } + + public: + private: + friend class Cpu; + int cpu_read_ppu(nes_addr_t, nes_time_t); + int cpu_read(nes_addr_t, nes_time_t); + void cpu_write(nes_addr_t, int data, nes_time_t); + void cpu_write_2007(int data); + + private: + unsigned char data_reader_mapped[page_count + 1]; // extra entry for overflow + unsigned char data_writer_mapped[page_count + 1]; +}; + +inline int Core::cpu_read(nes_addr_t addr, nes_time_t time) +{ + { + int result = cpu::low_mem[addr & 0x7FF]; + if (!(addr & 0xE000)) + return result; + } + + { + int result = *cpu::get_code(addr); + if (addr > 0x7FFF) + return result; + } + + time += cpu_time_offset; + if (addr < 0x4000) + return ppu.read(addr, time); + + clock_ = time; + if (data_reader_mapped[addr >> page_bits]) + { + int result = mapper->read(time, addr); + if (result >= 0) + return result; + } + + if (addr < 0x6000) + return read_io(addr); + + if (addr < sram_readable) + return impl->sram[addr & (impl_t::sram_size - 1)]; + + if (addr < lrom_readable) + return *cpu::get_code(addr); + + return addr >> 8; // simulate open bus +} + +inline int Core::cpu_read_ppu(nes_addr_t addr, nes_time_t time) +{ + // LOG_FREQ( "cpu_read_ppu", 16, addr >> 12 ); + + // Read of status register (0x2002) is heavily optimized since many games + // poll it hundreds of times per frame. + nes_time_t next = ppu_2002_time; + int result = ppu.r2002; + if (addr == 0x2002) + { + ppu.second_write = false; + if (time >= next) + result = ppu.read_2002(time + cpu_time_offset); + } + else + { + result = cpu::low_mem[addr & 0x7FF]; + if (addr >= 0x2000) + result = cpu_read(addr, time); + } + + return result; +} + +inline void Core::cpu_write_2007(int data) +{ + // ppu.write_2007() is inlined + if (ppu.write_2007(data) & Ppu::vaddr_clock_mask) + mapper->a12_clocked(); +} + +inline void Core::cpu_write(nes_addr_t addr, int data, nes_time_t time) +{ + // LOG_FREQ( "cpu_write", 16, addr >> 12 ); + + if (!(addr & 0xE000)) + { + cpu::low_mem[addr & 0x7FF] = data; + return; + } + + time += cpu_time_offset; + if (addr < 0x4000) + { + if ((addr & 7) == 7) + cpu_write_2007(data); + else + ppu.write(time, addr, data); + return; + } + + clock_ = time; + if (data_writer_mapped[addr >> page_bits] && mapper->write_intercepted(time, addr, data)) + return; + + if (addr < 0x6000) + { + write_io(addr, data); + return; + } + + if (addr < sram_writable) + { + impl->sram[addr & (impl_t::sram_size - 1)] = data; + return; + } + + if (addr > 0x7FFF) + { + mapper->write(clock_, addr, data); + return; + } +} + +#define NES_CPU_READ_PPU(cpu, addr, time) \ + static_cast(*cpu).cpu_read_ppu(addr, time) + +#define NES_CPU_READ(cpu, addr, time) \ + static_cast(*cpu).cpu_read(addr, time) + +#define NES_CPU_WRITEX(cpu, addr, data, time) \ + { \ + static_cast(*cpu).cpu_write(addr, data, time); \ + } + +#define NES_CPU_WRITE(cpu, addr, data, time) \ + { \ + if (addr < 0x800) \ + cpu->low_mem[addr] = data; \ + else if (addr == 0x2007) \ + static_cast(*cpu).cpu_write_2007(data); \ + else \ + static_cast(*cpu).cpu_write(addr, data, time); \ + } + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/cpu.cpp b/quicknes/source/quickerNES/core/cpu.cpp new file mode 100644 index 00000000000..171f9da2047 --- /dev/null +++ b/quicknes/source/quickerNES/core/cpu.cpp @@ -0,0 +1,1495 @@ +// Emu 0.7.0. http://www.slack.net/~ant/nes-emu/ + +#include "cpu.hpp" +#include "core.hpp" +#include +#include +#include + +/** + * Optimizations by Sergio Martin (eien86) 2023-2024 + * The license below (LGPLv2) applies. + */ + +/* Copyright (C) 2003-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +#define st_n 0x80 +#define st_v 0x40 +#define st_r 0x20 +#define st_b 0x10 +#define st_d 0x08 +#define st_i 0x04 +#define st_z 0x02 +#define st_c 0x01 + +// Macros + +#define GET_OPERAND(addr) page[addr] +#define GET_OPERAND16(addr) *(uint16_t *)(&page[addr]) + +#define ADD_PAGE (pc++, data += 0x100 * GET_OPERAND(pc)); +#define GET_ADDR() GET_OPERAND16(pc) + +#define HANDLE_PAGE_CROSSING(lsb) clock_count += (lsb) >> 8; + +#define INC_DEC_XY(reg, n) \ + reg = uint8_t(nz = reg + n); \ + goto loop; + +#define IND_Y(r, c) \ + { \ + int32_t temp = READ_LOW(data) + y; \ + data = temp + 0x100 * READ_LOW(uint8_t(data + 1)); \ + if (c) HANDLE_PAGE_CROSSING(temp); \ + if (!(r) || (temp & 0x100)) \ + READ(data - (temp & 0x100)); \ + } + +#define IND_X \ + { \ + int32_t temp = data + x; \ + data = 0x100 * READ_LOW(uint8_t(temp + 1)) + READ_LOW(uint8_t(temp)); \ + } + +#define ARITH_ADDR_MODES(op) \ + case op - 0x04: /* (ind,x) */ \ + IND_X \ + goto ptr##op; \ + case op + 0x0C: /* (ind),y */ \ + IND_Y(true, true) \ + goto ptr##op; \ + case op + 0x10: /* zp,X */ \ + data = uint8_t(data + x); \ + case op + 0x00: /* zp */ \ + data = READ_LOW(data); \ + goto imm##op; \ + case op + 0x14: /* abs,Y */ \ + data += y; \ + goto ind##op; \ + case op + 0x18: /* abs,X */ \ + data += x; \ + ind##op: \ + { \ + HANDLE_PAGE_CROSSING(data); \ + uint32_t temp = data; \ + ADD_PAGE \ + if (temp & 0x100) \ + READ(data - 0x100); \ + goto ptr##op; \ + } \ + case op + 0x08: /* abs */ \ + ADD_PAGE \ + ptr##op : data = READ(data); \ + case op + 0x04: /* imm */ \ + imm##op: + +#define ARITH_ADDR_MODES_PTR(op) \ + case op - 0x04: /* (ind,x) */ \ + IND_X \ + goto imm##op; \ + case op + 0x0C: \ + IND_Y(false, false) \ + goto imm##op; \ + case op + 0x10: /* zp,X */ \ + data = uint8_t(data + x); \ + goto imm##op; \ + case op + 0x14: /* abs,Y */ \ + data += y; \ + goto ind##op; \ + case op + 0x18: /* abs,X */ \ + data += x; \ + ind##op: \ + { \ + uint32_t temp = data; \ + ADD_PAGE \ + READ(data - (temp & 0x100)); \ + goto imm##op; \ + } \ + case op + 0x08: /* abs */ \ + ADD_PAGE \ + case op + 0x00: /* zp */ \ + imm##op: + +// Adding likely to fail because typically for loops exit conditions fail until the last one +#define BRANCH(cond) \ + { \ + pc++; \ + int offset = (int8_t)data; \ + int extra_clock = (pc & 0xFF) + offset; \ + if (!(cond)) \ + { \ + clock_count--; \ + goto loop; \ + } \ + pc += offset; \ + pc = uint16_t(pc); \ + clock_count += (extra_clock >> 8) & 1; \ + goto loop; \ + } + +void Cpu::reset(void const *unmapped_page) +{ + r.status = 0; + r.sp = 0; + r.pc = 0; + r.a = 0; + r.x = 0; + r.y = 0; + + error_count_ = 0; + clock_count = 0; + clock_limit = 0; + irq_time_ = LONG_MAX / 2 + 1; + end_time_ = LONG_MAX / 2 + 1; + + set_code_page(0, low_mem); + set_code_page(1, low_mem); + set_code_page(2, low_mem); + set_code_page(3, low_mem); + for (int32_t i = 4; i < page_count + 1; i++) + set_code_page(i, (uint8_t *)unmapped_page); + + isCorrectExecution = true; +} + +// Note: 'addr' is evaulated more than once in the following macros, so it +// must not contain side-effects. + +// static void log_read( int32_t opcode ) { LOG_FREQ( "read", 256, opcode ); } + +#define READ_LIKELY_PPU(addr) (NES_CPU_READ_PPU(this, (addr), (clock_count))) +#define READ(addr) (NES_CPU_READ(this, (addr), (clock_count))) +#define WRITE(addr, data) \ + { \ + NES_CPU_WRITE(this, (addr), (data), (clock_count)); \ + } + +#define READ_LOW(addr) (low_mem[int32_t(addr)]) +#define WRITE_LOW(addr, data) (void)(READ_LOW(addr) = (data)) + +#define READ_PROG(addr) (code_map[(addr) >> page_bits][addr]) +#define READ_PROG16(addr) GET_LE16(&READ_PROG(addr)) + +#define SET_SP(v) (sp = ((v) + 1) | 0x100) +#define GET_SP() ((sp - 1) & 0xFF) +#define PUSH(v) ((sp = (sp - 1) | 0x100), WRITE_LOW(sp, v)) + +#define IS_NEG (nz & 0x880) + +#define CALC_STATUS(out) \ + do { \ + out = status & (st_v | st_d | st_i); \ + out |= (c >> 8) & st_c; \ + if (IS_NEG) out |= st_n; \ + if (!(nz & 0xFF)) out |= st_z; \ + } while (0) + +#define SET_STATUS(in) \ + do { \ + status = in & (st_v | st_d | st_i); \ + c = in << 8; \ + nz = (in << 4) & 0x800; \ + nz |= ~in & st_z; \ + } while (0) + +inline int32_t Cpu::read(nes_addr_t addr) +{ + return READ(addr); +} + +inline void Cpu::write(nes_addr_t addr, int value) +{ + WRITE(addr, value); +} + +// status flags +uint8_t clock_table[256] = { + // 0 1 2 3 4 5 6 7 8 9 A B C D E F + 7, + 6, + 2, + 8, + 3, + 3, + 5, + 5, + 3, + 2, + 2, + 2, + 4, + 4, + 6, + 6, // 0 + 3, + 5, + 2, + 8, + 4, + 4, + 6, + 6, + 2, + 4, + 2, + 7, + 4, + 4, + 7, + 7, // 1 + 6, + 6, + 2, + 8, + 3, + 3, + 5, + 5, + 4, + 2, + 2, + 2, + 4, + 4, + 6, + 6, // 2 + 3, + 5, + 2, + 8, + 4, + 4, + 6, + 6, + 2, + 4, + 2, + 7, + 4, + 4, + 7, + 7, // 3 + 6, + 6, + 2, + 8, + 3, + 3, + 5, + 5, + 3, + 2, + 2, + 2, + 3, + 4, + 6, + 6, // 4 + 3, + 5, + 2, + 8, + 4, + 4, + 6, + 6, + 2, + 4, + 2, + 7, + 4, + 4, + 7, + 7, // 5 + 6, + 6, + 2, + 8, + 3, + 3, + 5, + 5, + 4, + 2, + 2, + 2, + 5, + 4, + 6, + 6, // 6 + 3, + 5, + 2, + 8, + 4, + 4, + 6, + 6, + 2, + 4, + 2, + 7, + 4, + 4, + 7, + 7, // 7 + 2, + 6, + 2, + 6, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 4, + 4, + 4, + 4, // 8 + 3, + 6, + 2, + 6, + 4, + 4, + 4, + 4, + 2, + 5, + 2, + 5, + 5, + 5, + 5, + 5, // 9 + 2, + 6, + 2, + 6, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 4, + 4, + 4, + 4, // A + 3, + 5, + 2, + 5, + 4, + 4, + 4, + 4, + 2, + 4, + 2, + 4, + 4, + 4, + 4, + 4, // B + 2, + 6, + 2, + 8, + 3, + 3, + 5, + 5, + 2, + 2, + 2, + 2, + 4, + 4, + 6, + 6, // C + 3, + 5, + 2, + 8, + 4, + 4, + 6, + 6, + 2, + 4, + 2, + 7, + 4, + 4, + 7, + 7, // D + 2, + 6, + 2, + 8, + 3, + 3, + 5, + 5, + 2, + 2, + 2, + 2, + 4, + 4, + 6, + 6, // E + 3, + 5, + 2, + 8, + 4, + 4, + 6, + 6, + 2, + 4, + 2, + 7, + 4, + 4, + 7, + 7 // F +}; + + +// This optimization is only possible with the GNU compiler -- MSVC does not allow function alignment +#ifdef __GNUC__ +__attribute__((optimize("align-functions=1024"))) +#endif +Cpu::result_t +Cpu::run(nes_time_t end) +{ + set_end_time_(end); + clock_count = 0; + isCorrectExecution = true; + + volatile result_t result = result_cycles; + + // registers + uint32_t pc = r.pc; + int32_t sp; + SET_SP(r.sp); + int32_t a = r.a; + int32_t x = r.x; + int32_t y = r.y; + + int32_t status; + int32_t c; // carry set if (c & 0x100) != 0 + int32_t nz; // Z set if (nz & 0xFF) == 0, N set if (nz & 0x880) != 0 + { + int32_t temp = r.status; + SET_STATUS(temp); + } + + uint32_t data; + uint8_t const *page; + uint8_t opcode; + +loop: + + page = code_map[pc >> page_bits]; + opcode = page[pc++]; + data = page[pc]; + + if (clock_count >= clock_limit) [[unlikely]] + goto stop; + +// If traceback support is enabled, trigger it here +#ifdef _QUICKERNES_ENABLE_TRACEBACK_SUPPORT + if (tracecb) + { + unsigned int scratch[7]; + scratch[0] = a; + scratch[1] = x; + scratch[2] = y; + scratch[3] = sp; + scratch[4] = pc - 1; + scratch[5] = status; + scratch[6] = opcode; + tracecb(scratch); + } +#endif + + clock_count += clock_table[opcode]; + + switch (opcode) + { + // Often-Used + + case 0xB5: // LDA zp,x + data = uint8_t(data + x); + case 0xA5: // LDA zp + a = nz = READ_LOW(data); + pc++; + goto loop; + + case 0xD0: // BNE + BRANCH((uint8_t)nz); + + case 0x20: + { // JSR + int32_t temp = pc + 1; + pc = GET_OPERAND16(pc); + WRITE_LOW(0x100 | (sp - 1), temp >> 8); + sp = (sp - 2) | 0x100; + WRITE_LOW(sp, temp); + goto loop; + } + + case 0x4C: // JMP abs + pc = GET_OPERAND16(pc); + goto loop; + + case 0xE8: INC_DEC_XY(x, 1) // INX + + case 0x10: // BPL + BRANCH(!IS_NEG) + + ARITH_ADDR_MODES(0xC5) // CMP + nz = a - data; + pc++; + c = ~nz; + nz &= 0xFF; + goto loop; + + case 0x30: // BMI + BRANCH(IS_NEG) + + case 0xF0: // BEQ + BRANCH(!(uint8_t)nz); + + case 0x95: // STA zp,x + data = uint8_t(data + x); + case 0x85: // STA zp + pc++; + WRITE_LOW(data, a); + goto loop; + + case 0xC8: INC_DEC_XY(y, 1) // INY + + case 0xA8: // TAY + y = a; + case 0x98: // TYA + a = nz = y; + goto loop; + + case 0xAD: // LDA abs + data = GET_ADDR(); + pc += 2; + a = nz = READ_LIKELY_PPU(data); + goto loop; + + case 0x60: // RTS + pc = 1 + READ_LOW(sp); + pc += READ_LOW(0x100 | (sp - 0xFF)) * 0x100; + sp = (sp - 0xFE) | 0x100; + goto loop; + + case 0x99: // STA abs,Y + data += y; + goto sta_ind_common; + + case 0x9D: // STA abs,X + data += x; + sta_ind_common: + ADD_PAGE + READ(data - (data & 0x100)); + goto sta_ptr; + + case 0x8D: // STA abs + ADD_PAGE + sta_ptr: + pc++; + WRITE(data, a); + goto loop; + + case 0xA9: // LDA #imm + pc++; + a = data; + nz = data; + goto loop; + + case 0xB9: // LDA abs,Y + data += y; + data -= x; + case 0xBD: + { // LDA abs,X + pc++; + uint32_t msb = GET_OPERAND(pc); + data += x; + // indexed common + pc++; + HANDLE_PAGE_CROSSING(data); + int32_t temp = data; + data += msb * 0x100; + a = nz = READ_PROG(uint16_t(data)); + if ((uint32_t)(data - 0x2000) >= 0x6000) + goto loop; + if (temp & 0x100) + READ(data - 0x100); + a = nz = READ(data); + goto loop; + } + + case 0xB1: + { // LDA (ind),Y + uint32_t msb = READ_LOW((uint8_t)(data + 1)); + data = READ_LOW(data) + y; + // indexed common + pc++; + HANDLE_PAGE_CROSSING(data); + int32_t temp = data; + data += msb * 0x100; + a = nz = READ_PROG(uint16_t(data)); + if ((uint32_t)(data - 0x2000) >= 0x6000) + goto loop; + if (temp & 0x100) + READ(data - 0x100); + a = nz = READ(data); + goto loop; + } + + case 0xA1: // LDA (ind,X) + IND_X + a = nz = READ(data); + pc++; + goto loop; + + // Branch + + case 0x50: // BVC + BRANCH(!(status & st_v)) + + case 0x70: // BVS + BRANCH(status & st_v) + + case 0xB0: // BCS + BRANCH(c & 0x100) + + case 0x90: // BCC + BRANCH(!(c & 0x100)) + + // Load/store + + case 0x94: // STY zp,x + data = uint8_t(data + x); + case 0x84: // STY zp + pc++; + WRITE_LOW(data, y); + goto loop; + + case 0x96: // STX zp,y + data = uint8_t(data + y); + case 0x86: // STX zp + pc++; + WRITE_LOW(data, x); + goto loop; + + case 0xB6: // LDX zp,y + data = uint8_t(data + y); + case 0xA6: // LDX zp + data = READ_LOW(data); + case 0xA2: // LDX #imm + pc++; + x = data; + nz = data; + goto loop; + + case 0xB4: // LDY zp,x + data = uint8_t(data + x); + case 0xA4: // LDY zp + data = READ_LOW(data); + case 0xA0: // LDY #imm + pc++; + y = data; + nz = data; + goto loop; + + case 0x91: // STA (ind),Y + IND_Y(false, false) + goto sta_ptr; + + case 0x81: // STA (ind,X) + IND_X + goto sta_ptr; + + case 0xBC: // LDY abs,X + data += x; + HANDLE_PAGE_CROSSING(data); + case 0xAC: + { // LDY abs + pc++; + uint32_t addr = data + 0x100 * GET_OPERAND(pc); + if (data & 0x100) + READ(addr - 0x100); + pc++; + y = nz = READ(addr); + goto loop; + } + + case 0xBE: // LDX abs,y + data += y; + HANDLE_PAGE_CROSSING(data); + case 0xAE: + { // LDX abs + pc++; + uint32_t addr = data + 0x100 * GET_OPERAND(pc); + pc++; + if (data & 0x100) + READ(addr - 0x100); + x = nz = READ(addr); + goto loop; + } + + { + int32_t temp; + case 0x8C: // STY abs + temp = y; + goto store_abs; + + case 0x8E: // STX abs + temp = x; + store_abs: + uint32_t addr = GET_ADDR(); + WRITE(addr, temp); + pc += 2; + goto loop; + } + + // Compare + + case 0xEC: + { // CPX abs + uint32_t addr = GET_ADDR(); + pc++; + data = READ(addr); + goto cpx_data; + } + + case 0xE4: // CPX zp + data = READ_LOW(data); + case 0xE0: // CPX #imm + cpx_data: + nz = x - data; + pc++; + c = ~nz; + nz &= 0xFF; + goto loop; + + case 0xCC: + { // CPY abs + uint32_t addr = GET_ADDR(); + pc++; + data = READ(addr); + goto cpy_data; + } + + case 0xC4: // CPY zp + data = READ_LOW(data); + case 0xC0: // CPY #imm + cpy_data: + nz = y - data; + pc++; + c = ~nz; + nz &= 0xFF; + goto loop; + + // Logical + + ARITH_ADDR_MODES(0x25) // AND + nz = (a &= data); + pc++; + goto loop; + + ARITH_ADDR_MODES(0x45) // EOR + nz = (a ^= data); + pc++; + goto loop; + + ARITH_ADDR_MODES(0x05) // ORA + nz = (a |= data); + pc++; + goto loop; + + case 0x2C: + { // BIT abs + uint32_t addr = GET_ADDR(); + pc += 2; + status &= ~st_v; + nz = READ_LIKELY_PPU(addr); + status |= nz & st_v; + if (a & nz) + goto loop; + // result must be zero, even if N bit is set + nz = nz << 4 & 0x800; + goto loop; + } + + case 0x24: // BIT zp + nz = READ_LOW(data); + pc++; + status &= ~st_v; + status |= nz & st_v; + if (a & nz) + goto loop; + // result must be zero, even if N bit is set + nz = nz << 4 & 0x800; + goto loop; + + // Add/subtract + + ARITH_ADDR_MODES(0xE5) // SBC + case 0xEB: // unofficial equivalent + data ^= 0xFF; + goto adc_imm; + + ARITH_ADDR_MODES(0x65) // ADC + adc_imm: + { + int32_t carry = (c >> 8) & 1; + int32_t ov = (a ^ 0x80) + carry + (int8_t)data; // sign-extend + status &= ~st_v; + status |= (ov >> 2) & 0x40; + c = nz = a + data + carry; + pc++; + a = (uint8_t)nz; + goto loop; + } + + // Shift/rotate + + case 0x4A: // LSR A + lsr_a: + c = 0; + case 0x6A: // ROR A + nz = (c >> 1) & 0x80; // could use bit insert macro here + c = a << 8; + nz |= a >> 1; + a = nz; + goto loop; + + case 0x0A: // ASL A + nz = a << 1; + c = nz; + a = (uint8_t)nz; + goto loop; + + case 0x2A: + { // ROL A + nz = a << 1; + int32_t temp = (c >> 8) & 1; + c = nz; + nz |= temp; + a = (uint8_t)nz; + goto loop; + } + + case 0x3E: // ROL abs,X + data += x; + goto rol_abs; + + case 0x1E: // ASL abs,X + data += x; + case 0x0E: // ASL abs + c = 0; + case 0x2E: // ROL abs + rol_abs: + { + int32_t temp = data; + ADD_PAGE + if (opcode == 0x1E || opcode == 0x3E) READ(data - (temp & 0x100)); + WRITE(data, temp = READ(data)); + nz = (c >> 8) & 1; + nz |= (c = temp << 1); + } + rotate_common: + pc++; + WRITE(data, (uint8_t)nz); + goto loop; + + case 0x7E: // ROR abs,X + data += x; + goto ror_abs; + + case 0x5E: // LSR abs,X + data += x; + case 0x4E: // LSR abs + c = 0; + case 0x6E: // ROR abs + ror_abs: + { + int32_t temp = data; + ADD_PAGE + if (opcode == 0x5E || opcode == 0x7E) READ(data - (temp & 0x100)); + WRITE(data, temp = READ(data)); + nz = ((c >> 1) & 0x80) | (temp >> 1); + c = temp << 8; + goto rotate_common; + } + + case 0x76: // ROR zp,x + data = uint8_t(data + x); + goto ror_zp; + + case 0x56: // LSR zp,x + data = uint8_t(data + x); + case 0x46: // LSR zp + c = 0; + case 0x66: // ROR zp + ror_zp: + { + int32_t temp = READ_LOW(data); + nz = ((c >> 1) & 0x80) | (temp >> 1); + c = temp << 8; + goto write_nz_zp; + } + + case 0x36: // ROL zp,x + data = uint8_t(data + x); + goto rol_zp; + + case 0x16: // ASL zp,x + data = uint8_t(data + x); + case 0x06: // ASL zp + c = 0; + case 0x26: // ROL zp + rol_zp: + nz = (c >> 8) & 1; + nz |= (c = READ_LOW(data) << 1); + goto write_nz_zp; + + // Increment/decrement + + case 0xCA: INC_DEC_XY(x, -1) // DEX + + case 0x88: INC_DEC_XY(y, -1) // DEY + + case 0xF6: // INC zp,x + data = uint8_t(data + x); + case 0xE6: // INC zp + nz = 1; + goto add_nz_zp; + + case 0xD6: // DEC zp,x + data = uint8_t(data + x); + case 0xC6: // DEC zp + nz = -1; + add_nz_zp: + nz += READ_LOW(data); + write_nz_zp: + pc++; + WRITE_LOW(data, nz); + goto loop; + + case 0xFE: + { // INC abs,x + int32_t temp = data + x; + data = x + GET_ADDR(); + READ(data - (temp & 0x100)); + goto inc_ptr; + } + + case 0xEE: // INC abs + data = GET_ADDR(); + inc_ptr: + nz = 1; + goto inc_common; + + case 0xDE: + { // DEC abs,x + int32_t temp = data + x; + data = x + GET_ADDR(); + READ(data - (temp & 0x100)); + goto dec_ptr; + } + + case 0xCE: // DEC abs + data = GET_ADDR(); + dec_ptr: + nz = -1; + inc_common: + { + int32_t temp; + WRITE(data, temp = READ(data)); + nz += temp; + pc += 2; + WRITE(data, (uint8_t)nz); + goto loop; + } + + // Transfer + + case 0xAA: // TAX + x = a; + case 0x8A: // TXA + a = nz = x; + goto loop; + + case 0x9A: // TXS + SET_SP(x); // verified (no flag change) + goto loop; + + case 0xBA: // TSX + x = nz = GET_SP(); + goto loop; + + // Stack + + case 0x48: // PHA + PUSH(a); // verified + goto loop; + + case 0x68: // PLA + a = nz = READ_LOW(sp); + sp = (sp - 0xFF) | 0x100; + goto loop; + + case 0x40: // RTI + { + int32_t temp = READ_LOW(sp); + pc = READ_LOW(0x100 | (sp - 0xFF)); + pc |= READ_LOW(0x100 | (sp - 0xFE)) * 0x100; + sp = (sp - 0xFD) | 0x100; + data = status; + SET_STATUS(temp); + } + if (!((data ^ status) & st_i)) + goto loop; // I flag didn't change + i_flag_changed: + // dprintf( "%6d %s\n", time(), (status & st_i ? "SEI" : "CLI") ); + this->r.status = status; // update externally-visible I flag + // update clock_limit based on modified I flag + clock_limit = end_time_; + if (end_time_ <= irq_time_) + goto loop; + if (status & st_i) + goto loop; + clock_limit = irq_time_; + goto loop; + + case 0x28: + { // PLP + int32_t temp = READ_LOW(sp); + sp = (sp - 0xFF) | 0x100; + data = status; + SET_STATUS(temp); + if (!((data ^ status) & st_i)) + goto loop; // I flag didn't change + if (!(status & st_i)) + goto handle_cli; + goto handle_sei; + } + + case 0x08: + { // PHP + int32_t temp; + CALC_STATUS(temp); + PUSH(temp | st_b | st_r); + goto loop; + } + + case 0x6C: // JMP (ind) + data = GET_ADDR(); + pc = READ(data); + pc |= READ((data & 0xFF00) | ((data + 1) & 0xFF)) << 8; + goto loop; + + case 0x00: + { // BRK + pc++; + WRITE_LOW(0x100 | (sp - 1), pc >> 8); + WRITE_LOW(0x100 | (sp - 2), pc); + int32_t temp; + CALC_STATUS(temp); + sp = (sp - 3) | 0x100; + WRITE_LOW(sp, temp | st_b | st_r); + pc = *(uint16_t *)(&code_map[0xFFFE >> page_bits][0xFFFE]); + status |= st_i; + goto i_flag_changed; + } + + // Flags + + case 0x38: // SEC + c = ~0; + goto loop; + + case 0x18: // CLC + c = 0; + goto loop; + + case 0xB8: // CLV + status &= ~st_v; + goto loop; + + case 0xD8: // CLD + status &= ~st_d; + goto loop; + + case 0xF8: // SED + status |= st_d; + goto loop; + + case 0x58: // CLI + if (!(status & st_i)) + goto loop; + status &= ~st_i; + handle_cli: + // dprintf( "%6d CLI\n", time() ); + this->r.status = status; // update externally-visible I flag + if (clock_count < end_time_) + { + if (end_time_ <= irq_time_) + goto loop; // irq is later + if (clock_count >= irq_time_) + irq_time_ = clock_count + 1; // delay IRQ until after next instruction + clock_limit = irq_time_; + goto loop; + } + // execution is stopping now, so delayed CLI must be handled by caller + result = result_cli; + goto end; + + case 0x78: // SEI + if (status & st_i) + goto loop; + status |= st_i; + handle_sei: + // dprintf( "%6d SEI\n", time() ); + this->r.status = status; // update externally-visible I flag + clock_limit = end_time_; + if (clock_count < irq_time_) + goto loop; + result = result_sei; // IRQ will occur now, even though I flag is set + goto end; + + // Unofficial + case 0x1C: + case 0x3C: + case 0x5C: + case 0x7C: + case 0xDC: + case 0xFC: + { // SKW + data += x; + HANDLE_PAGE_CROSSING(data); + int32_t addr = GET_ADDR() + x; + if (data & 0x100) + READ(addr - 0x100); + READ(addr); + } + case 0x0C: // SKW + pc++; + case 0x74: + case 0x04: + case 0x14: + case 0x34: + case 0x44: + case 0x54: + case 0x64: // SKB + case 0x80: + case 0x82: + case 0x89: + case 0xC2: + case 0xD4: + case 0xE2: + case 0xF4: + pc++; + case 0xEA: + case 0x1A: + case 0x3A: + case 0x5A: + case 0x7A: + case 0xDA: + case 0xFA: // NOP + goto loop; + + ARITH_ADDR_MODES_PTR(0xC7) // DCP + WRITE(data, nz = READ(data)); + nz = uint8_t(nz - 1); + WRITE(data, nz); + pc++; + nz = a - nz; + c = ~nz; + nz &= 0xFF; + goto loop; + + ARITH_ADDR_MODES_PTR(0xE7) // ISC + WRITE(data, nz = READ(data)); + nz = uint8_t(nz + 1); + WRITE(data, nz); + data = nz ^ 0xFF; + goto adc_imm; + + ARITH_ADDR_MODES_PTR(0x27) + { // RLA + WRITE(data, nz = READ(data)); + int32_t temp = c; + c = nz << 1; + nz = uint8_t(c) | ((temp >> 8) & 0x01); + WRITE(data, nz); + pc++; + nz = a &= nz; + goto loop; + } + + ARITH_ADDR_MODES_PTR(0x67) + { // RRA + int32_t temp; + WRITE(data, temp = READ(data)); + nz = ((c >> 1) & 0x80) | (temp >> 1); + WRITE(data, nz); + data = nz; + c = temp << 8; + goto adc_imm; + } + + ARITH_ADDR_MODES_PTR(0x07) // SLO + WRITE(data, nz = READ(data)); + c = nz << 1; + nz = uint8_t(c); + WRITE(data, nz); + nz = (a |= nz); + pc++; + goto loop; + + ARITH_ADDR_MODES_PTR(0x47) // SRE + WRITE(data, nz = READ(data)); + c = nz << 8; + nz >>= 1; + WRITE(data, nz); + nz = a ^= nz; + pc++; + goto loop; + + case 0x4B: // ALR + nz = (a &= data); + pc++; + goto lsr_a; + + case 0x0B: // ANC + case 0x2B: + nz = a &= data; + c = a << 1; + pc++; + goto loop; + + case 0x6B: // ARR + nz = a = uint8_t(((data & a) >> 1) | ((c >> 1) & 0x80)); + c = a << 2; + status = (status & ~st_v) | ((a ^ a << 1) & st_v); + pc++; + goto loop; + + case 0xAB: // LXA + a = data; + x = data; + nz = data; + pc++; + goto loop; + + case 0xA3: // LAX + IND_X + goto lax_ptr; + + case 0xB3: + IND_Y(true, true) + goto lax_ptr; + + case 0xB7: + data = uint8_t(data + y); + + case 0xA7: + data = READ_LOW(data); + goto lax_imm; + + case 0xBF: + { + data += y; + HANDLE_PAGE_CROSSING(data); + int32_t temp = data; + ADD_PAGE; + if (temp & 0x100) + READ(data - 0x100); + goto lax_ptr; + } + + case 0xAF: + ADD_PAGE + + lax_ptr: + data = READ(data); + lax_imm: + nz = x = a = data; + pc++; + goto loop; + + case 0x83: // SAX + IND_X + goto sax_imm; + + case 0x97: + data = uint8_t(data + y); + goto sax_imm; + + case 0x8F: + ADD_PAGE + + case 0x87: + sax_imm: + WRITE(data, a & x); + pc++; + goto loop; + + case 0xCB: // SBX + data = (a & x) - data; + c = (data <= 0xFF) ? 0x100 : 0; + nz = x = uint8_t(data); + pc++; + goto loop; + + case 0x93: // SHA (ind),Y + IND_Y(false, false) + pc++; + WRITE(data, uint8_t(a & x & ((data >> 8) + 1))); + goto loop; + + case 0x9F: + { // SHA abs,Y + data += y; + int32_t temp = data; + ADD_PAGE + READ(data - (temp & 0x100)); + pc++; + WRITE(data, uint8_t(a & x & ((data >> 8) + 1))); + goto loop; + } + + case 0x9E: + { // SHX abs,Y + data += y; + int32_t temp = data; + ADD_PAGE + READ(data - (temp & 0x100)); + pc++; + if (!(temp & 0x100)) + WRITE(data, uint8_t(x & ((data >> 8) + 1))); + goto loop; + } + + case 0x9C: + { // SHY abs,X + data += x; + int32_t temp = data; + ADD_PAGE + READ(data - (temp & 0x100)); + pc++; + if (!(temp & 0x100)) + WRITE(data, uint8_t(y & ((data >> 8) + 1))); + goto loop; + } + + case 0x9B: + { // SHS abs,Y + data += y; + int32_t temp = data; + ADD_PAGE + READ(data - (temp & 0x100)); + pc++; + SET_SP(a & x); + WRITE(data, uint8_t(a & x & ((data >> 8) + 1))); + goto loop; + } + + case 0xBB: + { // LAS abs,Y + data += y; + HANDLE_PAGE_CROSSING(data); + int32_t temp = data; + ADD_PAGE + if (temp & 0x100) + READ(data - 0x100); + pc++; + a = GET_SP(); + x = a &= READ(data); + SET_SP(a); + goto loop; + } + + // KIL (JAM) [HLT] + default: + // case 0x02: case 0x12: case 0x22: case 0x32: case 0x42: case 0x52: case 0x62: case 0x72: case 0x92: case 0xB2: case 0xD2: case 0xF2: + isCorrectExecution = false; + goto stop; + + // Unimplemented + + // case page_wrap_opcode: // HLT + // if ( pc > 0x10000 ) + // { + // // handle wrap-around (assumes caller has put page of HLT at 0x10000) + // pc = (pc - 1) & 0xFFFF; + // clock_count -= 2; + // goto loop; + // } + // fall through + // default: + // // skip over proper number of bytes + // static uint32_t char const row [8] = { 0x95, 0x95, 0x95, 0xd5, 0x95, 0x95, 0xd5, 0xf5 }; + // int len = row [opcode >> 2 & 7] >> (opcode << 1 & 6) & 3; + // if ( opcode == 0x9C ) + // len = 3; + // pc += len - 1; + // error_count_++; + // goto loop; + + // result = result_badop; // TODO: re-enable + goto stop; + } + +stop: + pc--; +end: + +{ + int temp; + CALC_STATUS(temp); + r.status = temp; +} + + this->clock_count = clock_count; + r.pc = pc; + r.sp = GET_SP(); + r.a = a; + r.x = x; + r.y = y; + irq_time_ = LONG_MAX / 2 + 1; + + return result; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/cpu.hpp b/quicknes/source/quickerNES/core/cpu.hpp new file mode 100644 index 00000000000..826eb8c9a9f --- /dev/null +++ b/quicknes/source/quickerNES/core/cpu.hpp @@ -0,0 +1,165 @@ +#pragma once + +// NES 6502 CPU emulator +// Emu 0.7.0 + +#include + +namespace quickerNES +{ + +typedef long nes_time_t; // clock cycle count +typedef unsigned nes_addr_t; // 16-bit address + +class Cpu +{ + public: + void set_tracecb(void (*cb)(unsigned int *data)) + { + tracecb = cb; + } + + void (*tracecb)(unsigned int *dest); + + // NES 6502 registers. *Not* kept updated during a call to run(). + struct registers_t + { + uint16_t pc; // Should be more than 16 bits to allow overflow detection -- but I (eien86) removed it to maximize performance. + uint8_t a; + uint8_t x; + uint8_t y; + uint8_t status; + uint8_t sp; + }; + + // Map code memory (memory accessed via the program counter). Start and size + // must be multiple of page_size. + enum + { + page_bits = 11 + }; + enum + { + page_count = 0x10000 >> page_bits + }; + enum + { + page_size = 1L << page_bits + }; + + // Clear registers, unmap memory, and map code pages to unmapped_page. + void reset(void const *unmapped_page = 0); + + inline void set_code_page(int i, uint8_t const *p) + { + code_map[i] = p - (unsigned)i * page_size; + } + + inline void map_code(nes_addr_t start, unsigned size, const void *data) + { + unsigned first_page = start / page_size; + for (unsigned i = size / page_size; i--;) + set_code_page(first_page + i, (uint8_t *)data + i * page_size); + } + + // Access memory as the emulated CPU does. + int read(nes_addr_t); + void write(nes_addr_t, int data); + + // Push a byte on the stack + inline void push_byte(int data) + { + int sp = r.sp; + r.sp = (sp - 1) & 0xFF; + low_mem[0x100 + sp] = data; + } + + // Reasons that run() returns + enum result_t + { + result_cycles, // Requested number of cycles (or more) were executed + result_sei, // I flag just set and IRQ time would generate IRQ now + result_cli, // I flag just cleared but IRQ should occur *after* next instr + result_badop // unimplemented/illegal instruction + }; + + // This optimization is only possible with the GNU compiler -- MSVC does not allow function alignment +#if defined(__GNUC__) || defined(__clang__) + result_t run(nes_time_t end_time) __attribute__((aligned(1024))); +#else + result_t run(nes_time_t end_time); +#endif + + nes_time_t time() const { return clock_count; } + + inline void reduce_limit(int offset) + { + clock_limit -= offset; + end_time_ -= offset; + irq_time_ -= offset; + } + + inline void set_end_time_(nes_time_t t) + { + end_time_ = t; + update_clock_limit(); + } + + inline void set_irq_time_(nes_time_t t) + { + irq_time_ = t; + update_clock_limit(); + } + + unsigned long error_count() const { return error_count_; } + + // If PC exceeds 0xFFFF and encounters page_wrap_opcode, it will be silently wrapped. + enum + { + page_wrap_opcode = 0xF2 + }; + + // One of the many opcodes that are undefined and stop CPU emulation. + enum + { + bad_opcode = 0xD2 + }; + + uint8_t const *code_map[page_count + 1]; + nes_time_t clock_limit; + nes_time_t clock_count; + nes_time_t irq_time_; + nes_time_t end_time_; + unsigned long error_count_; + + enum + { + irq_inhibit = 0x04 + }; + + inline void update_clock_limit() + { + nes_time_t t = end_time_; + if (t > irq_time_ && !(r.status & irq_inhibit)) + t = irq_time_; + clock_limit = t; + } + + registers_t r; + bool isCorrectExecution = true; + + // low_mem is a full page size so it can be mapped with code_map + uint8_t low_mem[page_size > 0x800 ? page_size : 0x800]; + + inline uint8_t *get_code(nes_addr_t addr) + { + return (uint8_t *)code_map[addr >> page_bits] + addr; + } + + inline const uint8_t *get_code(nes_addr_t addr) const + { + return (const uint8_t *)code_map[addr >> page_bits] + addr; + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/emu.cpp b/quicknes/source/quickerNES/core/emu.cpp new file mode 100644 index 00000000000..a706be208a2 --- /dev/null +++ b/quicknes/source/quickerNES/core/emu.cpp @@ -0,0 +1,845 @@ +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "emu.hpp" +#include "apu/NESEffectsBuffer.hpp" +#include "apu/buffer.hpp" +#include "mappers/mapper.hpp" +#include + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +int const sound_fade_size = 384; + +Emu::equalizer_t const Emu::nes_eq = {-1.0, 80}; +Emu::equalizer_t const Emu::famicom_eq = {-15.0, 80}; +Emu::equalizer_t const Emu::tv_eq = {-12.0, 180}; +Emu::equalizer_t const Emu::flat_eq = {0.0, 1}; +Emu::equalizer_t const Emu::crisp_eq = {5.0, 1}; +Emu::equalizer_t const Emu::tinny_eq = {-47.0, 2000}; + +Emu::Emu() +{ + frame_ = &single_frame; + buffer_height_ = Ppu::buffer_height + 2; + default_sound_buf = NULL; + sound_buf = &silent_buffer; + sound_buf_changed_count = 0; + equalizer_ = nes_eq; + channel_count_ = 0; + sound_enabled = false; + host_pixels = NULL; + single_frame.pixels = 0; + single_frame.top = 0; + init_called = false; + set_palette_range(0); + memset(single_frame.palette, 0, sizeof single_frame.palette); + + extra_fade_sound_in = false; + extra_fade_sound_out = false; + extra_sound_buf_changed_count = 0; +} + +Emu::~Emu() +{ + delete default_sound_buf; +} + +const char *Emu::init_() +{ + return emu.init(); +} + +inline const char *Emu::auto_init() +{ + if (!init_called) + { + init_(); + init_called = true; + } + return 0; +} + +inline void Emu::clear_sound_buf() +{ + fade_sound_out = false; + fade_sound_in = true; + sound_buf->clear(); +} + +const char *Emu::set_cart(Cart const *new_cart) +{ + auto_init(); + const char *error = emu.open(new_cart); + if (error) return error; + + channel_count_ = Apu::osc_count + emu.mapper->channel_count(); + sound_buf->set_channel_count(channel_count()); + set_equalizer(equalizer_); + enable_sound(true); + reset(); + + return nullptr; +} + +void Emu::reset(bool full_reset, bool erase_battery_ram) +{ + clear_sound_buf(); + set_timestamp(0); + emu.reset(full_reset, erase_battery_ram); +} + +void Emu::set_palette_range(int begin, int end) +{ + // round up to alignment + emu.ppu.palette_begin = (begin + palette_alignment - 1) & ~(palette_alignment - 1); + host_palette_size = end - emu.ppu.palette_begin; +} + +const char *Emu::emulate_skip_frame(uint32_t joypad1, uint32_t joypad2, uint32_t arkanoid_latch, uint8_t arkanoid_fire) +{ + char *old_host_pixels = host_pixels; + host_pixels = NULL; + emu.emulate_frame(joypad1, joypad2, arkanoid_latch, arkanoid_fire); + host_pixels = old_host_pixels; + return 0; +} + +const char *Emu::emulate_frame(uint32_t joypad1, uint32_t joypad2, uint32_t arkanoid_latch, uint8_t arkanoid_fire) +{ + emu.ppu.host_pixels = NULL; + + unsigned changed_count = sound_buf->channels_changed_count(); + bool new_enabled = (frame_ != NULL); + + if (sound_buf_changed_count != changed_count || sound_enabled != new_enabled) + { + sound_buf_changed_count = changed_count; + sound_enabled = new_enabled; + enable_sound(sound_enabled); + } + + frame_t *f = frame_; + if (f) + { + emu.ppu.max_palette_size = host_palette_size; + emu.ppu.host_palette = f->palette + emu.ppu.palette_begin; + // add black and white for emulator to use (unless emulator uses entire + // palette for frame) + f->palette[252] = 0x0F; + f->palette[254] = 0x30; + f->palette[255] = 0x0F; + if (host_pixels) + emu.ppu.host_pixels = (uint8_t *)host_pixels + + emu.ppu.host_row_bytes * f->top; + + if (sound_buf->samples_avail()) + clear_sound_buf(); + + nes_time_t frame_len = emu.emulate_frame(joypad1, joypad2, arkanoid_latch, arkanoid_fire); + sound_buf->end_frame(frame_len, false); + + f = frame_; + f->sample_count = sound_buf->samples_avail(); + f->chan_count = sound_buf->samples_per_frame(); + f->palette_begin = emu.ppu.palette_begin; + f->palette_size = emu.ppu.palette_size; + f->burst_phase = emu.ppu.burst_phase; + f->pitch = emu.ppu.host_row_bytes; + f->pixels = emu.ppu.host_pixels + f->left; + } + else + { + emu.ppu.max_palette_size = 0; + emu.emulate_frame(joypad1, joypad2, arkanoid_latch, arkanoid_fire); + } + + return 0; +} + +// Extras + +const char *Emu::load_ines(const uint8_t *buffer) +{ + private_cart.load_ines(buffer); + return set_cart(&private_cart); +} + +void Emu::write_chr(void const *p, long count, long offset) +{ + long end = offset + count; + memcpy((uint8_t *)chr_mem() + offset, p, count); + emu.ppu.rebuild_chr(offset, end); +} + +Multi_Buffer *set_apu(Nes_Effects_Buffer *buf, Apu *apu) +{ + buf->set_apu(apu); + return buf; +} + +Multi_Buffer *set_apu(Buffer *buf, Apu *apu) +{ + buf->set_apu(apu); + return buf; +} + +const char *Emu::set_sample_rate(long rate, class Buffer *buf) +{ + auto_init(); + return set_sample_rate(rate, set_apu(buf, &emu.impl->apu)); +} + +const char *Emu::set_sample_rate(long rate, class Nes_Effects_Buffer *buf) +{ + auto_init(); + return set_sample_rate(rate, set_apu(buf, &emu.impl->apu)); +} + +// Sound + +void Emu::set_frame_rate(double rate) +{ + sound_buf->clock_rate((long)(1789773 / 60.0 * rate)); +} + +const char *Emu::set_sample_rate(long rate, Multi_Buffer *new_buf) +{ + auto_init(); + emu.impl->apu.volume(1.0); // cancel any previous non-linearity + new_buf->set_sample_rate(rate, 1200 / frame_rate); + sound_buf = new_buf; + sound_buf_changed_count = 0; + if (new_buf != default_sound_buf) + { + delete default_sound_buf; + default_sound_buf = NULL; + } + set_frame_rate(frame_rate); + return 0; +} + +const char *Emu::set_sample_rate(long rate) +{ + if (!default_sound_buf) default_sound_buf = new Mono_Buffer; + return set_sample_rate(rate, default_sound_buf); +} + +void Emu::set_equalizer(equalizer_t const &eq) +{ + equalizer_ = eq; + if (cart()) + { + blip_eq_t blip_eq(eq.treble, 0, sound_buf->sample_rate()); + emu.impl->apu.treble_eq(blip_eq); + emu.mapper->set_treble(blip_eq); + sound_buf->bass_freq(equalizer_.bass); + } +} + +void Emu::enable_sound(bool enabled) +{ + if (enabled) + { + for (int i = channel_count(); i-- > 0;) + { + Blip_Buffer *buf = sound_buf->channel(i).center; + int mapper_index = i - Apu::osc_count; + if (mapper_index < 0) + emu.impl->apu.osc_output(i, buf); + else + emu.mapper->set_channel_buf(mapper_index, buf); + } + } + else + { + emu.impl->apu.output(NULL); + for (int i = channel_count() - Apu::osc_count; i-- > 0;) + emu.mapper->set_channel_buf(i, NULL); + } +} + +void Emu::fade_samples(blip_sample_t *p, int size, int step) +{ + if (size >= sound_fade_size) + { + if (step < 0) + p += size - sound_fade_size; + + int const shift = 15; + int mul = (1 - step) << (shift - 1); + step *= (1 << shift) / sound_fade_size; + + for (int n = sound_fade_size; n--;) + { + *p = (*p * mul) >> 15; + ++p; + mul += step; + } + } +} + +long Emu::read_samples(short *out, long out_size) +{ + long count = sound_buf->read_samples(out, out_size); + if (fade_sound_in) + { + fade_sound_in = false; + if (out != NULL) + fade_samples(out, count, 1); + } + + if (fade_sound_out) + { + fade_sound_out = false; + fade_sound_in = true; // next buffer should be faded in + if (out != NULL) + fade_samples(out, count, -1); + } + return count; +} + +Emu::rgb_t const Emu::nes_colors[color_table_size] = + { + // generated with nes_ntsc default settings + {102, 102, 102}, + {0, 42, 136}, + {20, 18, 168}, + {59, 0, 164}, + {92, 0, 126}, + {110, 0, 64}, + {108, 7, 0}, + {87, 29, 0}, + {52, 53, 0}, + {12, 73, 0}, + {0, 82, 0}, + {0, 79, 8}, + {0, 64, 78}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {174, 174, 174}, + {21, 95, 218}, + {66, 64, 254}, + {118, 39, 255}, + {161, 27, 205}, + {184, 30, 124}, + {181, 50, 32}, + {153, 79, 0}, + {108, 110, 0}, + {56, 135, 0}, + {13, 148, 0}, + {0, 144, 50}, + {0, 124, 142}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {254, 254, 254}, + {100, 176, 254}, + {147, 144, 254}, + {199, 119, 254}, + {243, 106, 254}, + {254, 110, 205}, + {254, 130, 112}, + {235, 159, 35}, + {189, 191, 0}, + {137, 217, 0}, + {93, 229, 48}, + {69, 225, 130}, + {72, 206, 223}, + {79, 79, 79}, + {0, 0, 0}, + {0, 0, 0}, + {254, 254, 254}, + {193, 224, 254}, + {212, 211, 254}, + {233, 200, 254}, + {251, 195, 254}, + {254, 197, 235}, + {254, 205, 198}, + {247, 217, 166}, + {229, 230, 149}, + {208, 240, 151}, + {190, 245, 171}, + {180, 243, 205}, + {181, 236, 243}, + {184, 184, 184}, + {0, 0, 0}, + {0, 0, 0}, + + {114, 83, 79}, + {0, 23, 113}, + {32, 0, 145}, + {71, 0, 141}, + {104, 0, 103}, + {122, 0, 41}, + {120, 0, 0}, + {99, 10, 0}, + {64, 34, 0}, + {24, 54, 0}, + {0, 63, 0}, + {0, 60, 0}, + {0, 45, 54}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {190, 148, 143}, + {37, 69, 187}, + {83, 38, 228}, + {134, 13, 224}, + {177, 1, 174}, + {200, 4, 92}, + {198, 24, 1}, + {170, 53, 0}, + {124, 84, 0}, + {73, 109, 0}, + {30, 122, 0}, + {6, 118, 19}, + {9, 98, 110}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {254, 222, 215}, + {122, 142, 254}, + {168, 110, 254}, + {220, 85, 254}, + {254, 72, 247}, + {254, 76, 164}, + {254, 96, 71}, + {254, 125, 0}, + {210, 157, 0}, + {158, 183, 0}, + {114, 195, 7}, + {90, 191, 89}, + {93, 172, 182}, + {79, 79, 79}, + {0, 0, 0}, + {0, 0, 0}, + {254, 222, 215}, + {214, 190, 233}, + {233, 177, 250}, + {254, 166, 248}, + {254, 161, 228}, + {254, 163, 194}, + {254, 171, 157}, + {254, 183, 125}, + {250, 196, 108}, + {229, 206, 110}, + {211, 211, 130}, + {201, 210, 164}, + {203, 202, 202}, + {184, 184, 184}, + {0, 0, 0}, + {0, 0, 0}, + {75, 106, 64}, + {0, 46, 98}, + {0, 22, 130}, + {32, 3, 126}, + {65, 0, 88}, + {82, 0, 26}, + {80, 11, 0}, + {59, 34, 0}, + {24, 58, 0}, + {0, 77, 0}, + {0, 86, 0}, + {0, 83, 0}, + {0, 68, 39}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {136, 180, 122}, + {0, 101, 166}, + {29, 69, 208}, + {80, 44, 203}, + {123, 32, 153}, + {146, 36, 72}, + {144, 55, 0}, + {116, 84, 0}, + {70, 116, 0}, + {19, 141, 0}, + {0, 153, 0}, + {0, 149, 0}, + {0, 130, 90}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {207, 254, 188}, + {51, 183, 233}, + {98, 151, 254}, + {150, 126, 254}, + {193, 113, 220}, + {217, 117, 137}, + {214, 137, 45}, + {186, 166, 0}, + {140, 198, 0}, + {88, 224, 0}, + {44, 236, 0}, + {20, 232, 63}, + {23, 213, 155}, + {79, 79, 79}, + {0, 0, 0}, + {0, 0, 0}, + {207, 254, 188}, + {144, 231, 207}, + {163, 218, 224}, + {184, 207, 222}, + {201, 202, 201}, + {211, 204, 168}, + {210, 212, 130}, + {198, 224, 99}, + {180, 237, 81}, + {159, 247, 83}, + {141, 252, 104}, + {131, 251, 137}, + {132, 243, 175}, + {184, 184, 184}, + {0, 0, 0}, + {0, 0, 0}, + {83, 83, 55}, + {0, 23, 89}, + {0, 0, 121}, + {40, 0, 117}, + {73, 0, 79}, + {90, 0, 17}, + {88, 0, 0}, + {67, 10, 0}, + {32, 34, 0}, + {0, 53, 0}, + {0, 63, 0}, + {0, 60, 0}, + {0, 45, 30}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {147, 148, 110}, + {0, 69, 154}, + {40, 38, 196}, + {91, 12, 191}, + {134, 0, 141}, + {157, 4, 60}, + {155, 23, 0}, + {127, 52, 0}, + {81, 84, 0}, + {30, 109, 0}, + {0, 121, 0}, + {0, 117, 0}, + {0, 98, 78}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {221, 222, 173}, + {65, 142, 217}, + {112, 110, 254}, + {164, 84, 255}, + {208, 72, 204}, + {231, 76, 122}, + {229, 95, 29}, + {200, 125, 0}, + {154, 157, 0}, + {102, 182, 0}, + {58, 195, 0}, + {34, 191, 47}, + {37, 171, 140}, + {79, 79, 79}, + {0, 0, 0}, + {0, 0, 0}, + {221, 222, 173}, + {158, 189, 191}, + {177, 176, 208}, + {198, 166, 206}, + {216, 161, 185}, + {225, 163, 152}, + {224, 171, 114}, + {213, 183, 83}, + {194, 195, 66}, + {173, 206, 68}, + {155, 211, 88}, + {145, 209, 122}, + {146, 201, 159}, + {184, 184, 184}, + {0, 0, 0}, + {0, 0, 0}, + {87, 87, 133}, + {0, 26, 167}, + {5, 2, 198}, + {44, 0, 195}, + {77, 0, 157}, + {95, 0, 94}, + {93, 0, 25}, + {71, 14, 0}, + {36, 38, 0}, + {0, 57, 0}, + {0, 66, 0}, + {0, 63, 38}, + {0, 49, 108}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {153, 153, 216}, + {0, 74, 254}, + {46, 43, 254}, + {97, 17, 254}, + {140, 5, 247}, + {164, 9, 165}, + {161, 28, 74}, + {133, 57, 0}, + {87, 89, 0}, + {36, 114, 0}, + {0, 126, 10}, + {0, 122, 92}, + {0, 103, 183}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {229, 228, 254}, + {74, 148, 254}, + {120, 116, 254}, + {172, 91, 254}, + {216, 78, 254}, + {239, 82, 254}, + {237, 102, 166}, + {208, 131, 89}, + {162, 163, 46}, + {110, 189, 51}, + {66, 201, 102}, + {42, 197, 184}, + {45, 178, 254}, + {79, 79, 79}, + {0, 0, 0}, + {0, 0, 0}, + {229, 228, 254}, + {166, 196, 254}, + {185, 183, 254}, + {206, 172, 254}, + {224, 167, 254}, + {233, 169, 254}, + {232, 177, 252}, + {221, 189, 220}, + {202, 202, 203}, + {181, 212, 205}, + {163, 217, 226}, + {153, 216, 254}, + {154, 208, 254}, + {184, 184, 184}, + {0, 0, 0}, + {0, 0, 0}, + {90, 71, 97}, + {0, 11, 130}, + {8, 0, 162}, + {47, 0, 158}, + {80, 0, 120}, + {98, 0, 58}, + {96, 0, 0}, + {74, 0, 0}, + {39, 22, 0}, + {0, 42, 0}, + {0, 51, 0}, + {0, 48, 2}, + {0, 33, 72}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {158, 132, 166}, + {4, 53, 210}, + {50, 22, 252}, + {101, 0, 247}, + {144, 0, 197}, + {168, 0, 116}, + {165, 7, 25}, + {137, 36, 0}, + {91, 68, 0}, + {40, 93, 0}, + {0, 105, 0}, + {0, 101, 42}, + {0, 82, 134}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {234, 201, 246}, + {79, 121, 254}, + {125, 89, 254}, + {177, 63, 254}, + {221, 51, 254}, + {245, 55, 195}, + {242, 74, 102}, + {214, 104, 24}, + {167, 136, 0}, + {115, 161, 0}, + {71, 174, 37}, + {48, 170, 120}, + {50, 150, 213}, + {79, 79, 79}, + {0, 0, 0}, + {0, 0, 0}, + {234, 201, 246}, + {171, 168, 254}, + {190, 155, 254}, + {211, 145, 254}, + {229, 140, 254}, + {239, 142, 225}, + {237, 150, 187}, + {226, 162, 156}, + {207, 174, 139}, + {186, 185, 141}, + {168, 190, 161}, + {159, 188, 195}, + {160, 180, 232}, + {184, 184, 184}, + {0, 0, 0}, + {0, 0, 0}, + {66, 85, 88}, + {0, 25, 121}, + {0, 1, 153}, + {23, 0, 149}, + {56, 0, 111}, + {74, 0, 49}, + {72, 0, 0}, + {51, 12, 0}, + {16, 36, 0}, + {0, 55, 0}, + {0, 65, 0}, + {0, 62, 0}, + {0, 47, 63}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {125, 151, 154}, + {0, 72, 198}, + {17, 40, 240}, + {69, 15, 235}, + {112, 3, 185}, + {135, 7, 104}, + {132, 26, 12}, + {104, 55, 0}, + {59, 87, 0}, + {7, 112, 0}, + {0, 124, 0}, + {0, 120, 30}, + {0, 101, 121}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {192, 225, 230}, + {37, 145, 254}, + {83, 114, 254}, + {135, 88, 254}, + {179, 76, 254}, + {202, 80, 179}, + {200, 99, 86}, + {171, 129, 8}, + {125, 160, 0}, + {73, 186, 0}, + {29, 198, 21}, + {5, 194, 104}, + {8, 175, 197}, + {79, 79, 79}, + {0, 0, 0}, + {0, 0, 0}, + {192, 225, 230}, + {129, 193, 248}, + {148, 180, 254}, + {169, 170, 254}, + {187, 165, 242}, + {196, 166, 209}, + {195, 174, 171}, + {184, 186, 140}, + {165, 199, 123}, + {144, 209, 125}, + {126, 214, 145}, + {116, 213, 179}, + {118, 205, 216}, + {184, 184, 184}, + {0, 0, 0}, + {0, 0, 0}, + {69, 69, 69}, + {0, 16, 110}, + {0, 0, 142}, + {33, 0, 138}, + {66, 0, 100}, + {84, 0, 38}, + {82, 0, 0}, + {60, 3, 0}, + {25, 27, 0}, + {0, 46, 0}, + {0, 56, 0}, + {0, 53, 0}, + {0, 38, 51}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {134, 134, 134}, + {0, 64, 187}, + {35, 32, 228}, + {86, 7, 223}, + {129, 0, 174}, + {153, 0, 92}, + {150, 18, 1}, + {122, 47, 0}, + {76, 79, 0}, + {25, 104, 0}, + {0, 116, 0}, + {0, 112, 19}, + {0, 93, 110}, + {0, 0, 0}, + {0, 0, 0}, + {0, 0, 0}, + {207, 207, 207}, + {60, 136, 254}, + {107, 104, 254}, + {159, 79, 254}, + {203, 66, 248}, + {226, 70, 165}, + {224, 90, 72}, + {195, 119, 0}, + {149, 151, 0}, + {97, 177, 0}, + {53, 189, 8}, + {29, 185, 91}, + {32, 166, 183}, + {79, 79, 79}, + {0, 0, 0}, + {0, 0, 0}, + {207, 207, 207}, + {148, 178, 229}, + {166, 165, 246}, + {188, 155, 244}, + {205, 150, 224}, + {215, 152, 190}, + {214, 159, 152}, + {202, 171, 121}, + {183, 184, 104}, + {162, 195, 106}, + {145, 200, 126}, + {135, 198, 160}, + {136, 190, 197}, + {184, 184, 184}, + {0, 0, 0}, + {0, 0, 0}}; + +void Emu::SaveAudioBufferState() +{ + extra_fade_sound_in = fade_sound_in; + extra_fade_sound_out = fade_sound_out; + extra_sound_buf_changed_count = sound_buf_changed_count; + sound_buf->SaveAudioBufferState(); +} +void Emu::RestoreAudioBufferState() +{ + fade_sound_in = extra_fade_sound_in; + fade_sound_out = extra_fade_sound_out; + sound_buf_changed_count = extra_sound_buf_changed_count; + sound_buf->RestoreAudioBufferState(); +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/emu.hpp b/quicknes/source/quickerNES/core/emu.hpp new file mode 100644 index 00000000000..b8e164a263a --- /dev/null +++ b/quicknes/source/quickerNES/core/emu.hpp @@ -0,0 +1,322 @@ +#pragma once + +// NES video game console emulator with snapshot support + +// Emu 0.7.0 + +#include "apu/multiBuffer.hpp" +#include "cart.hpp" +#include "core.hpp" + +namespace quickerNES +{ + +class State; + +class Emu +{ + public: + Emu(); + virtual ~Emu(); + + // Basic setup + + // Load iNES file into emulator and clear recording + const char* load_ines(const uint8_t *buffer); + + // Set sample rate for sound generation + const char *set_sample_rate(long); + + // Size and depth of graphics buffer required for rendering. Note that this + // is larger than the actual image, with a temporary area around the edge + // that gets filled with junk. + static const uint16_t buffer_width = Ppu::buffer_width; + uint16_t buffer_height() const { return buffer_height_; } + static const uint8_t bits_per_pixel = 8; + + // Set graphics buffer to render pixels to. Pixels points to top-left pixel and + // row_bytes is the number of bytes to get to the next line (positive or negative). + void set_pixels(void *pixels, long row_bytes); + + // Size of image generated in graphics buffer + static const uint16_t image_width = 256; + static const uint16_t image_height = 240; + + const uint8_t *getHostPixels() const { return emu.ppu.host_pixels; } + + int get_joypad_read_count() const { return emu.joypad_read_count; } + void set_tracecb(void (*cb)(unsigned int *dest)) { emu.set_tracecb(cb); } + + // Save emulator state variants + void serializeState(jaffarCommon::serializer::Base &serializer) const { emu.serializeState(serializer); } + void deserializeState(jaffarCommon::deserializer::Base &deserializer) { emu.deserializeState(deserializer); } + void setNTABBlockSize(const size_t size) { emu.setNTABBlockSize(size); } + void enableStateBlock(const std::string &block) { emu.enableStateBlock(block); }; + void disableStateBlock(const std::string &block) { emu.disableStateBlock(block); }; + + void setControllerType(Core::controllerType_t type) { emu.setControllerType(type); } + + // Basic emulation + + // Emulate one video frame using joypad1 and joypad2 as input. Afterwards, image + // and sound are available for output using the accessors below. + virtual const char *emulate_frame(uint32_t joypad1, uint32_t joypad2, uint32_t arkanoid_latch, uint8_t arkanoid_fire); + + // Emulate one video frame using joypad1 and joypad2 as input, but skips drawing. + // Afterwards, audio is available for output using the accessors below. + virtual const char *emulate_skip_frame(uint32_t joypad1, uint32_t joypad2, uint32_t arkanoid_latch, uint8_t arkanoid_fire); + + // Maximum size of palette that can be generated + static const uint16_t max_palette_size = 256; + + // Result of current frame + struct frame_t + { + static const uint8_t left = 8; + + int burst_phase; // NTSC burst phase for frame (0, 1, or 2) + + int sample_count; // number of samples (always a multiple of chan_count) + int chan_count; // 1: mono, 2: stereo + + int top; // top-left position of image in graphics buffer + unsigned char *pixels; // pointer to top-left pixel of image + long pitch; // number of bytes to get to next row of image + + int palette_begin; // first host palette entry, as set by set_palette_range() + int palette_size; // number of entries used for current frame + short palette[max_palette_size]; // [palette_begin to palette_begin+palette_size-1] + }; + frame_t const &frame() const { return *frame_; } + + // Read samples for the current frame. Returns number of samples read into buffer. + // Currently all samples must be read in one call. + virtual long read_samples(short *out, long max_samples); + + // Additional features + + // Use already-loaded cartridge. Retains pointer, so it must be kept around until + // closed. A cartridge can be shared among multiple emulators. After opening, + // cartridge's CHR data shouldn't be modified since a copy is cached internally. + const char *set_cart(Cart const *new_cart); + + // Pointer to current cartridge, or NULL if none is loaded + Cart const *cart() const { return emu.cart; } + + // Emulate powering NES off and then back on. If full_reset is false, emulates + // pressing the reset button only, which doesn't affect memory, otherwise + // emulates powering system off then on. + virtual void reset(bool full_reset = true, bool erase_battery_ram = false); + + // Number of undefined CPU instructions encountered. Cleared after reset() and + // load_state(). A non-zero value indicates that cartridge is probably + // incompatible. + unsigned long error_count() const { return emu.error_count; } + + // Sound + + // Set sample rate and use a custom sound buffer instead of the default + // mono buffer, i.e. Buffer, Effects_Buffer, etc.. + const char *set_sample_rate(long rate, Multi_Buffer *); + + // Adjust effective frame rate by changing how many samples are generated each frame. + // Allows fine tuning of frame rate to improve synchronization. + void set_frame_rate(double rate); + + // Number of sound channels for current cartridge + int channel_count() const { return channel_count_; } + + // Frequency equalizer parameters + struct equalizer_t + { + double treble; // 5.0 = extra-crisp, -200.0 = muffled + long bass; // 0 = deep, 20000 = tinny + }; + + // Current frequency equalization + equalizer_t const &equalizer() const { return equalizer_; } + + // Change frequency equalization + void set_equalizer(equalizer_t const &); + + // Equalizer presets + static equalizer_t const nes_eq; // NES + static equalizer_t const famicom_eq; // Famicom + static equalizer_t const tv_eq; // TV speaker + static equalizer_t const flat_eq; // Flat EQ + static equalizer_t const crisp_eq; // Crisp EQ (Treble boost) + static equalizer_t const tinny_eq; // Tinny EQ (Like a handheld speaker) + + // File save/load + + // True if current cartridge claims it uses battery-backed memory + bool has_battery_ram() const { return cart()->has_battery_ram(); } + + // Graphics + + // Number of frames generated per second + enum + { + frame_rate = 60 + }; + + // Size of fixed NES color table (including the 8 color emphasis modes) + enum + { + color_table_size = 8 * 64 + }; + + // NES color lookup table based on standard NTSC TV decoder. Use nes_ntsc.h to + // generate a palette with custom parameters. + struct rgb_t + { + unsigned char red, green, blue; + }; + static rgb_t const nes_colors[color_table_size]; + + // Hide/show/enhance sprites. Sprite mode does not affect emulation accuracy. + enum sprite_mode_t + { + sprites_hidden = 0, + sprites_visible = 8, // limit of 8 sprites per scanline as on NES (default) + sprites_enhanced = 64 // unlimited sprites per scanline (no flickering) + }; + void set_sprite_mode(sprite_mode_t n) { emu.ppu.sprite_limit = n; } + + // Set range of host palette entries to use in graphics buffer; default uses + // all of them. Begin will be rounded up to next multiple of palette_alignment. + // Use frame().palette_begin to find the adjusted beginning entry used. + enum + { + palette_alignment = 64 + }; + void set_palette_range(int begin, int end = 256); + + // Access to emulated memory, for viewer/cheater/debugger + + // CHR + uint8_t *chr_mem() const; + long chr_size() const; + void write_chr(void const *, long count, long offset); + + // Nametable + uint8_t *nametable_mem() const { return emu.ppu.impl->nt_ram; } + long nametable_size() const { return 0x1000; } + + // Built-in 2K memory + enum + { + low_mem_size = 0x800 + }; + + uint8_t *get_low_mem() const { return (uint8_t *)emu.low_mem; } + size_t get_low_mem_size() const { return low_mem_size; } + + // Optional 8K memory + enum + { + high_mem_size = 0x2000 + }; + uint8_t *high_mem() const { return emu.impl->sram; } + size_t get_high_mem_size() const { return high_mem_size; } + + // Sprite memory + uint8_t *spr_mem() const { return emu.ppu.getSpriteRAM(); } + uint16_t spr_mem_size() const { return emu.ppu.getSpriteRAMSize(); } + + // End of public interface + public: + const char *set_sample_rate(long rate, class Buffer *); + const char *set_sample_rate(long rate, class Nes_Effects_Buffer *); + void irq_changed() { emu.irq_changed(); } + + // Palette memory + uint8_t *pal_mem() const { return emu.ppu.getPaletteRAM(); } + uint16_t pal_mem_size() const { return emu.ppu.getPaletteRAMSize(); } + + uint8_t peek_prg(nes_addr_t addr) const { return *emu.get_code(addr); } + void poke_prg(nes_addr_t addr, uint8_t value) { *emu.get_code(addr) = value; } + uint8_t peek_ppu(int addr) { return emu.ppu.peekaddr(addr); } + + uint8_t get_ppu2000() const { return emu.ppu.w2000; } + + void get_regs(unsigned int *dest) const + { + dest[0] = emu.r.a; + dest[1] = emu.r.x; + dest[2] = emu.r.y; + dest[3] = emu.r.sp; + dest[4] = emu.r.pc; + dest[5] = emu.r.status; + } + + private: + frame_t *frame_; + int buffer_height_; + bool fade_sound_in; + bool fade_sound_out; + virtual const char *init_(); + + virtual void loading_state(State const &) {} + long timestamp() const { return 0; } + void set_timestamp(long t) {} + + private: + // noncopyable + Emu(const Emu &); + Emu &operator=(const Emu &); + + // sound + Multi_Buffer *default_sound_buf; + Multi_Buffer *sound_buf; + unsigned sound_buf_changed_count; + Silent_Buffer silent_buffer; + equalizer_t equalizer_; + int channel_count_; + bool sound_enabled; + void enable_sound(bool); + void clear_sound_buf(); + void fade_samples(blip_sample_t *, int size, int step); + + void *pixels_base_ptr; + char *host_pixels; + int host_palette_size; + frame_t single_frame; + Cart private_cart; + Core emu; // large; keep at end + + bool init_called; + const char *auto_init(); + + bool extra_fade_sound_in; + bool extra_fade_sound_out; + unsigned extra_sound_buf_changed_count; + + public: + void SaveAudioBufferState(); + void RestoreAudioBufferState(); + + inline void *get_pixels_base_ptr() + { + return pixels_base_ptr; + } +}; + +inline void Emu::set_pixels(void *p, long n) +{ + pixels_base_ptr = p; + host_pixels = (char *)p + n; + emu.ppu.host_row_bytes = n; +} + +inline uint8_t *Emu::chr_mem() const +{ + return cart()->chr_size() ? (uint8_t *)cart()->chr() : emu.ppu.impl->chr_ram; +} + +inline long Emu::chr_size() const +{ + return cart()->chr_size() ? cart()->chr_size() : emu.ppu.chr_addr_size; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper.cpp b/quicknes/source/quickerNES/core/mappers/mapper.cpp new file mode 100644 index 00000000000..7becb10b3f7 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper.cpp @@ -0,0 +1,294 @@ + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" +#include "../core.hpp" +#include + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +/* + New mapping distribution by Sergio Martin (eien86) + https://github.com/SergioMartin86/jaffarPlus +*/ +#include "mapper000.hpp" +#include "mapper001.hpp" +#include "mapper002.hpp" +#include "mapper003.hpp" +#include "mapper004.hpp" +#include "mapper005.hpp" +#include "mapper007.hpp" +#include "mapper009.hpp" +#include "mapper010.hpp" +#include "mapper011.hpp" +#include "mapper015.hpp" +#include "mapper019.hpp" +#include "mapper021.hpp" +#include "mapper022.hpp" +#include "mapper023.hpp" +#include "mapper024.hpp" +#include "mapper025.hpp" +#include "mapper026.hpp" +#include "mapper030.hpp" +#include "mapper032.hpp" +#include "mapper033.hpp" +#include "mapper034.hpp" +#include "mapper060.hpp" +#include "mapper066.hpp" +#include "mapper069.hpp" +#include "mapper070.hpp" +#include "mapper071.hpp" +#include "mapper073.hpp" +#include "mapper075.hpp" +#include "mapper078.hpp" +#include "mapper079.hpp" +#include "mapper085.hpp" +#include "mapper086.hpp" +#include "mapper087.hpp" +#include "mapper088.hpp" +#include "mapper089.hpp" +#include "mapper093.hpp" +#include "mapper094.hpp" +#include "mapper097.hpp" +#include "mapper113.hpp" +#include "mapper140.hpp" +#include "mapper152.hpp" +#include "mapper154.hpp" +#include "mapper156.hpp" +#include "mapper180.hpp" +#include "mapper184.hpp" +#include "mapper190.hpp" +#include "mapper193.hpp" +#include "mapper206.hpp" +#include "mapper207.hpp" +#include "mapper232.hpp" +#include "mapper240.hpp" +#include "mapper241.hpp" +#include "mapper244.hpp" +#include "mapper246.hpp" + +namespace quickerNES +{ + +Mapper::Mapper() +{ + emu_ = NULL; + static char c; + state = &c; // TODO: state must not be null? + state_size = 0; +} + +Mapper::~Mapper() +{ +} + +// Sets mirroring, maps first 8K CHR in, first and last 16K of PRG, +// intercepts writes to upper half of memory, and clears registered state. +void Mapper::default_reset_state() +{ + int mirroring = cart_->mirroring(); + if (mirroring & 8) + mirror_full(); + else if (mirroring & 1) + mirror_vert(); + else + mirror_horiz(); + + set_chr_bank(0, bank_8k, 0); + + set_prg_bank(0x8000, bank_16k, 0); + set_prg_bank(0xC000, bank_16k, last_bank); + + intercept_writes(0x8000, 0x8000); + + memset(state, 0, state_size); +} + +void Mapper::reset() +{ + default_reset_state(); + reset_state(); + apply_mapping(); +} + +void mapper_state_t::write(const void *p, unsigned long s) +{ + size = s; + memcpy(data, p, s); +} + +int mapper_state_t::read(void *p, unsigned long s) const +{ + if ((long)s > size) + s = size; + memcpy(p, data, s); + return s; +} + +void Mapper::save_state(mapper_state_t &out) +{ + out.write(state, state_size); +} + +void Mapper::load_state(mapper_state_t const &in) +{ + default_reset_state(); + read_state(in); + apply_mapping(); +} + +void Mapper::read_state(mapper_state_t const &in) +{ + memset(state, 0, state_size); + in.read(state, state_size); + apply_mapping(); +} + +// Timing + +void Mapper::irq_changed() { emu_->irq_changed(); } + +nes_time_t Mapper::next_irq(nes_time_t) { return no_irq; } + +void Mapper::a12_clocked() {} + +void Mapper::run_until(nes_time_t) {} + +void Mapper::end_frame(nes_time_t) {} + +bool Mapper::ppu_enabled() const { return emu().ppu.w2001 & 0x08; } + +// Sound + +int Mapper::channel_count() const { return 0; } + +void Mapper::set_channel_buf(int, Blip_Buffer *) {} + +void Mapper::set_treble(blip_eq_t const &) {} + +// Memory mapping + +void Mapper::set_prg_bank(nes_addr_t addr, bank_size_t bs, int bank) +{ + int bank_size = 1 << bs; + + int bank_count = cart_->prg_size() >> bs; + if (bank < 0) + bank += bank_count; + + if (bank >= bank_count) + bank %= bank_count; + + emu().map_code(addr, bank_size, cart_->prg() + (bank << bs)); + + if (unsigned(addr - 0x6000) < 0x2000) + emu().enable_prg_6000(); +} + +void Mapper::set_chr_bank(nes_addr_t addr, bank_size_t bs, int bank) +{ + emu().ppu.render_until(emu().clock()); + emu().ppu.set_chr_bank(addr, 1 << bs, bank << bs); +} + +void Mapper::set_chr_bank_ex(nes_addr_t addr, bank_size_t bs, int bank) +{ + emu().ppu.render_until(emu().clock()); + emu().ppu.set_chr_bank_ex(addr, 1 << bs, bank << bs); +} + +void Mapper::mirror_manual(int page0, int page1, int page2, int page3) +{ + emu().ppu.render_bg_until(emu().clock()); + emu().ppu.set_nt_banks(page0, page1, page2, page3); +} + +void Mapper::intercept_reads(nes_addr_t addr, unsigned size) +{ + emu().add_mapper_intercept(addr, size, true, false); +} + +void Mapper::intercept_writes(nes_addr_t addr, unsigned size) +{ + emu().add_mapper_intercept(addr, size, false, true); +} + +void Mapper::enable_sram(bool enabled, bool read_only) +{ + emu_->enable_sram(enabled, read_only); +} + +Mapper *Mapper::getMapperFromCode(const int mapperCode) +{ + Mapper *mapper = nullptr; + + // Now checking if the detected mapper code is supported + if (mapperCode == 0) mapper = new Mapper000(); + if (mapperCode == 1) mapper = new Mapper001(); + if (mapperCode == 2) mapper = new Mapper002(); + if (mapperCode == 3) mapper = new Mapper003(); + if (mapperCode == 4) mapper = new Mapper004(); + if (mapperCode == 5) mapper = new Mapper005(); + if (mapperCode == 7) mapper = new Mapper007(); + if (mapperCode == 9) mapper = new Mapper009(); + if (mapperCode == 10) mapper = new Mapper010(); + if (mapperCode == 11) mapper = new Mapper011(); + if (mapperCode == 15) mapper = new Mapper015(); + if (mapperCode == 19) mapper = new Mapper019(); + if (mapperCode == 21) mapper = new Mapper021(); + if (mapperCode == 22) mapper = new Mapper022(); + if (mapperCode == 23) mapper = new Mapper023(); + if (mapperCode == 24) mapper = new Mapper024(); + if (mapperCode == 25) mapper = new Mapper025(); + if (mapperCode == 26) mapper = new Mapper026(); + if (mapperCode == 30) mapper = new Mapper030(); + if (mapperCode == 32) mapper = new Mapper032(); + if (mapperCode == 33) mapper = new Mapper033(); + if (mapperCode == 34) mapper = new Mapper034(); + if (mapperCode == 60) mapper = new Mapper060(); + if (mapperCode == 66) mapper = new Mapper066(); + if (mapperCode == 69) mapper = new Mapper069(); + if (mapperCode == 70) mapper = new Mapper070(); + if (mapperCode == 71) mapper = new Mapper071(); + if (mapperCode == 73) mapper = new Mapper073(); + if (mapperCode == 75) mapper = new Mapper075(); + if (mapperCode == 78) mapper = new Mapper078(); + if (mapperCode == 79) mapper = new Mapper079(); + if (mapperCode == 85) mapper = new Mapper085(); + if (mapperCode == 86) mapper = new Mapper086(); + if (mapperCode == 87) mapper = new Mapper087(); + if (mapperCode == 88) mapper = new Mapper088(); + if (mapperCode == 89) mapper = new Mapper089(); + if (mapperCode == 93) mapper = new Mapper093(); + if (mapperCode == 94) mapper = new Mapper094(); + if (mapperCode == 97) mapper = new Mapper097(); + if (mapperCode == 113) mapper = new Mapper113(); + if (mapperCode == 140) mapper = new Mapper140(); + if (mapperCode == 152) mapper = new Mapper152(); + if (mapperCode == 154) mapper = new Mapper154(); + if (mapperCode == 156) mapper = new Mapper156(); + if (mapperCode == 180) mapper = new Mapper180(); + if (mapperCode == 184) mapper = new Mapper184(); + if (mapperCode == 190) mapper = new Mapper190(); + if (mapperCode == 193) mapper = new Mapper193(); + if (mapperCode == 206) mapper = new Mapper206(); + if (mapperCode == 207) mapper = new Mapper207(); + if (mapperCode == 232) mapper = new Mapper232(); + if (mapperCode == 240) mapper = new Mapper240(); + if (mapperCode == 241) mapper = new Mapper241(); + if (mapperCode == 244) mapper = new Mapper244(); + if (mapperCode == 246) mapper = new Mapper246(); + + return mapper; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper.hpp b/quicknes/source/quickerNES/core/mappers/mapper.hpp new file mode 100644 index 00000000000..d7b083f6ab3 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper.hpp @@ -0,0 +1,212 @@ +#pragma once + +// NES mapper interface +// Emu 0.7.0 + +#include "../cart.hpp" +#include "../cpu.hpp" +#include + +namespace quickerNES +{ + +class Blip_Buffer; +class blip_eq_t; +class Core; + +// Increase this (and let me know) if your mapper requires more state. This only +// sets the size of the in-memory buffer; it doesn't affect the file format at all. +static unsigned const max_mapper_state_size = 512; // was 256, needed more for VRC7 audio state +struct mapper_state_t +{ + int size; + union + { + double align; + uint8_t data[max_mapper_state_size]; + }; + + void write(const void *p, unsigned long s); + int read(void *p, unsigned long s) const; +}; + +class Mapper +{ + public: + virtual ~Mapper(); + + // Reset mapper to power-up state. + virtual void reset(); + + // Save snapshot of mapper state. Default saves registered state. + virtual void save_state(mapper_state_t &); + + // Resets mapper, loads state, then applies it + virtual void load_state(mapper_state_t const &); + + // I/O + + // Read from memory + virtual int read(nes_time_t, nes_addr_t); + + // Write to memory + virtual void write(nes_time_t, nes_addr_t, int data) = 0; + + // Write to memory below 0x8000 (returns false if mapper didn't handle write) + virtual bool write_intercepted(nes_time_t, nes_addr_t, int data); + + // Timing + + // Time returned when current mapper state won't ever cause an IRQ + enum + { + no_irq = LONG_MAX / 2 + }; + + // Time next IRQ will occur at + virtual nes_time_t next_irq(nes_time_t present); + + // Run mapper until given time + virtual void run_until(nes_time_t); + + // End video frame of given length + virtual void end_frame(nes_time_t length); + + // Sound + + // Number of sound channels + virtual int channel_count() const; + + // Set sound buffer for channel to output to, or NULL to silence channel. + virtual void set_channel_buf(int index, Blip_Buffer *); + + // Set treble equalization + virtual void set_treble(blip_eq_t const &); + + // Misc + + // Called when bit 12 of PPU's VRAM address changes from 0 to 1 due to + // $2006 and $2007 accesses (but not due to PPU scanline rendering). + virtual void a12_clocked(); + + void *state; + unsigned state_size; + + protected: + // Services provided for derived mapper classes + Mapper(); + + // Register state data to automatically save and load. Be sure the binary + // layout is suitable for use in a file, including any byte-order issues. + // Automatically cleared to zero by default reset(). + void register_state(void *, unsigned); + + // Enable 8K of RAM at 0x6000-0x7FFF, optionally read-only. + void enable_sram(bool enabled = true, bool read_only = false); + + // Cause CPU writes within given address range to call mapper's write() function. + // Might map a larger address range, which the mapper can ignore and pass to + // Mapper::write(). The range 0x8000-0xffff is always intercepted by the mapper. + void intercept_writes(nes_addr_t addr, unsigned size); + + // Cause CPU reads within given address range to call mapper's read() function. + // Might map a larger address range, which the mapper can ignore and pass to + // Mapper::read(). CPU opcode/operand reads and low-memory reads always + // go directly to memory and cannot be intercepted. + void intercept_reads(nes_addr_t addr, unsigned size); + + // Bank sizes for mapping + enum bank_size_t + { // 1 << bank_Xk = X * 1024 + bank_1k = 10, + bank_2k = 11, + bank_4k = 12, + bank_8k = 13, + bank_16k = 14, + bank_32k = 15 + }; + + // Index of last PRG/CHR bank. Last_bank selects last bank, last_bank - 1 + // selects next-to-last bank, etc. + enum + { + last_bank = -1 + }; + + // Map 'size' bytes from 'PRG + bank * size' to CPU address space starting at 'addr' + void set_prg_bank(nes_addr_t addr, bank_size_t size, int bank); + + // Map 'size' bytes from 'CHR + bank * size' to PPU address space starting at 'addr' + void set_chr_bank(nes_addr_t addr, bank_size_t size, int bank); + void set_chr_bank_ex(nes_addr_t addr, bank_size_t size, int bank); + + // Set PPU mirroring. All mappings implemented using mirror_manual(). + void mirror_manual(int page0, int page1, int page2, int page3); + void mirror_single(int page); + void mirror_horiz(int page = 0); + void mirror_vert(int page = 0); + void mirror_full(); + + // True if PPU rendering is enabled. Some mappers watch PPU memory accesses to determine + // when scanlines occur, and can only do this when rendering is enabled. + bool ppu_enabled() const; + + // Cartridge being emulated + Cart const &cart() const { return *cart_; } + + // Must be called when next_irq()'s return value is earlier than previous, + // current CPU run can be stopped earlier. Best to call whenever time may + // have changed (no performance impact if called even when time didn't change). + void irq_changed(); + + // Handle data written to mapper that doesn't handle bus conflict arising due to + // PRG also reading data. Returns data that mapper should act as if were + // written. Currently always returns 'data' and just checks that data written is + // the same as byte in PRG at same address and writes debug message if it doesn't. + int handle_bus_conflict(nes_addr_t addr, int data); + + // Reference to emulator that uses this mapper. + Core &emu() const { return *emu_; } + + protected: + // Services derived classes provide + + // Read state from snapshot. Default reads data into registered state, then calls + // apply_mapping(). + virtual void read_state(mapper_state_t const &); + + // Called by default reset() before apply_mapping() is called. + virtual void reset_state() {} + + // End of general interface + + public: + Cart const *cart_; + Core *emu_; + + // Apply current mapping state to hardware. Called after reading mapper state + // from a snapshot. + virtual void apply_mapping() = 0; + + void default_reset_state(); + + static Mapper *getMapperFromCode(const int mapperCode); +}; + +inline int Mapper::handle_bus_conflict(nes_addr_t addr, int data) { return data; } +inline void Mapper::mirror_horiz(int p) { mirror_manual(p, p, p ^ 1, p ^ 1); } +inline void Mapper::mirror_vert(int p) { mirror_manual(p, p ^ 1, p, p ^ 1); } +inline void Mapper::mirror_single(int p) { mirror_manual(p, p, p, p); } +inline void Mapper::mirror_full() { mirror_manual(0, 1, 2, 3); } + +inline void Mapper::register_state(void *p, unsigned s) +{ + state = p; + state_size = s; +} + +inline bool Mapper::write_intercepted(nes_time_t, nes_addr_t, int) { return false; } + +inline int Mapper::read(nes_time_t, nes_addr_t) { return -1; } // signal to caller + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper000.hpp b/quicknes/source/quickerNES/core/mappers/mapper000.hpp new file mode 100644 index 00000000000..f62480983c0 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper000.hpp @@ -0,0 +1,38 @@ +#pragma once + +// Common simple mappers + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +// NROM + +namespace quickerNES +{ + +class Mapper000 : public Mapper +{ + public: + Mapper000() {} + + virtual void apply_mapping() {} + + virtual void write(nes_time_t, nes_addr_t, int) + { + // empty + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper001.hpp b/quicknes/source/quickerNES/core/mappers/mapper001.hpp new file mode 100644 index 00000000000..0e609ee8e03 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper001.hpp @@ -0,0 +1,129 @@ +#pragma once + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" +#include + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +// MMC1 + +struct mmc1_state_t +{ + uint8_t regs[4]; // current registers (5 bits each) + uint8_t bit; // number of bits in buffer (0 to 4) + uint8_t buf; // currently buffered bits (new bits added to bottom) +}; +static_assert(sizeof(mmc1_state_t) == 6); + +class Mapper001 : public Mapper, mmc1_state_t +{ + public: + Mapper001() + { + mmc1_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual void reset_state() + { + regs[0] = 0x0f; + regs[1] = 0x00; + regs[2] = 0x01; + regs[3] = 0x00; + } + + virtual void apply_mapping() + { + enable_sram(); // early MMC1 always had SRAM enabled + register_changed(0); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + if (!(data & 0x80)) + { + buf |= (data & 1) << bit; + bit++; + + if (bit >= 5) + { + int reg = addr >> 13 & 3; + regs[reg] = buf & 0x1f; + + bit = 0; + buf = 0; + + register_changed(reg); + } + } + else + { + bit = 0; + buf = 0; + regs[0] |= 0x0c; + register_changed(0); + } + } + + void register_changed(int reg) + { + // Mirroring + if (reg == 0) + { + int mode = regs[0] & 3; + if (mode < 2) + mirror_single(mode & 1); + else if (mode == 2) + mirror_vert(); + else + mirror_horiz(); + } + + // CHR + if (reg < 3 && cart().chr_size() > 0) + { + if (regs[0] & 0x10) + { + set_chr_bank(0x0000, bank_4k, regs[1]); + set_chr_bank(0x1000, bank_4k, regs[2]); + } + else + { + set_chr_bank(0, bank_8k, regs[1] >> 1); + } + } + + // PRG + int bank = (regs[1] & 0x10) | (regs[3] & 0x0f); + if (!(regs[0] & 0x08)) + { + set_prg_bank(0x8000, bank_32k, bank >> 1); + } + else if (regs[0] & 0x04) + { + set_prg_bank(0x8000, bank_16k, bank); + set_prg_bank(0xC000, bank_16k, bank | 0x0f); + } + else + { + set_prg_bank(0x8000, bank_16k, bank & ~0x0f); + set_prg_bank(0xC000, bank_16k, bank); + } + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper002.hpp b/quicknes/source/quickerNES/core/mappers/mapper002.hpp new file mode 100644 index 00000000000..5d2b5523db8 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper002.hpp @@ -0,0 +1,48 @@ +#pragma once + +// Common simple mappers + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +// UNROM + +class Mapper002 : public Mapper +{ + uint8_t bank; + + public: + Mapper002() + { + register_state(&bank, 1); + } + + virtual void apply_mapping() + { + enable_sram(); // at least one UNROM game needs sram (Bomberman 2) + set_prg_bank(0x8000, bank_16k, bank); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + bank = handle_bus_conflict(addr, data); + set_prg_bank(0x8000, bank_16k, data); + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper003.hpp b/quicknes/source/quickerNES/core/mappers/mapper003.hpp new file mode 100644 index 00000000000..d4bc5f33f0f --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper003.hpp @@ -0,0 +1,47 @@ +#pragma once + +// Common simple mappers + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +// CNROM + +class Mapper003 : public Mapper +{ + uint8_t bank; + + public: + Mapper003() + { + register_state(&bank, 1); + } + + virtual void apply_mapping() + { + set_chr_bank(0, bank_8k, bank & 7); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + bank = handle_bus_conflict(addr, data); + set_chr_bank(0, bank_8k, bank & 7); + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper004.hpp b/quicknes/source/quickerNES/core/mappers/mapper004.hpp new file mode 100644 index 00000000000..ad751dc20a5 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper004.hpp @@ -0,0 +1,258 @@ +#pragma once + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" + +#include "../core.hpp" +#include + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +// 264 or less breaks Gargoyle's Quest II +// 267 or less breaks Magician +int const irq_fine_tune = 268; +nes_time_t const first_scanline = 20 * Ppu::scanline_len + irq_fine_tune; +nes_time_t const last_scanline = first_scanline + 240 * Ppu::scanline_len; + +// MMC3 + +struct mmc3_state_t +{ + uint8_t banks[8]; // last writes to $8001 indexed by (mode & 7) + uint8_t mode; // $8000 + uint8_t mirror; // $a000 + uint8_t sram_mode; // $a001 + uint8_t irq_ctr; // internal counter + uint8_t irq_latch; // $c000 + uint8_t irq_enabled; // last write was to 0) $e000, 1) $e001 + uint8_t irq_flag; +}; +static_assert(sizeof(mmc3_state_t) == 15); + +class Mapper004 : public Mapper, mmc3_state_t +{ + public: + Mapper004() + { + mmc3_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual void reset_state() + { + memcpy(banks, "\0\2\4\5\6\7\0\1", sizeof banks); + + counter_just_clocked = 0; + next_time = 0; + mirror = 1; + + /* Cart specified vertical mirroring */ + if (cart().mirroring() & 1) + mirror = 0; + } + + void start_frame() { next_time = first_scanline; } + + virtual void apply_mapping() + { + write(0, 0xA000, mirror); + write(0, 0xA001, sram_mode); + update_chr_banks(); + update_prg_banks(); + start_frame(); + } + + void clock_counter() + { + if (counter_just_clocked) + counter_just_clocked--; + + if (!irq_ctr--) + { + irq_ctr = irq_latch; + // if ( !irq_latch ) + // dprintf( "MMC3 IRQ counter reloaded with 0\n" ); + } + + // dprintf( "%6d MMC3 IRQ clocked\n", time / ppu_overclock ); + if (irq_ctr == 0) + { + // if ( irq_enabled && !irq_flag ) + // dprintf( "%6d MMC3 IRQ triggered: %f\n", time / ppu_overclock, time / scanline_len.0 - 20 ); + irq_flag = irq_enabled; + } + } + + virtual void a12_clocked() + { + clock_counter(); + if (irq_enabled) + irq_changed(); + } + + virtual void end_frame(nes_time_t end_time) + { + run_until(end_time); + start_frame(); + } + + virtual nes_time_t next_irq(nes_time_t present) + { + run_until(present); + + if (!irq_enabled) + return no_irq; + + if (irq_flag) + return 0; + + if (!ppu_enabled()) + return no_irq; + + int remain = irq_ctr - 1; + if (remain < 0) + remain = irq_latch; + + long time = remain * 341L + next_time; + if (time > last_scanline) + return no_irq; + + return time / ppu_overclock + 1; + } + + void run_until(nes_time_t end_time) + { + bool bg_enabled = ppu_enabled(); + + if (next_time < 0) next_time = 0; + + end_time *= ppu_overclock; + while (next_time < end_time && next_time <= last_scanline) + { + if (bg_enabled) + clock_counter(); + next_time += Ppu::scanline_len; + } + } + + void update_chr_banks() + { + int chr_xor = (mode >> 7 & 1) * 0x1000; + set_chr_bank(0x0000 ^ chr_xor, bank_2k, banks[0] >> 1); + set_chr_bank(0x0800 ^ chr_xor, bank_2k, banks[1] >> 1); + set_chr_bank(0x1000 ^ chr_xor, bank_1k, banks[2]); + set_chr_bank(0x1400 ^ chr_xor, bank_1k, banks[3]); + set_chr_bank(0x1800 ^ chr_xor, bank_1k, banks[4]); + set_chr_bank(0x1c00 ^ chr_xor, bank_1k, banks[5]); + } + + void update_prg_banks() + { + set_prg_bank(0xA000, bank_8k, banks[7]); + nes_addr_t addr = 0x8000 + 0x4000 * (mode >> 6 & 1); + set_prg_bank(addr, bank_8k, banks[6]); + set_prg_bank(addr ^ 0x4000, bank_8k, last_bank - 1); + } + + void write_irq(nes_addr_t addr, int data) + { + switch (addr & 0xE001) + { + case 0xC000: + irq_latch = data; + break; + + case 0xC001: + /* MMC3 IRQ counter pathological behavior triggered if + * counter_just_clocked is 1 */ + counter_just_clocked = 2; + irq_ctr = 0; + break; + + case 0xE000: + irq_flag = false; + irq_enabled = false; + break; + + case 0xE001: + irq_enabled = true; + break; + } + if (irq_enabled) + irq_changed(); + } + + void write(nes_time_t time, nes_addr_t addr, int data) + { + switch (addr & 0xE001) + { + case 0x8000: + { + int changed = mode ^ data; + mode = data; + // avoid unnecessary bank updates + if (changed & 0x80) + update_chr_banks(); + if (changed & 0x40) + update_prg_banks(); + break; + } + + case 0x8001: + { + int bank = mode & 7; + banks[bank] = data; + if (bank < 6) + update_chr_banks(); + else + update_prg_banks(); + break; + } + + case 0xA000: + mirror = data; + if (!(cart().mirroring() & 0x08)) + { + if (mirror & 1) + mirror_horiz(); + else + mirror_vert(); + } + break; + + case 0xA001: + sram_mode = data; + // dprintf( "%02X->%04X\n", data, addr ); + + // Startropics 1 & 2 use MMC6 and always enable low 512 bytes of SRAM + if ((data & 0x3F) == 0x30) + enable_sram(true); + else + enable_sram(data & 0x80, data & 0x40); + break; + + default: + run_until(time); + write_irq(addr, data); + break; + } + } + + nes_time_t next_time; + int counter_just_clocked; // used only for debugging +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper005.hpp b/quicknes/source/quickerNES/core/mappers/mapper005.hpp new file mode 100644 index 00000000000..b1806d592a6 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper005.hpp @@ -0,0 +1,152 @@ +#pragma once + +// NES MMC5 mapper, currently only tailored for Castlevania 3 (U) + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "../core.hpp" +#include "mapper.hpp" +#include + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +struct mmc5_state_t +{ + enum + { + reg_count = 0x30 + }; + uint8_t regs[0x30]; + uint8_t irq_enabled; +}; +static_assert(sizeof(mmc5_state_t) == 0x31); + +// MMC5 + +class Mapper005 : public Mapper, mmc5_state_t +{ + public: + Mapper005() + { + mmc5_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual void reset_state() + { + irq_time = no_irq; + regs[0x00] = 2; + regs[0x01] = 3; + regs[0x14] = 0x7f; + regs[0x15] = 0x7f; + regs[0x16] = 0x7f; + regs[0x17] = 0x7f; + } + + virtual void read_state(mapper_state_t const &in) + { + Mapper::read_state(in); + irq_time = no_irq; + } + + enum + { + regs_addr = 0x5100 + }; + + virtual nes_time_t next_irq(nes_time_t) + { + if (irq_enabled & 0x80) + return irq_time; + + return no_irq; + } + + virtual bool write_intercepted(nes_time_t time, nes_addr_t addr, int data) + { + int reg = addr - regs_addr; + if ((unsigned)reg < reg_count) + { + regs[reg] = data; + switch (reg) + { + case 0x05: + mirror_manual(data & 3, data >> 2 & 3, data >> 4 & 3, data >> 6 & 3); + break; + + case 0x15: + set_prg_bank(0x8000, bank_16k, data >> 1 & 0x3f); + break; + + case 0x16: + set_prg_bank(0xC000, bank_8k, data & 0x7f); + break; + + case 0x17: + set_prg_bank(0xE000, bank_8k, data & 0x7f); + break; + + case 0x20: + case 0x21: + case 0x22: + case 0x23: + case 0x28: + case 0x29: + case 0x2a: + case 0x2b: + set_chr_bank(((reg >> 1 & 4) + (reg & 3)) * 0x400, bank_1k, data); + break; + } + } + else if (addr == 0x5203) + { + irq_time = no_irq; + if (data && data < 240) + { + irq_time = (341 * 21 + 128 + (data * 341)) / 3; + if (irq_time < time) + irq_time = no_irq; + } + irq_changed(); + } + else if (addr == 0x5204) + { + irq_enabled = data; + irq_changed(); + } + else + { + return false; + } + + return true; + } + + void apply_mapping() + { + static unsigned char list[] = { + 0x05, 0x15, 0x16, 0x17, 0x20, 0x21, 0x22, 0x23, 0x28, 0x29, 0x2a, 0x2b}; + + for (int i = 0; i < (int)sizeof list; i++) + write_intercepted(0, regs_addr + list[i], regs[list[i]]); + intercept_writes(0x5100, 0x200); + } + + virtual void write(nes_time_t, nes_addr_t, int) {} + + nes_time_t irq_time; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper007.hpp b/quicknes/source/quickerNES/core/mappers/mapper007.hpp new file mode 100644 index 00000000000..d557782aff8 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper007.hpp @@ -0,0 +1,55 @@ +#pragma once + +// Common simple mappers + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +// AOROM + +class Mapper007 : public Mapper +{ + uint8_t bank; + + public: + Mapper007() + { + register_state(&bank, 1); + } + + virtual void apply_mapping() + { + int b = bank; + bank = ~b; // force update + write(0, 0, b); + } + + virtual void write(nes_time_t, nes_addr_t, int data) + { + int changed = bank ^ data; + bank = data; + + if (changed & 0x10) + mirror_single(bank >> 4 & 1); + + if (changed & 0x0f) + set_prg_bank(0x8000, bank_32k, bank & 7); + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper009.hpp b/quicknes/source/quickerNES/core/mappers/mapper009.hpp new file mode 100644 index 00000000000..709c1d79cba --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper009.hpp @@ -0,0 +1,81 @@ +#pragma once + +#include "mapper.hpp" +#include + +namespace quickerNES +{ + +// MMC2 + +class Mapper009 : public Mapper +{ + uint8_t regs[6]; // A,B,C,D,E,F + + void mirror(uint8_t val) + { + if (val & 1) + mirror_horiz(); + else + mirror_vert(); + } + + public: + Mapper009() + { + register_state(regs, sizeof(regs)); + } + + virtual void reset_state() + { + std::memset(regs, 0, sizeof(regs)); + } + + virtual void apply_mapping() + { + mirror(regs[5]); + set_prg_bank(0x8000, bank_8k, regs[0]); + set_prg_bank(0xa000, bank_8k, 13); + set_prg_bank(0xc000, bank_8k, 14); + set_prg_bank(0xe000, bank_8k, 15); + + set_chr_bank(0x0000, bank_4k, regs[1]); + set_chr_bank(0x1000, bank_4k, regs[3]); + + set_chr_bank_ex(0x0000, bank_4k, regs[2]); + set_chr_bank_ex(0x1000, bank_4k, regs[4]); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + switch (addr >> 12) + { + case 0xa: + regs[0] = data; + set_prg_bank(0x8000, bank_8k, data); + break; + case 0xb: + regs[1] = data; + set_chr_bank(0x0000, bank_4k, data); + break; + case 0xc: + regs[2] = data; + set_chr_bank_ex(0x0000, bank_4k, data); + break; + case 0xd: + regs[3] = data; + set_chr_bank(0x1000, bank_4k, data); + break; + case 0xe: + regs[4] = data; + set_chr_bank_ex(0x1000, bank_4k, data); + break; + case 0xf: + regs[5] = data; + mirror(data); + break; + } + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper010.hpp b/quicknes/source/quickerNES/core/mappers/mapper010.hpp new file mode 100644 index 00000000000..7d0d5b7d250 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper010.hpp @@ -0,0 +1,79 @@ +#pragma once +#include "mapper.hpp" +#include + +namespace quickerNES +{ + +// MMC4 + +class Mapper010 : public Mapper +{ + uint8_t regs[6]; // A,B,C,D,E,F + + void mirror(uint8_t val) + { + if (val & 1) + mirror_horiz(); + else + mirror_vert(); + } + + public: + Mapper010() + { + register_state(regs, sizeof(regs)); + } + + virtual void reset_state() + { + std::memset(regs, 0, sizeof(regs)); + } + + virtual void apply_mapping() + { + enable_sram(); + + mirror(regs[5]); + set_prg_bank(0x8000, bank_16k, regs[0]); + + set_chr_bank(0x0000, bank_4k, regs[1]); + set_chr_bank(0x1000, bank_4k, regs[3]); + + set_chr_bank_ex(0x0000, bank_4k, regs[2]); + set_chr_bank_ex(0x1000, bank_4k, regs[4]); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + switch (addr >> 12) + { + case 0xa: + regs[0] = data; + set_prg_bank(0x8000, bank_16k, data); + break; + case 0xb: + regs[1] = data; + set_chr_bank(0x0000, bank_4k, data); + break; + case 0xc: + regs[2] = data; + set_chr_bank_ex(0x0000, bank_4k, data); + break; + case 0xd: + regs[3] = data; + set_chr_bank(0x1000, bank_4k, data); + break; + case 0xe: + regs[4] = data; + set_chr_bank_ex(0x1000, bank_4k, data); + break; + case 0xf: + regs[5] = data; + mirror(data); + break; + } + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper011.hpp b/quicknes/source/quickerNES/core/mappers/mapper011.hpp new file mode 100644 index 00000000000..535070c4d41 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper011.hpp @@ -0,0 +1,55 @@ +#pragma once + +// Optional less-common simple mappers + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +// Color Dreams + +class Mapper011 : public Mapper +{ + uint8_t bank; + + public: + Mapper011() + { + register_state(&bank, 1); + } + + virtual void apply_mapping() + { + int b = bank; + bank = ~b; + write(0, 0, b); + } + + virtual void write(nes_time_t, nes_addr_t, int data) + { + int changed = bank ^ data; + bank = data; + + if (changed & 0x0f) + set_prg_bank(0x8000, bank_32k, bank & 0x0f); + + if (changed & 0xf0) + set_chr_bank(0, bank_8k, bank >> 4); + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper015.hpp b/quicknes/source/quickerNES/core/mappers/mapper015.hpp new file mode 100644 index 00000000000..069d367e858 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper015.hpp @@ -0,0 +1,97 @@ +#pragma once + +/* Copyright (C) 2018. + * This module is free software; you + * can redistribute it and/or modify it under the terms of the GNU Lesser + * General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. This + * module is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for + * more details. You should have received a copy of the GNU Lesser General + * Public License along with this module; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * 100-in-1 Contra Function 16 + */ + +#include "mapper.hpp" + +namespace quickerNES +{ + +struct Mapper015_state_t +{ + uint8_t prg_bank[4]; + uint8_t mirroring; +}; + +static_assert(sizeof(Mapper015_state_t) == 5); + +// K-1029, K-1030P + +class Mapper015 : public Mapper, Mapper015_state_t +{ + public: + Mapper015() + { + i = 0; + Mapper015_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual void reset_state() + { + write(0, 0x8000, 0); + } + + virtual void apply_mapping() + { + enable_sram(); + set_chr_bank(0, bank_8k, 0); + for (i = 0; i < sizeof prg_bank; i++) + set_prg_bank(0x8000 + (i * 0x2000), bank_8k, prg_bank[i]); + switch (mirroring) + { + case 0: mirror_vert(); break; + case 1: mirror_horiz(); break; + } + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + uint8_t bank = (data & 0x3F) << 1; + uint8_t sbank = (data >> 7) & 1; + + mirroring = (data >> 6) & 1; + switch (addr & 3) + { + case 0: + for (i = 0; i < sizeof prg_bank; i++) + prg_bank[i] = bank + i; + apply_mapping(); + break; + case 2: + for (i = 0; i < sizeof prg_bank; i++) + prg_bank[i] = bank | sbank; + apply_mapping(); + break; + case 1: + case 3: + for (i = 0; i < sizeof prg_bank; i++) + { + if (i >= 2 && !(addr & 2)) + bank = 0x7E; + prg_bank[i] = bank + (i & 1); + } + apply_mapping(); + break; + } + } + + unsigned long int i; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper019.hpp b/quicknes/source/quickerNES/core/mappers/mapper019.hpp new file mode 100644 index 00000000000..315cdd2f177 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper019.hpp @@ -0,0 +1,202 @@ +#pragma once + +// Namco 106 mapper + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "../apu/namco/apu_namco.hpp" +#include "mapper.hpp" + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +// to do: CHR mapping and nametable handling needs work + +namespace quickerNES +{ + +struct namco106_state_t +{ + uint8_t regs[16]; + uint16_t irq_ctr; + uint8_t irq_pending; + uint8_t unused1[1]; + namco_state_t sound_state; +}; +static_assert(sizeof(namco106_state_t) == 20 + sizeof(namco_state_t)); + +// Namco106 + +class Mapper019 : public Mapper, namco106_state_t +{ + public: + Mapper019() + { + namco106_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual int channel_count() const { return sound.osc_count; } + + virtual void set_channel_buf(int i, Blip_Buffer *b) { sound.osc_output(i, b); } + + virtual void set_treble(blip_eq_t const &eq) { sound.treble_eq(eq); } + + void reset_state() + { + regs[12] = 0; + regs[13] = 1; + regs[14] = last_bank - 1; + sound.reset(); + } + + virtual void apply_mapping() + { + last_time = 0; + enable_sram(); + intercept_writes(0x4800, 1); + intercept_reads(0x4800, 1); + + intercept_writes(0x5000, 0x1000); + intercept_reads(0x5000, 0x1000); + + for (int i = 0; i < (int)sizeof regs; i++) + write(0, 0x8000 + i * 0x800, regs[i]); + } + + virtual nes_time_t next_irq(nes_time_t time) + { + if (irq_pending) + return time; + + if (!(irq_ctr & 0x8000)) + return no_irq; + + return 0x10000 - irq_ctr + last_time; + } + + virtual void run_until(nes_time_t end_time) + { + long count = irq_ctr + (end_time - last_time); + if (irq_ctr & 0x8000) + { + if (count > 0xffff) + { + count = 0xffff; + irq_pending = true; + } + } + else if (count > 0x7fff) + { + count = 0x7fff; + } + + irq_ctr = count; + last_time = end_time; + } + + virtual void end_frame(nes_time_t end_time) + { + if (end_time > last_time) + run_until(end_time); + last_time -= end_time; + sound.end_frame(end_time); + } + + virtual int read(nes_time_t time, nes_addr_t addr) + { + if (addr == 0x4800) + return sound.read_data(); + + if (addr == 0x5000) + { + irq_pending = false; + return irq_ctr & 0xff; + } + + if (addr == 0x5800) + { + irq_pending = false; + return irq_ctr >> 8; + } + + return Mapper::read(time, addr); + } + + virtual bool write_intercepted(nes_time_t time, nes_addr_t addr, int data) + { + if (addr == 0x4800) + { + sound.write_data(time, data); + } + else if (addr == 0x5000) + { + irq_ctr = (irq_ctr & 0xff00) | data; + irq_pending = false; + irq_changed(); + } + else if (addr == 0x5800) + { + irq_ctr = (data << 8) | (irq_ctr & 0xff); + irq_pending = false; + irq_changed(); + } + else + { + return false; + } + + return true; + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + int reg = addr >> 11 & 0x0F; + regs[reg] = data; + + int prg_bank = reg - 0x0c; + if ((unsigned)prg_bank < 3) + { + if (prg_bank == 0 && (data & 0x40)) + mirror_vert(); + set_prg_bank(0x8000 | (prg_bank << bank_8k), bank_8k, data & 0x3F); + } + else if (reg < 8) + { + set_chr_bank(reg * 0x400, bank_1k, data); + } + else if (reg < 0x0c) + { + mirror_manual(regs[8] & 1, regs[9] & 1, regs[10] & 1, regs[11] & 1); + } + else + { + sound.write_addr(data); + } + } + + void save_state(mapper_state_t &out) + { + sound.save_state(&sound_state); + Mapper::save_state(out); + } + + void read_state(mapper_state_t const &in) + { + Mapper::read_state(in); + sound.load_state(sound_state); + } + + Namco_Apu sound; + nes_time_t last_time; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper021.hpp b/quicknes/source/quickerNES/core/mappers/mapper021.hpp new file mode 100644 index 00000000000..a3b629287ce --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper021.hpp @@ -0,0 +1,259 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2004-2006 Shay Green + * Copyright (C) 2007 CaH4e3 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * General code is from FCEUX https://sourceforge.net/p/fceultra/code/HEAD/tree/fceu/trunk/src/boards/vrc2and4.cpp + * IRQ portion is from existing VRC6/VRC7 by Shay Green + * This mapper was ported by retrowertz for Libretro port of QuickNES. + * 3-19-2018 + * + * VRC-2/VRC-4 Konami + */ + +#include "mapper.hpp" + +namespace quickerNES +{ + +struct vrc2_state_t +{ + uint8_t prg_banks[2]; + uint8_t chr_banks[8]; + uint8_t mirroring; + uint8_t prg_swap; + uint8_t irq_latch; + uint8_t irq_control; + + // internal state + uint16_t next_time; + uint8_t irq_pending; +}; +static_assert(sizeof(vrc2_state_t) == 18); + +template +class Mapper_VRC2_4 : public Mapper, vrc2_state_t +{ + public: + Mapper_VRC2_4() + { + if (type_a && type_b) // mapper 21 + { + is22 = 0; + reg1mask = 0x42; + reg2mask = 0x84; + } + else if (!type_a && type_b) // mapper 22 + { + is22 = 1; + reg1mask = 2; + reg2mask = 1; + } + else if (!type_a && !type_b) // mapper 23 + { + is22 = 0; + reg1mask = 0x15; + reg2mask = 0x2a; + } + else if (type_a && !type_b) // mapper 25 + { + is22 = 0; + reg1mask = 0xa; + reg2mask = 0x5; + } + vrc2_state_t *state = this; + register_state(state, sizeof *state); + } + + void reset_state() + { + } + + void apply_mapping() + { + if (!is22) enable_sram(); + update_prg(); + update_chr(); + set_mirroring(); + } + + void reset_timer(nes_time_t present) + { + next_time = present + unsigned((0x100 - irq_latch) * timer_period) / 4; + } + + virtual void run_until(nes_time_t end_time) + { + if (irq_control & 2) + { + while (next_time < end_time) + { + // printf( "%d timer expired\n", next_time ); + irq_pending = true; + reset_timer(next_time); + } + } + } + + virtual void end_frame(nes_time_t end_time) + { + run_until(end_time); + + // to do: next_time might go negative if IRQ is disabled + next_time -= end_time; + } + + virtual nes_time_t next_irq(nes_time_t present) + { + if (irq_pending) + return present; + + if (irq_control & 2) + return next_time + 1; + + return no_irq; + } + + void write_irq(nes_time_t time, nes_addr_t addr, int data); + + void write(nes_time_t time, nes_addr_t addr, int data) + { + addr = (addr & 0xF000) | !!(addr & reg2mask) << 1 | !!(addr & reg1mask); + + if (addr >= 0xB000 && addr <= 0xE003) + { + unsigned banknumber = ((addr >> 1) & 1) | ((addr - 0xB000) >> 11); + unsigned offset = (addr & 1) << 2; + + chr_banks[banknumber] &= (0xF0) >> offset; + chr_banks[banknumber] |= (data & 0xF) << offset; + chr_banks[banknumber] |= (offset ? ((data & 0x10) << 4) : 0); + update_chr(); + } + else + { + switch (addr & 0xF003) + { + case 0x8000: + case 0x8001: + case 0x8002: + case 0x8003: + prg_banks[0] = data & 0x1F; + update_prg(); + break; + case 0xA000: + case 0xA001: + case 0xA002: + case 0xA003: + prg_banks[1] = data & 0x1F; + update_prg(); + break; + case 0x9000: + case 0x9001: + mirroring = data; + set_mirroring(); + break; + case 0x9002: + case 0x9003: + prg_swap = data; + update_prg(); + break; + case 0xF000: + case 0xF001: + case 0xF002: + case 0xF003: + write_irq(time, addr, data); + break; + } + } + } + + unsigned is22, reg1mask, reg2mask; + enum + { + timer_period = 113 * 4 + 3 + }; + + private: + void set_mirroring() + { + switch (mirroring & 3) + { + case 0: mirror_vert(); break; + case 1: mirror_horiz(); break; + case 2: + case 3: mirror_single(mirroring & 1); break; + } + } + + void update_prg() + { + if (prg_swap & 2) + { + set_prg_bank(0x8000, bank_8k, (0xFE)); + set_prg_bank(0xC000, bank_8k, prg_banks[0]); + } + else + { + set_prg_bank(0x8000, bank_8k, prg_banks[0]); + set_prg_bank(0xC000, bank_8k, (0xFE)); + } + + set_prg_bank(0xA000, bank_8k, prg_banks[1]); + set_prg_bank(0xE000, bank_8k, (0xFF)); + } + + void update_chr() + { + for (int i = 0; i < (int)sizeof chr_banks; i++) + set_chr_bank(i * 0x400, bank_1k, chr_banks[i] >> is22); + } +}; + +template +void Mapper_VRC2_4::write_irq(nes_time_t time, + nes_addr_t addr, + int data) +{ + // IRQ + run_until(time); + // printf("%6d VRC2_4 [%d] A:%04x V:%02x\n", time, addr & 3, addr, data); + switch (addr & 3) + { + case 0: + irq_latch = (irq_latch & 0xF0) | (data & 0xF); + break; + case 1: + irq_latch = (irq_latch & 0x0F) | ((data & 0xF) << 4); + break; + case 2: + irq_pending = false; + irq_control = data & 3; + if (data & 2) reset_timer(time); + break; + case 3: + irq_pending = false; + irq_control = (irq_control & ~2) | ((irq_control << 1) & 2); + break; + } + irq_changed(); +} + +typedef Mapper_VRC2_4 Mapper021; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper022.hpp b/quicknes/source/quickerNES/core/mappers/mapper022.hpp new file mode 100644 index 00000000000..22920b8b097 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper022.hpp @@ -0,0 +1,37 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2004-2006 Shay Green + * Copyright (C) 2007 CaH4e3 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * General code is from FCEUX https://sourceforge.net/p/fceultra/code/HEAD/tree/fceu/trunk/src/boards/vrc2and4.cpp + * IRQ portion is from existing VRC6/VRC7 by Shay Green + * This mapper was ported by retrowertz for Libretro port of QuickNES. + * 3-19-2018 + * + * VRC-2/VRC-4 Konami + */ + +#include "mapper.hpp" +#include "mapper021.hpp" + +namespace quickerNES +{ + +typedef Mapper_VRC2_4 Mapper022; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper023.hpp b/quicknes/source/quickerNES/core/mappers/mapper023.hpp new file mode 100644 index 00000000000..37e29c9bcd0 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper023.hpp @@ -0,0 +1,36 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2004-2006 Shay Green + * Copyright (C) 2007 CaH4e3 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * General code is from FCEUX https://sourceforge.net/p/fceultra/code/HEAD/tree/fceu/trunk/src/boards/vrc2and4.cpp + * IRQ portion is from existing VRC6/VRC7 by Shay Green + * This mapper was ported by retrowertz for Libretro port of QuickNES. + * 3-19-2018 + * + * VRC-2/VRC-4 Konami + */ + +#include "mapper.hpp" + +namespace quickerNES +{ + +typedef Mapper_VRC2_4 Mapper023; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper024.hpp b/quicknes/source/quickerNES/core/mappers/mapper024.hpp new file mode 100644 index 00000000000..bb9b092750d --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper024.hpp @@ -0,0 +1,236 @@ +#pragma once + +// Konami VRC6 mapper +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "../apu/vrc6/apu_vrc6.hpp" +#include "mapper.hpp" +#include + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +struct vrc6_state_t +{ + // written registers + uint8_t prg_16k_bank; + // could move sound regs int and out of vrc6_apu_state_t for state saving, + // allowing them to be stored here + uint8_t old_sound_regs[3][3]; // to do: eliminate this duplicate + uint8_t mirroring; + uint8_t prg_8k_bank; + uint8_t chr_banks[8]; + uint8_t irq_reload; + uint8_t irq_mode; + + // internal state + uint16_t next_time; + uint8_t irq_pending; + uint8_t unused; + + vrc6_apu_state_t sound_state; +}; +static_assert(sizeof(vrc6_state_t) == 26 + sizeof(vrc6_apu_state_t)); + +template +class Mapper_Vrc6 : public Mapper, vrc6_state_t +{ + public: + Mapper_Vrc6() + { + swap_mask = swapMask; + vrc6_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual int channel_count() const { return sound.osc_count; } + + virtual void set_channel_buf(int i, Blip_Buffer *b) { sound.osc_output(i, b); } + + virtual void set_treble(blip_eq_t const &eq) { sound.treble_eq(eq); } + + virtual void reset_state() + { + prg_8k_bank = last_bank - 1; + sound.reset(); + } + + virtual void save_state(mapper_state_t &out) + { + sound.save_state(&sound_state); + Mapper::save_state(out); + } + + virtual void apply_mapping() + { + enable_sram(); + set_prg_bank(0x8000, bank_16k, prg_16k_bank); + set_prg_bank(0xC000, bank_8k, prg_8k_bank); + + for (int i = 0; i < (int)sizeof chr_banks; i++) + set_chr_bank(i * 0x400, bank_1k, chr_banks[i]); + + write_bank(0xb003, mirroring); + } + + void reset_timer(nes_time_t present) + { + next_time = present + unsigned((0x100 - irq_reload) * timer_period) / 4; + } + + virtual void run_until(nes_time_t end_time) + { + if (irq_mode & 2) + { + while (next_time < end_time) + { + // dprintf( "%d timer expired\n", next_time ); + irq_pending = true; + reset_timer(next_time); + } + } + } + + virtual void end_frame(nes_time_t end_time) + { + run_until(end_time); + + // to do: next_time might go negative if IRQ is disabled + next_time -= end_time; + + sound.end_frame(end_time); + } + + virtual nes_time_t next_irq(nes_time_t present) + { + if (irq_pending) + return present; + + if (irq_mode & 2) + return next_time + 1; + + return no_irq; + } + + virtual void write(nes_time_t time, nes_addr_t addr, int data) + { + int osc = unsigned(addr - sound.base_addr) / sound.addr_step; + + if ((addr + 1) & 2) // optionally swap 1 and 2 + addr ^= swap_mask; + + int reg = addr & 3; + if ((unsigned)osc < sound.osc_count && reg < sound.reg_count) + sound.write_osc(time, osc, reg, data); + else if (addr < 0xf000) + write_bank(addr, data); + else + write_irq(time, addr, data); + } + int swap_mask; + Vrc6_Apu sound; + enum + { + timer_period = 113 * 4 + 3 + }; + + void read_state(mapper_state_t const &in) + { + Mapper::read_state(in); + + // to do: eliminate when format is updated + // old-style registers + static char zero[sizeof old_sound_regs] = {0}; + if (0 != memcmp(old_sound_regs, zero, sizeof zero)) + { + /* Using old VRC6 sound register format */ + memcpy(sound_state.regs, old_sound_regs, sizeof sound_state.regs); + memset(old_sound_regs, 0, sizeof old_sound_regs); + } + + sound.load_state(sound_state); + } + + void write_irq(nes_time_t time, nes_addr_t addr, int data) + { + // IRQ + run_until(time); + // dprintf( "%d VRC6 IRQ [%d] = %02X\n", time, addr & 3, data ); + switch (addr & 3) + { + case 0: + irq_reload = data; + break; + + case 1: + irq_pending = false; + irq_mode = data; + if (data & 2) + reset_timer(time); + break; + + case 2: + irq_pending = false; + irq_mode = (irq_mode & ~2) | ((irq_mode << 1) & 2); + break; + } + irq_changed(); + } + + void write_bank(nes_addr_t addr, int data) + { + switch (addr & 0xf003) + { + case 0x8000: + prg_16k_bank = data; + set_prg_bank(0x8000, bank_16k, data); + break; + + case 0xb003: + { + mirroring = data; + + // dprintf( "Change mirroring %d\n", data ); + // emu()->enable_sram( data & 0x80 ); // to do: needed? + int page = data >> 5 & 1; + if (data & 8) + mirror_single(((data >> 2) ^ page) & 1); + else if (data & 4) + mirror_horiz(page); + else + mirror_vert(page); + break; + } + + case 0xc000: + prg_8k_bank = data; + set_prg_bank(0xC000, bank_8k, data); + break; + + default: + int bank = (addr >> 11 & 4) | (addr & 3); + if (addr >= 0xd000) + { + // dprintf( "change chr bank %d\n", bank ); + chr_banks[bank] = data; + set_chr_bank(bank * 0x400, bank_1k, data); + } + break; + } + } +}; + +typedef Mapper_Vrc6<0> Mapper024; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper025.hpp b/quicknes/source/quickerNES/core/mappers/mapper025.hpp new file mode 100644 index 00000000000..8ec42eeebdb --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper025.hpp @@ -0,0 +1,36 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2004-2006 Shay Green + * Copyright (C) 2007 CaH4e3 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * General code is from FCEUX https://sourceforge.net/p/fceultra/code/HEAD/tree/fceu/trunk/src/boards/vrc2and4.cpp + * IRQ portion is from existing VRC6/VRC7 by Shay Green + * This mapper was ported by retrowertz for Libretro port of QuickNES. + * 3-19-2018 + * + * VRC-2/VRC-4 Konami + */ + +#include "mapper.hpp" + +namespace quickerNES +{ + +typedef Mapper_VRC2_4 Mapper025; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper026.hpp b/quicknes/source/quickerNES/core/mappers/mapper026.hpp new file mode 100644 index 00000000000..22774f047e2 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper026.hpp @@ -0,0 +1,14 @@ +#pragma once + +// Konami VRC6 mapper + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" + +namespace quickerNES +{ + +typedef Mapper_Vrc6<3> Mapper026; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper030.hpp b/quicknes/source/quickerNES/core/mappers/mapper030.hpp new file mode 100644 index 00000000000..5b9635e4da3 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper030.hpp @@ -0,0 +1,56 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * 3/24/18 + * + * Unrom-512 + * + * NOTE: + * No flash and one screen mirroring support. + * Tested only on Troll Burner and Mystic Origins demo. + */ + +#include "mapper.hpp" + +// Unrom512 + +namespace quickerNES +{ + +class Mapper030 : public Mapper +{ + public: + Mapper030() {} + + void reset_state() {} + + void apply_mapping() {} + + void write(nes_time_t, nes_addr_t addr, int data) + { + if ((addr & 0xF000) >= 0x8000) + { + set_prg_bank(0x8000, bank_16k, data & 0x1F); + set_chr_bank(0x0000, bank_8k, (data >> 5) & 0x3); + } + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper032.hpp b/quicknes/source/quickerNES/core/mappers/mapper032.hpp new file mode 100644 index 00000000000..bf1a96281eb --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper032.hpp @@ -0,0 +1,129 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 32 - Irem's G-101 + * + */ + +#include "mapper.hpp" + +namespace quickerNES +{ + +struct mapper32_state_t +{ + uint8_t chr_bank[8]; + uint8_t prg_bank[2]; + uint8_t prg_mode; + uint8_t mirr; +}; +static_assert(sizeof(mapper32_state_t) == 12); + +// Irem_G101 + +class Mapper032 : public Mapper, mapper32_state_t +{ + public: + Mapper032() + { + mapper32_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual void reset_state() + { + prg_bank[0] = ~1; + prg_bank[1] = ~0; + enable_sram(); + } + + virtual void apply_mapping() + { + if (prg_mode == 0) + { + set_prg_bank(0x8000, bank_8k, prg_bank[0]); + set_prg_bank(0xA000, bank_8k, prg_bank[1]); + set_prg_bank(0xC000, bank_8k, ~1); + set_prg_bank(0xE000, bank_8k, ~0); + } + else + { + set_prg_bank(0xC000, bank_8k, prg_bank[0]); + set_prg_bank(0xA000, bank_8k, prg_bank[1]); + set_prg_bank(0x8000, bank_8k, ~1); + set_prg_bank(0xE000, bank_8k, ~0); + } + + for (unsigned long int i = 0; i < sizeof chr_bank; i++) + set_chr_bank((i << 10), bank_1k, chr_bank[i]); + + switch (mirr) + { + case 0: mirror_vert(); break; + case 1: mirror_horiz(); break; + } + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + switch (addr & 0xF000) + { + case 0x8000: + prg_bank[0] = data; + switch (prg_mode) + { + case 0: set_prg_bank(0x8000, bank_8k, data); break; + case 1: set_prg_bank(0xC000, bank_8k, data); break; + } + break; + case 0x9000: + mirr = data & 1; + prg_mode = (data >> 1) & 1; + switch (data & 1) + { + case 0: mirror_vert(); break; + case 1: mirror_horiz(); break; + } + break; + case 0xA000: + prg_bank[1] = data; + set_prg_bank(0xA000, bank_8k, data); + break; + } + + switch (addr & 0xF007) + { + case 0xB000: + case 0xB001: + case 0xB002: + case 0xB003: + case 0xB004: + case 0xB005: + case 0xB006: + case 0xB007: + chr_bank[addr & 0x07] = data; + set_chr_bank((addr & 0x07) << 10, bank_1k, data); + break; + } + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper033.hpp b/quicknes/source/quickerNES/core/mappers/mapper033.hpp new file mode 100644 index 00000000000..fcce4d26334 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper033.hpp @@ -0,0 +1,106 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 33 - Taito TC0190 + * + */ + +#include "mapper.hpp" + +namespace quickerNES +{ + +struct tc0190_state_t +{ + uint8_t preg[2]; + uint8_t creg[6]; + uint8_t mirr; +}; +static_assert(sizeof(tc0190_state_t) == 9); + +// TaitoTC0190 + +class Mapper033 : public Mapper, tc0190_state_t +{ + public: + Mapper033() + { + tc0190_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + for (int i = 0; i < 2; i++) + { + set_prg_bank(0x8000 + (i << 13), bank_8k, preg[i]); + set_chr_bank(0x0000 + (i << 11), bank_2k, creg[i]); + } + + for (int i = 0; i < 4; i++) + set_chr_bank(0x1000 + (i << 10), bank_1k, creg[2 + i]); + + if (mirr) + mirror_horiz(); + else + mirror_vert(); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + switch (addr & 0xA003) + { + case 0x8000: + preg[0] = data & 0x3F; + mirr = data >> 6; + set_prg_bank(0x8000, bank_8k, preg[0]); + if (mirr) + mirror_horiz(); + else + mirror_vert(); + break; + case 0x8001: + preg[1] = data & 0x3F; + set_prg_bank(0xA000, bank_8k, preg[1]); + break; + case 0x8002: + case 0x8003: + addr &= 0x01; + creg[addr] = data; + set_chr_bank(addr << 11, bank_2k, creg[addr]); + break; + case 0xA000: + case 0xA001: + case 0xA002: + case 0xA003: + addr &= 0x03; + creg[2 + addr] = data; + set_chr_bank(0x1000 | (addr << 10), bank_1k, creg[2 + addr]); + break; + } + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper034.hpp b/quicknes/source/quickerNES/core/mappers/mapper034.hpp new file mode 100644 index 00000000000..c8c5e178564 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper034.hpp @@ -0,0 +1,47 @@ +#pragma once + +// Optional less-common simple mappers + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +// Nina-1 (Deadly Towers only) + +namespace quickerNES +{ + +class Mapper034 : public Mapper +{ + uint8_t bank; + + public: + Mapper034() + { + register_state(&bank, 1); + } + + virtual void apply_mapping() + { + write(0, 0, bank); + } + + virtual void write(nes_time_t, nes_addr_t, int data) + { + bank = data; + set_prg_bank(0x8000, bank_32k, bank); + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper060.hpp b/quicknes/source/quickerNES/core/mappers/mapper060.hpp new file mode 100644 index 00000000000..c4ee3fe2be7 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper060.hpp @@ -0,0 +1,56 @@ +#pragma once + +/* Copyright (C) 2018. + * This module is free software; you + * can redistribute it and/or modify it under the terms of the GNU Lesser + * General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. This + * module is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for + * more details. You should have received a copy of the GNU Lesser General + * Public License along with this module; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * 4-in-1 Multicart ( Reset-based ) + */ + +#include "mapper.hpp" + +// NROM-128 4-in-1 multicart + +namespace quickerNES +{ + +class Mapper060 : public Mapper +{ + public: + Mapper060() + { + last_game = 2; + register_state(&game_sel, 1); + } + + virtual void reset_state() + { + game_sel = last_game; + game_sel++; + game_sel &= 3; + } + + virtual void apply_mapping() + { + set_prg_bank(0x8000, bank_16k, game_sel); + set_prg_bank(0xC000, bank_16k, game_sel); + set_chr_bank(0, bank_8k, game_sel); + last_game = game_sel; + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) {} + + uint8_t game_sel, last_game; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper066.hpp b/quicknes/source/quickerNES/core/mappers/mapper066.hpp new file mode 100644 index 00000000000..d58b4278f53 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper066.hpp @@ -0,0 +1,55 @@ +#pragma once + +// Optional less-common simple mappers + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +// GNROM + +namespace quickerNES +{ + +class Mapper066 : public Mapper +{ + uint8_t bank; + + public: + Mapper066() + { + register_state(&bank, 1); + } + + virtual void apply_mapping() + { + int b = bank; + bank = ~b; + write(0, 0, b); + } + + virtual void write(nes_time_t, nes_addr_t, int data) + { + int changed = bank ^ data; + bank = data; + + if (changed & 0x30) + set_prg_bank(0x8000, bank_32k, bank >> 4 & 3); + + if (changed & 0x03) + set_chr_bank(0, bank_8k, bank & 3); + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper069.hpp b/quicknes/source/quickerNES/core/mappers/mapper069.hpp new file mode 100644 index 00000000000..6055bd2fa09 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper069.hpp @@ -0,0 +1,193 @@ +#pragma once + +// Sunsoft FME-7 mapper + +// Emu 0.7.0. http://www.slack.net/~ant/libs/ + +#include "../apu/fme7/apu_fme7.hpp" +#include "mapper.hpp" + +/* Copyright (C) 2005 Chris Moeller */ +/* Copyright (C) 2005-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +struct fme7_state_t +{ + // first 16 bytes in register order + uint8_t regs[13]; + uint8_t irq_mode; + uint16_t irq_count; + + uint8_t command; + uint8_t irq_pending; + fme7_apu_state_t sound_state; // only used when saving/restoring state +}; +static_assert(sizeof(fme7_state_t) == 18 + sizeof(fme7_apu_state_t)); + +// Fme7 + +class Mapper069 : public Mapper, fme7_state_t +{ + public: + Mapper069() + { + fme7_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual int channel_count() const { return sound.osc_count; } + + virtual void set_channel_buf(int i, Blip_Buffer *b) { sound.osc_output(i, b); } + + virtual void set_treble(blip_eq_t const &eq) { sound.treble_eq(eq); } + + virtual void reset_state() + { + regs[8] = 0x40; // wram disabled + irq_count = 0xFFFF; + sound.reset(); + } + + virtual void save_state(mapper_state_t &out) + { + sound.save_state(&sound_state); + Mapper::save_state(out); + } + + virtual void read_state(mapper_state_t const &in) + { + Mapper::read_state(in); + sound.load_state(sound_state); + } + + virtual void apply_mapping() + { + last_time = 0; + for (int i = 0; i < (int)sizeof regs; i++) + write_register(i, regs[i]); + } + + virtual void run_until(nes_time_t end_time) + { + int new_count = irq_count - (end_time - last_time); + last_time = end_time; + + if (new_count <= 0 && (irq_mode & 0x81) == 0x81) + irq_pending = true; + + if (irq_mode & 0x01) + irq_count = new_count & 0xFFFF; + } + + virtual nes_time_t next_irq(nes_time_t) + { + if (irq_pending) + return 0; + + if ((irq_mode & 0x81) == 0x81) + return last_time + irq_count + 1; + + return no_irq; + } + + virtual void end_frame(nes_time_t end_time) + { + if (end_time > last_time) + run_until(end_time); + + last_time -= end_time; + + sound.end_frame(end_time); + } + + virtual void write(nes_time_t time, nes_addr_t addr, int data) + { + switch (addr & 0xE000) + { + case 0x8000: + command = data & 0x0F; + break; + + case 0xA000: + if (command < 0x0D) + write_register(command, data); + else + write_irq(time, command, data); + break; + + case 0xC000: + sound.write_latch(data); + break; + + case 0xE000: + sound.write_data(time, data); + break; + } + } + + void write_irq(nes_time_t time, int index, int data) + { + run_until(time); + switch (index) + { + case 0x0D: + irq_mode = data; + irq_pending = false; + irq_changed(); + break; + + case 0x0E: + irq_count = (irq_count & 0xFF00) | data; + break; + + case 0x0F: + irq_count = data << 8 | (irq_count & 0xFF); + break; + } + } + + void write_register(int index, int data) + { + regs[index] = data; + int prg_bank = index - 0x09; + if ((unsigned)prg_bank < 3) // most common + { + set_prg_bank(0x8000 | (prg_bank << bank_8k), bank_8k, data); + } + else if (index == 0x08) + { + enable_sram((data & 0xC0) == 0xC0); + if (!(data & 0xC0)) + set_prg_bank(0x6000, bank_8k, data & 0x3F); + } + else if (index < 0x08) + { + set_chr_bank(index * 0x400, bank_1k, data); + } + else + { + if (data & 2) + mirror_single(data & 1); + else if (data & 1) + mirror_horiz(); + else + mirror_vert(); + } + } + + nes_time_t last_time; + Fme7_Apu sound; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper070.hpp b/quicknes/source/quickerNES/core/mappers/mapper070.hpp new file mode 100644 index 00000000000..a25b468b95c --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper070.hpp @@ -0,0 +1,87 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 180 Crazy Climber + * + */ + +#include "mapper.hpp" + +// Mapper_74x161x162x32 + +namespace quickerNES +{ + +template +class Mapper_74x161x162x32 : public Mapper +{ + public: + Mapper_74x161x162x32() + { + register_state(&bank, 1); + } + + virtual void reset_state() + { + if (mapperId == 86) + bank = ~0; + } + + virtual void apply_mapping() + { + if (mapperId == 152) write(0, 0, bank); + if (mapperId == 70) write(0, 0, bank); + if (mapperId == 86) + { + intercept_writes(0x6000, 1); + write_intercepted(0, 0x6000, bank); + } + } + + virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) + { + if (addr != 0x6000) return false; + if (mapperId == 152) return false; + if (mapperId == 70) return false; + + bank = data; + set_prg_bank(0x8000, bank_32k, (bank >> 4) & 0x03); + set_chr_bank(0x0000, bank_8k, ((bank >> 4) & 0x04) | (bank & 0x03)); + + return true; + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + if (mapperId == 86) return; + + bank = handle_bus_conflict(addr, data); + set_prg_bank(0x8000, bank_16k, (bank >> 4) & 0x07); + set_chr_bank(0x0000, bank_8k, bank & 0x0F); + mirror_single((bank >> 7) & 0x01); + } + + uint8_t bank; +}; + +typedef Mapper_74x161x162x32<70> Mapper070; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper071.hpp b/quicknes/source/quickerNES/core/mappers/mapper071.hpp new file mode 100644 index 00000000000..4edc182567e --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper071.hpp @@ -0,0 +1,57 @@ +#pragma once + +// Optional less-common simple mappers + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +// Camerica + +namespace quickerNES +{ + +class Mapper071 : public Mapper +{ + uint8_t regs[3]; + + public: + Mapper071() + { + register_state(regs, sizeof regs); + } + + virtual void apply_mapping() + { + write(0, 0xc000, regs[0]); + if (regs[1] & 0x80) + write(0, 0x9000, regs[1]); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + if (addr >= 0xc000) + { + regs[0] = data; + set_prg_bank(0x8000, bank_16k, data); + } + else if ((addr & 0xf000) == 0x9000) + { + regs[1] = 0x80 | data; + mirror_single((data >> 4) & 1); + } + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper073.hpp b/quicknes/source/quickerNES/core/mappers/mapper073.hpp new file mode 100644 index 00000000000..a17dfa589a9 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper073.hpp @@ -0,0 +1,137 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * 3/24/18 + * + * VRC-3 Konami, Salamander + */ + +#include "mapper.hpp" + +namespace quickerNES +{ + +struct vrc3_state_t +{ + bool irq_enable; + bool irq_awk; + uint16_t irq_latch; + uint16_t irq_counter; + + uint8_t irq_pending; + uint16_t next_time; +}; + +// VRC3 + +class Mapper073 : public Mapper, vrc3_state_t +{ + public: + Mapper073() + { + vrc3_state_t *state = this; + register_state(state, sizeof *state); + } + + void reset_state() + { + } + + void apply_mapping() + { + enable_sram(); + mirror_vert(); + } + + virtual void run_until(nes_time_t end_time) + { + if (irq_enable) + { + long counter = irq_counter + (end_time - next_time); + + if (counter > 0xFFFF) + { + irq_pending = true; + irq_enable = irq_awk; + irq_counter = irq_latch; + } + else + irq_counter = counter; + } + + next_time = end_time; + } + + virtual void end_frame(nes_time_t end_time) + { + if (end_time > next_time) + run_until(end_time); + + next_time -= end_time; + } + + virtual nes_time_t next_irq(nes_time_t present) + { + if (irq_pending) + return present; + + if (!irq_enable) + return no_irq; + + return 0x10000 - irq_counter + next_time; + } + + void write_irq_counter(int shift, int data) + { + irq_latch &= ~(0xF << shift); + irq_latch |= data << shift; + } + + void write(nes_time_t time, nes_addr_t addr, int data) + { + data &= 0xF; + + switch (addr >> 12) + { + case 0xF: set_prg_bank(0x8000, bank_16k, data); break; + case 0x8: write_irq_counter(0, data); break; + case 0x9: write_irq_counter(4, data); break; + case 0xA: write_irq_counter(8, data); break; + case 0xB: write_irq_counter(12, data); break; + case 0xC: + irq_pending = false; + irq_awk = data & 1; + irq_enable = data & 2; + + if (irq_enable) + irq_counter = irq_latch; + + break; + case 0xD: + irq_pending = false; + irq_enable = irq_awk; + break; + } + + irq_changed(); + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper075.hpp b/quicknes/source/quickerNES/core/mappers/mapper075.hpp new file mode 100644 index 00000000000..583e36a10c4 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper075.hpp @@ -0,0 +1,113 @@ +#pragma once + +/* Copyright (C) 2018. + * This module is free software; you + * can redistribute it and/or modify it under the terms of the GNU Lesser + * General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. This + * module is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for + * more details. You should have received a copy of the GNU Lesser General + * Public License along with this module; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * VRC-1 Konami + */ + +#include "mapper.hpp" + +namespace quickerNES +{ + +struct vrc1_state_t +{ + uint8_t prg_banks[3]; + uint8_t chr_banks[2]; + uint8_t chr_banks_hi[2]; + uint8_t mirroring; +}; +static_assert(sizeof(vrc1_state_t) == 8); + +// VRC1 + +class Mapper075 : public Mapper, vrc1_state_t +{ + public: + Mapper075() + { + vrc1_state_t *state = this; + register_state(state, sizeof *state); + } + + void reset_state() + { + } + + void apply_mapping() + { + update_prg_banks(); + update_chr_banks(); + update_mirroring(); + } + + void write(nes_time_t, nes_addr_t addr, int data) + { + switch (addr & 0xF000) + { + case 0x8000: + prg_banks[0] = data & 0xF; + update_prg_banks(); + break; + case 0x9000: + mirroring = data & 1; + chr_banks_hi[0] = (data & 2) << 3; + chr_banks_hi[1] = (data & 4) << 2; + update_chr_banks(); + update_mirroring(); + break; + case 0xa000: + prg_banks[1] = data & 0xF; + update_prg_banks(); + break; + case 0xc000: + prg_banks[2] = data & 0xF; + update_prg_banks(); + break; + case 0xe000: + chr_banks[0] = data & 0xF; + update_chr_banks(); + break; + case 0xf000: + chr_banks[1] = data & 0xF; + update_chr_banks(); + break; + } + } + + void update_prg_banks() + { + set_prg_bank(0x8000, bank_8k, prg_banks[0]); + set_prg_bank(0xa000, bank_8k, prg_banks[1]); + set_prg_bank(0xc000, bank_8k, prg_banks[2]); + } + + void update_chr_banks() + { + set_chr_bank(0x0000, bank_4k, chr_banks[0] | chr_banks_hi[0]); + set_chr_bank(0x1000, bank_4k, chr_banks[1] | chr_banks_hi[1]); + } + + void update_mirroring() + { + switch (mirroring & 1) + { + case 1: mirror_horiz(); break; + case 0: mirror_vert(); break; + } + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper078.hpp b/quicknes/source/quickerNES/core/mappers/mapper078.hpp new file mode 100644 index 00000000000..7408cc7c5fc --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper078.hpp @@ -0,0 +1,80 @@ +#pragma once + +#include "mapper.hpp" + +// Holy Diver and Uchuusen - Cosmo Carrier. + +namespace quickerNES +{ + +class Mapper078 : public Mapper +{ + // lower 8 bits are the reg at 8000:ffff + // next two bits are autodetecting type + // 0 = unknown 1 = cosmo carrier 2 = holy diver + int reg; + void writeinternal(int data, int changed) + { + reg &= 0x300; + reg |= data; + + if (changed & 0x07) + set_prg_bank(0x8000, bank_16k, reg & 0x07); + if (changed & 0xf0) + set_chr_bank(0x0000, bank_8k, (reg >> 4) & 0x0f); + if (changed & 0x08) + { + // set mirroring based on memorized board type + if (reg & 0x100) + { + mirror_single((reg >> 3) & 1); + } + else if (reg & 0x200) + { + if (reg & 0x08) + mirror_vert(); + else + mirror_horiz(); + } + else + { + // if you don't set something here, holy diver dumps with 4sc set will + // savestate as 4k NTRAM. then when you later set H\V mapping, state size mismatch. + mirror_single(1); + } + } + } + + public: + Mapper078() + { + register_state(®, 4); + } + + virtual void reset_state() + { + reg = 0; + } + + virtual void apply_mapping() + { + writeinternal(reg, 0xff); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + // heuristic: if the first write ever to the register is 0, + // we're on holy diver, otherwise, carrier. it works for these two games... + if (!(reg & 0x300)) + { + reg |= data ? 0x100 : 0x200; + writeinternal(data, 0xff); + } + else + { + writeinternal(data, reg ^ data); + } + } +}; + +} // namespace quickerNES diff --git a/quicknes/source/quickerNES/core/mappers/mapper079.hpp b/quicknes/source/quickerNES/core/mappers/mapper079.hpp new file mode 100644 index 00000000000..8142c393725 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper079.hpp @@ -0,0 +1,98 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 079 + * Mapper 113 + * Nina-03 / Nina-06 + */ + +#include "mapper.hpp" + +namespace quickerNES +{ + +template +class Mapper_AveNina : public Mapper +{ + public: + Mapper_AveNina() + { + register_state(®s, 1); + } + + void write_regs(); + + virtual void reset_state() + { + intercept_writes(0x4000, 0x1000); + intercept_writes(0x5000, 0x1000); + } + + virtual void apply_mapping() + { + write_intercepted(0, 0x4100, regs); + } + + virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) + { + if (addr < 0x4100 || addr > 0x5FFF) + return false; + + if (addr & 0x100) + regs = data; + + write_regs(); + return true; + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + if (multicart == 0 && + ((addr == 0x8000) || (addr & 0xFCB0) == 0xFCB0)) + set_chr_bank(0, bank_8k, data & 0x07); + } + + uint8_t regs; +}; + +template +void Mapper_AveNina::write_regs() +{ + if (multicart == 0) + { + set_prg_bank(0x8000, bank_32k, (regs >> 3) & 0x01); + set_chr_bank(0, bank_8k, regs & 0x07); + } + else + { + set_prg_bank(0x8000, bank_32k, (regs >> 3) & 0x07); + set_chr_bank(0x0000, bank_8k, ((regs >> 3) & 0x08) | (regs & 0x07)); + if (regs & 0x80) + mirror_vert(); + else + mirror_horiz(); + } +} + +typedef Mapper_AveNina Mapper079; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper085.hpp b/quicknes/source/quickerNES/core/mappers/mapper085.hpp new file mode 100644 index 00000000000..c61068f0f4b --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper085.hpp @@ -0,0 +1,228 @@ +#pragma once + +// Emu 0.5.4. http://www.slack.net/~ant/ + +#include "../apu/vrc7/apu_vrc7.hpp" +#include "mapper.hpp" +#include + +/* Copyright (C) 2004-2005 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +struct vrc7_state_t +{ + // written registers + uint8_t mirroring; + uint8_t prg_banks[3]; + uint8_t chr_banks[8]; + uint8_t irq_reload; + uint8_t irq_mode; + + // internal state + uint16_t next_time; + uint8_t irq_pending; + uint8_t unused; + + vrc7_snapshot_t sound_state; +}; +static_assert(sizeof(vrc7_state_t) == 20 + sizeof(vrc7_snapshot_t)); + +// Vrc7 + +class Mapper085 : public Mapper, vrc7_state_t +{ + public: + Mapper085() + { + vrc7_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual int channel_count() const { return sound.osc_count; } + + virtual void set_channel_buf(int i, Blip_Buffer *b) { sound.osc_output(i, b); } + + virtual void set_treble(blip_eq_t const &eq) { sound.treble_eq(eq); } + + virtual void save_state(mapper_state_t &out) + { + sound.save_snapshot(&sound_state); + Mapper::save_state(out); + } + + virtual void load_state(mapper_state_t const &in) + { + Mapper::load_state(in); + sound.load_snapshot(sound_state, in.size); + } + + virtual void reset_state() + { + mirroring = 0; + + memset(prg_banks, 0, sizeof prg_banks); + memset(chr_banks, 0, sizeof chr_banks); + memset(&sound_state, 0, sizeof sound_state); + + irq_reload = 0; + irq_mode = 0; + irq_pending = false; + + next_time = 0; + sound.reset(); + + set_prg_bank(0xE000, bank_8k, last_bank); + apply_mapping(); + } + + void write_prg_bank(int bank, int data) + { + prg_banks[bank] = data; + set_prg_bank(0x8000 | (bank << bank_8k), bank_8k, data); + } + + void write_chr_bank(int bank, int data) + { + // dprintf( "change chr bank %d\n", bank ); + chr_banks[bank] = data; + set_chr_bank(bank * 0x400, bank_1k, data); + } + + void write_mirroring(int data) + { + mirroring = data; + + // dprintf( "Change mirroring %d\n", data ); + enable_sram(data & 128, data & 64); + + if (data & 2) + mirror_single(data & 1); + else if (data & 1) + mirror_horiz(); + else + mirror_vert(); + } + + void apply_mapping() + { + size_t i; + + for (i = 0; i < sizeof prg_banks; i++) + write_prg_bank(i, prg_banks[i]); + + for (i = 0; i < sizeof chr_banks; i++) + write_chr_bank(i, chr_banks[i]); + + write_mirroring(mirroring); + } + + void reset_timer(nes_time_t present) + { + next_time = present + unsigned((0x100 - irq_reload) * timer_period) / 4; + } + + virtual void run_until(nes_time_t end_time) + { + if (irq_mode & 2) + { + while (next_time < end_time) + { + // dprintf( "%d timer expired\n", next_time ); + irq_pending = true; + reset_timer(next_time); + } + } + } + + virtual void end_frame(nes_time_t end_time) + { + run_until(end_time); + + next_time -= end_time; + + sound.end_frame(end_time); + } + + virtual nes_time_t next_irq(nes_time_t present) + { + if (irq_pending) + return present; + + if (irq_mode & 2) + return next_time + 1; + + return no_irq; + } + + virtual void write(nes_time_t time, nes_addr_t addr, int data) + { + addr |= (addr & 8) << 1; + + if (addr >= 0xe010) + { + // IRQ + run_until(time); + // dprintf( "%d VRC6 IRQ [%d] = %02X\n", time, addr & 3, data ); + switch (addr & 0xf010) + { + case 0xe010: + irq_reload = data; + break; + + case 0xf000: + irq_pending = false; + irq_mode = data; + if (data & 2) + reset_timer(time); + break; + + case 0xf010: + irq_pending = false; + irq_mode = (irq_mode & ~2) | ((irq_mode << 1) & 2); + break; + } + irq_changed(); + } + else if ((unsigned)(addr - 0xa000) < 0x4000) + { + write_chr_bank(((addr >> 4) & 1) | (((addr - 0xa000) >> 11) & ~1), data); + } + else + switch (addr & 0xf010) + { + case 0x8000: write_prg_bank(0, data); break; + case 0x8010: write_prg_bank(1, data); break; + case 0x9000: write_prg_bank(2, data); break; + + case 0xe000: + write_mirroring(data); + break; + + case 0x9010: + if (addr & 0x20) + sound.write_data(time, data); + else + sound.write_reg(data); + break; + } + } + + Vrc7 sound; + enum + { + timer_period = 113 * 4 + 3 + }; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper086.hpp b/quicknes/source/quickerNES/core/mappers/mapper086.hpp new file mode 100644 index 00000000000..7d70f56e6a9 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper086.hpp @@ -0,0 +1,29 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + */ + +namespace quickerNES +{ + +typedef Mapper_74x161x162x32<86> Mapper086; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper087.hpp b/quicknes/source/quickerNES/core/mappers/mapper087.hpp new file mode 100644 index 00000000000..8c945152ef2 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper087.hpp @@ -0,0 +1,53 @@ +#pragma once + +// Optional less-common simple mappers +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +// Jaleco/Konami/Taito + +namespace quickerNES +{ + +class Mapper087 : public Mapper +{ + uint8_t bank; + + public: + Mapper087() + { + register_state(&bank, 1); + } + + void apply_mapping() + { + intercept_writes(0x6000, 1); + write(0, 0x6000, bank); + } + + bool write_intercepted(nes_time_t, nes_addr_t addr, int data) + { + if (addr != 0x6000) + return false; + + bank = data; + set_chr_bank(0, bank_8k, data >> 1); + return true; + } + + void write(nes_time_t, nes_addr_t, int) {} +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper088.hpp b/quicknes/source/quickerNES/core/mappers/mapper088.hpp new file mode 100644 index 00000000000..53ae611eef2 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper088.hpp @@ -0,0 +1,114 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * 3/24/18 + * + * Mapper 88 + * Mapper 154 + * Mapper 206 + */ + +#include "mapper.hpp" + +namespace quickerNES +{ + +struct namco_34x3_state_t +{ + uint8_t bank[8]; + uint8_t mirr; + uint8_t mode; +}; +static_assert(sizeof(namco_34x3_state_t) == 10); + +template +class Mapper_Namco_34x3 : public Mapper, namco_34x3_state_t +{ + public: + Mapper_Namco_34x3() + { + namco_34x3_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + set_chr_bank(0x0000, bank_2k, bank[0]); + set_chr_bank(0x0800, bank_2k, bank[1]); + for (int i = 0; i < 4; i++) + set_chr_bank(0x1000 + (i << 10), bank_1k, bank[i + 2]); + + set_prg_bank(0x8000, bank_8k, bank[6]); + set_prg_bank(0xA000, bank_8k, bank[7]); + set_prg_bank(0xC000, bank_8k, ~1); + set_prg_bank(0xE000, bank_8k, ~0); + + if (_is154) + mirror_single(mirr); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + switch (addr & 0xE001) + { + case 0x8000: + mode = data; + mirr = (data >> 6) & 0x01; + if (_is154) + mirror_single(mirr); + break; + case 0x8001: + mode &= 0x07; + switch (mode) + { + case 0: + case 1: + bank[mode] = data >> 1; + set_chr_bank(0x0000 + (mode << 11), bank_2k, bank[mode]); + break; + case 2: + case 3: + case 4: + case 5: + bank[mode] = data | 0x40; + set_chr_bank(0x1000 + ((mode - 2) << 10), bank_1k, bank[mode]); + break; + case 6: + case 7: + bank[mode] = data; + set_prg_bank(0x8000 + ((mode - 6) << 13), bank_8k, bank[mode]); + break; + } + break; + case 0xC000: + mirr = (data >> 6) & 0x01; + if (_is154) + mirror_single(mirr); + } + } +}; + +typedef Mapper_Namco_34x3 Mapper088; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper089.hpp b/quicknes/source/quickerNES/core/mappers/mapper089.hpp new file mode 100644 index 00000000000..20ff21526ff --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper089.hpp @@ -0,0 +1,62 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 93 - Sunsoft-2 + */ + +#include "mapper.hpp" + +// Sunsoft2b + +namespace quickerNES +{ + +class Mapper089 : public Mapper +{ + public: + Mapper089() + { + register_state(®s, 1); + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + set_prg_bank(0xC000, bank_16k, last_bank); + write(0, 0x8000, regs); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + regs = handle_bus_conflict(addr, data); + + set_chr_bank(0x0000, bank_8k, ((data >> 4) & 0x08) | (data & 0x07)); + set_prg_bank(0x8000, bank_16k, (data >> 4) & 0x07); + mirror_single((data >> 3) & 1); + } + + uint8_t regs; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper093.hpp b/quicknes/source/quickerNES/core/mappers/mapper093.hpp new file mode 100644 index 00000000000..a04d891e18a --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper093.hpp @@ -0,0 +1,61 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 93 - Sunsoft-2 + */ + +#include "mapper.hpp" + +// Sunsoft2a + +namespace quickerNES +{ + +class Mapper093 : public Mapper +{ + public: + Mapper093() + { + register_state(®s, 1); + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + set_prg_bank(0xC000, bank_16k, last_bank); + write(0, 0x8000, regs); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + regs = handle_bus_conflict(addr, data); + + set_chr_bank(0x0000, bank_8k, data & 0x0F); + set_prg_bank(0x8000, bank_16k, (data >> 4) & 0x07); + } + + uint8_t regs; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper094.hpp b/quicknes/source/quickerNES/core/mappers/mapper094.hpp new file mode 100644 index 00000000000..e5b4e653c56 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper094.hpp @@ -0,0 +1,60 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 94 - HVC-UN1ROM + * Senjou no Ookami (Japanese version of Commando) + * + */ + +#include "mapper.hpp" + +// Un1rom + +namespace quickerNES +{ + +class Mapper094 : public Mapper +{ + public: + Mapper094() + { + register_state(&bank, 1); + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + write(0, 0, bank); + } + + virtual void write(nes_time_t, nes_addr_t, int data) + { + bank = data; + set_prg_bank(0x8000, bank_16k, bank >> 2); + } + + uint8_t bank; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper097.hpp b/quicknes/source/quickerNES/core/mappers/mapper097.hpp new file mode 100644 index 00000000000..a5b524b83f7 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper097.hpp @@ -0,0 +1,69 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 97 - Kaiketsu Yanchamaru + * + */ + +#include "mapper.hpp" + +// Irem_Tam_S1 + +namespace quickerNES +{ + +class Mapper097 : public Mapper +{ + public: + Mapper097() + { + register_state(&bank, 1); + } + + virtual void reset_state() + { + bank = ~0; + } + + virtual void apply_mapping() + { + write(0, 0, bank); + } + + virtual void write(nes_time_t, nes_addr_t, int data) + { + bank = data; + set_prg_bank(0x8000, bank_16k, ~0); + set_prg_bank(0xC000, bank_16k, bank & 0x0F); + + switch ((bank >> 6) & 0x03) + { + case 1: mirror_horiz(); break; + case 2: mirror_vert(); break; + case 0: + case 3: mirror_single(bank & 0x01); break; + } + } + + uint8_t bank; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper113.hpp b/quicknes/source/quickerNES/core/mappers/mapper113.hpp new file mode 100644 index 00000000000..2cd28d27d0a --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper113.hpp @@ -0,0 +1,33 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 079 + * Mapper 113 + * Nina-03 / Nina-06 + */ + +namespace quickerNES +{ + +typedef Mapper_AveNina Mapper113; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper140.hpp b/quicknes/source/quickerNES/core/mappers/mapper140.hpp new file mode 100644 index 00000000000..9c2223f2de0 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper140.hpp @@ -0,0 +1,69 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 140 - Jaleco's JF-11 and JF-14 + * + */ + +#include "mapper.hpp" + +// Jaleco_JF11 + +namespace quickerNES +{ + +class Mapper140 : public Mapper +{ + public: + Mapper140() + { + register_state(®s, 1); + } + + virtual void reset_state() + { + intercept_writes(0x6000, 1); + } + + virtual void apply_mapping() + { + write_intercepted(0, 0x6000, regs); + } + + bool write_intercepted(nes_time_t time, nes_addr_t addr, int data) + { + if (addr < 0x6000 || addr > 0x7FFF) + return false; + + regs = data; + set_prg_bank(0x8000, bank_32k, data >> 4); + set_chr_bank(0, bank_8k, data); + + return true; + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) {} + + uint8_t regs; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper152.hpp b/quicknes/source/quickerNES/core/mappers/mapper152.hpp new file mode 100644 index 00000000000..97246d4cc33 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper152.hpp @@ -0,0 +1,29 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + */ + +namespace quickerNES +{ + +typedef Mapper_74x161x162x32<152> Mapper152; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper154.hpp b/quicknes/source/quickerNES/core/mappers/mapper154.hpp new file mode 100644 index 00000000000..0573c808a86 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper154.hpp @@ -0,0 +1,33 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * 3/24/18 + * + * Mapper 88 + * Mapper 154 + * Mapper 206 + */ + +namespace quickerNES +{ + +typedef Mapper_Namco_34x3 Mapper154; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper156.hpp b/quicknes/source/quickerNES/core/mappers/mapper156.hpp new file mode 100644 index 00000000000..9306b6e4db0 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper156.hpp @@ -0,0 +1,65 @@ +#pragma once + +#include "mapper.hpp" + +// DIS23C01 DAOU ROM CONTROLLER + +namespace quickerNES +{ + +struct m156_state_t +{ + uint8_t prg_bank; + uint8_t chr_banks[8]; +}; +static_assert(sizeof(m156_state_t) == 9); + +class Mapper156 : public Mapper, m156_state_t +{ + public: + Mapper156() + { + m156_state_t *state = this; + register_state(state, sizeof *state); + } + + void reset_state() + { + prg_bank = 0; + for (unsigned i = 0; i < 8; i++) chr_banks[i] = i; + enable_sram(); + apply_mapping(); + } + + void apply_mapping() + { + mirror_single(0); + set_prg_bank(0x8000, bank_16k, prg_bank); + + for (int i = 0; i < (int)sizeof chr_banks; i++) + set_chr_bank(i * 0x400, bank_1k, chr_banks[i]); + } + + void write(nes_time_t, nes_addr_t addr, int data) + { + unsigned int reg = addr - 0xC000; + if (addr == 0xC010) + { + prg_bank = data; + set_prg_bank(0x8000, bank_16k, data); + } + else if (reg < 4) + { + chr_banks[reg] = data; + set_chr_bank(reg * 0x400, bank_1k, data); + } + else if ((reg - 8) < 4) + { + reg -= 4; + chr_banks[reg] = data; + set_chr_bank(reg * 0x400, bank_1k, data); + } + } +}; + +} // namespace quickerNES diff --git a/quicknes/source/quickerNES/core/mappers/mapper180.hpp b/quicknes/source/quickerNES/core/mappers/mapper180.hpp new file mode 100644 index 00000000000..6614efeac0e --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper180.hpp @@ -0,0 +1,60 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 180 Crazy Climber + * + */ + +#include "mapper.hpp" + +// UxROM (inverted) + +namespace quickerNES +{ + +class Mapper180 : public Mapper +{ + public: + Mapper180() + { + register_state(&bank, 1); + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + set_prg_bank(0x8000, bank_16k, 0); + write(0, 0, bank); + } + + virtual void write(nes_time_t, nes_addr_t, int data) + { + bank = data; + set_prg_bank(0xC000, bank_16k, data); + } + + uint8_t bank; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper184.hpp b/quicknes/source/quickerNES/core/mappers/mapper184.hpp new file mode 100644 index 00000000000..6d8f1d7b5e0 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper184.hpp @@ -0,0 +1,70 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 184 - Sunsoft-1 + */ + +#include "mapper.hpp" + +// Sunsoft1 + +namespace quickerNES +{ + +class Mapper184 : public Mapper +{ + public: + Mapper184() + { + register_state(®s, 1); + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + set_prg_bank(0x8000, bank_32k, 0); + intercept_writes(0x6000, 1); + write_intercepted(0, 0x6000, regs); + } + + virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) + { + if (addr != 0x6000) + return false; + + regs = data; + set_chr_bank(0x0000, bank_4k, data & 0x07); + set_chr_bank(0x1000, bank_4k, (data >> 4) & 0x07); + + return true; + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + } + + uint8_t regs; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper190.hpp b/quicknes/source/quickerNES/core/mappers/mapper190.hpp new file mode 100644 index 00000000000..9190ff6ed2a --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper190.hpp @@ -0,0 +1,60 @@ +#pragma once + +#include "mapper.hpp" + +// Magic Kid Googoo + +namespace quickerNES +{ + +class Mapper190 : public Mapper +{ + public: + Mapper190() + { + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + mirror_vert(); + enable_sram(); + set_prg_bank(0xc000, bank_16k, 0); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + switch (addr >> 12) + { + case 0x8: + case 0x9: + case 0xc: + case 0xd: + set_prg_bank(0x8000, bank_16k, (((addr >> 11) & 8) | (data & 7))); + break; + case 0xa: + case 0xb: + switch (addr & 3) + { + case 0: + set_chr_bank(0x0000, bank_2k, data); + break; + case 1: + set_chr_bank(0x0800, bank_2k, data); + break; + case 2: + set_chr_bank(0x1000, bank_2k, data); + break; + case 3: + set_chr_bank(0x1800, bank_2k, data); + break; + } + break; + } + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper193.hpp b/quicknes/source/quickerNES/core/mappers/mapper193.hpp new file mode 100644 index 00000000000..642cfb6b4f5 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper193.hpp @@ -0,0 +1,81 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 193 - NTDEC TC-112 + * Fighting Hero (Unl) + * War in the Gulf & (its Brazilian localization) + * + */ + +#include "mapper.hpp" + +// NTDEC's TC-112 mapper IC. + +namespace quickerNES +{ + +class Mapper193 : public Mapper +{ + public: + Mapper193() + { + register_state(regs, sizeof regs); + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + for (size_t i = 0; i < sizeof regs; i++) + write_intercepted(0, 0x6000 + i, regs[i]); + set_prg_bank(0xA000, bank_8k, ~2); + set_prg_bank(0xC000, bank_8k, ~1); + set_prg_bank(0xE000, bank_8k, ~0); + intercept_writes(0x6000, 0x03); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + } + + virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) + { + if (addr < 0x6000 || addr > 0x6003) + return false; + + regs[addr & 0x03] = data; + switch (addr & 0x03) + { + case 0: set_chr_bank(0x0000, bank_4k, regs[0] >> 2); break; + case 1: set_chr_bank(0x1000, bank_2k, regs[1] >> 1); break; + case 2: set_chr_bank(0x1800, bank_2k, regs[2] >> 1); break; + case 3: set_prg_bank(0x8000, bank_8k, regs[3]); break; + } + + return true; + } + + uint8_t regs[4]; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper206.hpp b/quicknes/source/quickerNES/core/mappers/mapper206.hpp new file mode 100644 index 00000000000..2f2d224c056 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper206.hpp @@ -0,0 +1,103 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * 3/24/18 + * + * Mapper 88 + * Mapper 154 + * Mapper 206 + */ + +#include "mapper.hpp" + +namespace quickerNES +{ + +struct namco_34xx_state_t +{ + uint8_t bank[8]; + uint8_t mirr; + uint8_t mode; +}; +static_assert(sizeof(namco_34xx_state_t) == 10); + +// Namco_34xx + +class Mapper206 : public Mapper, namco_34xx_state_t +{ + public: + Mapper206() + { + namco_34xx_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + set_chr_bank(0x0000, bank_2k, bank[0]); + set_chr_bank(0x0800, bank_2k, bank[1]); + for (int i = 0; i < 4; i++) + set_chr_bank(0x1000 + (i << 10), bank_1k, bank[i + 2]); + + set_prg_bank(0x8000, bank_8k, bank[6]); + set_prg_bank(0xA000, bank_8k, bank[7]); + set_prg_bank(0xC000, bank_8k, ~1); + set_prg_bank(0xE000, bank_8k, ~0); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + switch (addr & 0xE001) + { + case 0x8000: + mode = data; + break; + case 0x8001: + mode &= 0x07; + switch (mode) + { + case 0: + case 1: + bank[mode] = data >> 1; + set_chr_bank(0x0000 + (mode << 11), bank_2k, bank[mode]); + break; + case 2: + case 3: + case 4: + case 5: + bank[mode] = data; + set_chr_bank(0x1000 + ((mode - 2) << 10), bank_1k, bank[mode]); + break; + case 6: + case 7: + bank[mode] = data; + set_prg_bank(0x8000 + ((mode - 6) << 13), bank_8k, bank[mode]); + break; + } + break; + } + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper207.hpp b/quicknes/source/quickerNES/core/mappers/mapper207.hpp new file mode 100644 index 00000000000..262f292a8af --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper207.hpp @@ -0,0 +1,96 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Taito's X1-005 ( Rev. B ) Fudou Myouou Den + * + */ + +#include "mapper.hpp" + +namespace quickerNES +{ + +struct taito_x1005_state_t +{ + uint8_t preg[3]; + uint8_t creg[6]; + uint8_t nametable[2]; +}; +static_assert(sizeof(taito_x1005_state_t) == 11); + +// TaitoX1005 + +class Mapper207 : public Mapper, taito_x1005_state_t +{ + public: + Mapper207() + { + taito_x1005_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + int i; + intercept_writes(0x7EF0, 1); + for (i = 0; i < 3; i++) + set_prg_bank(0x8000 + (i << 13), bank_8k, preg[i]); + for (i = 0; i < 2; i++) + set_chr_bank(0x0000 + (i << 11), bank_2k, creg[i] >> 1); + for (i = 0; i < 4; i++) + set_chr_bank(0x1000 + (i << 10), bank_1k, creg[2 + i]); + mirror_manual(nametable[0], nametable[0], nametable[1], nametable[1]); + } + + virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) + { + if (addr < 0x7EF0 || addr > 0x7EFF) + return false; + + if ((addr & 0x0F) < 6) + { + creg[addr & 0x07] = data; + if ((addr & 0x0F) < 2) + { + nametable[addr & 0x01] = data >> 7; + mirror_manual(nametable[0], nametable[0], nametable[1], nametable[1]); + set_chr_bank((addr << 11) & 0x800, bank_2k, creg[addr & 0x01] >> 1); + return true; + } + + set_chr_bank(0x1000 | ((addr - 0x7EF2) << 10), bank_1k, creg[addr & 0x07]); + return true; + } + + addr = (addr - 0x7EFA) >> 1; + preg[addr] = data; + set_prg_bank(0x8000 | (addr << 13), bank_8k, preg[addr]); + return true; + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) {} +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper232.hpp b/quicknes/source/quickerNES/core/mappers/mapper232.hpp new file mode 100644 index 00000000000..c6c86f5e1ea --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper232.hpp @@ -0,0 +1,59 @@ + +#pragma once + +// Optional less-common simple mappers + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "mapper.hpp" + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +// Quattro + +namespace quickerNES +{ + +class Mapper232 : public Mapper +{ + uint8_t regs[2]; + + public: + Mapper232() + { + register_state(regs, sizeof regs); + } + + virtual void reset_state() + { + regs[0] = 0; + regs[1] = 3; + } + + virtual void apply_mapping() + { + int bank = regs[0] >> 1 & 0x0c; + set_prg_bank(0x8000, bank_16k, bank + (regs[1] & 3)); + set_prg_bank(0xC000, bank_16k, bank + 3); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + if (addr < 0xc000) + regs[0] = data; + else + regs[1] = data; + Mapper232::apply_mapping(); + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper240.hpp b/quicknes/source/quickerNES/core/mappers/mapper240.hpp new file mode 100644 index 00000000000..aa2ee357f4e --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper240.hpp @@ -0,0 +1,69 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + */ + +#include "mapper.hpp" + +// https://www.nesdev.org/wiki/INES_Mapper240 + +namespace quickerNES +{ + +class Mapper240 : public Mapper +{ + public: + Mapper240() + { + register_state(®s, 1); + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + enable_sram(); + intercept_writes(0x4020, 1); + write_intercepted(0, 0x4120, regs); + } + + virtual void write(nes_time_t, nes_addr_t, int data) + { + } + + virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) + { + if (addr < 0x4020 || addr > 0x5FFF) + return false; + + regs = data; + set_chr_bank(0x0000, bank_8k, data & 0x0F); + set_prg_bank(0x8000, bank_32k, data >> 4); + + return true; + } + + uint8_t regs; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper241.hpp b/quicknes/source/quickerNES/core/mappers/mapper241.hpp new file mode 100644 index 00000000000..ec6999d3946 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper241.hpp @@ -0,0 +1,58 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + */ + +#include "mapper.hpp" + +// https://www.nesdev.org/wiki/INES_Mapper241 + +namespace quickerNES +{ + +class Mapper241 : public Mapper +{ + public: + Mapper241() + { + register_state(&bank, 1); + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + enable_sram(); + write(0, 0, bank); + } + + virtual void write(nes_time_t, nes_addr_t, int data) + { + bank = data; + set_prg_bank(0x8000, bank_32k, bank); + } + + uint8_t bank; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper244.hpp b/quicknes/source/quickerNES/core/mappers/mapper244.hpp new file mode 100644 index 00000000000..fb5a7710ce1 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper244.hpp @@ -0,0 +1,75 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 244 - Decathlon + * + */ + +#include "mapper.hpp" + +// https://www.nesdev.org/wiki/INES_Mapper244 + +namespace quickerNES +{ + +struct mapper244_state_t +{ + uint8_t preg; + uint8_t creg; +}; +static_assert(sizeof(mapper244_state_t) == 2); + +class Mapper244 : public Mapper, mapper244_state_t +{ + public: + Mapper244() + { + mapper244_state_t *state = this; + register_state(state, sizeof *state); + } + + virtual void reset_state() + { + } + + virtual void apply_mapping() + { + set_prg_bank(0x8000, bank_32k, preg); + set_chr_bank(0x0000, bank_8k, creg); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + if (addr >= 0x8065 && addr <= 0x80A4) + { + preg = (addr - 0x8065) & 0x03; + set_prg_bank(0x8000, bank_32k, preg); + } + + if (addr >= 0x80A5 && addr <= 0x80E4) + { + creg = (addr - 0x80A5) & 0x07; + set_chr_bank(0x0000, bank_8k, creg); + } + } +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper246.hpp b/quicknes/source/quickerNES/core/mappers/mapper246.hpp new file mode 100644 index 00000000000..cc0f60b89c9 --- /dev/null +++ b/quicknes/source/quickerNES/core/mappers/mapper246.hpp @@ -0,0 +1,80 @@ +#pragma once + +/* Copyright notice for this file: + * Copyright (C) 2018 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * This mapper was added by retrowertz for Libretro port of QuickNES. + * + * Mapper 246 - Feng Shen Bang (Asia) (Ja) (Unl) + * + */ + +#include "mapper.hpp" + +// https://www.nesdev.org/wiki/INES_Mapper246 + +namespace quickerNES +{ + +class Mapper246 : public Mapper +{ + public: + Mapper246() + { + register_state(regs, sizeof regs); + } + + virtual void reset_state() + { + regs[3] = ~0; + } + + virtual void apply_mapping() + { + enable_sram(); + intercept_writes(0x6000, 0x07); + for (size_t i = 0; i < sizeof regs; i++) + write_intercepted(0, 0x6000 + i, regs[i]); + } + + virtual void write(nes_time_t, nes_addr_t addr, int data) + { + } + + virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) + { + int bank = addr & 0x07; + + if (addr < 0x6000 || addr > 0x67FF) + return false; + + regs[bank] = data; + if (bank < 4) + { + set_prg_bank(0x8000 + (bank << 13), bank_8k, data); + return true; + } + + set_chr_bank(0x0000 + ((bank & 0x03) << 11), bank_2k, data); + + return true; + } + + uint8_t regs[8]; +}; + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppu.cpp b/quicknes/source/quickerNES/core/ppu/ppu.cpp new file mode 100644 index 00000000000..ebddebd190e --- /dev/null +++ b/quicknes/source/quickerNES/core/ppu/ppu.cpp @@ -0,0 +1,659 @@ + +// Timing and behavior of PPU + +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "ppu.hpp" +#include "../core.hpp" +#include + +namespace quickerNES +{ + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +// to do: remove unnecessary run_until() calls + +// Timing + +ppu_time_t const scanline_len = Ppu::scanline_len; + +// if non-zero, report sprite max at fixed time rather than calculating it +nes_time_t const fixed_sprite_max_time = 0; // 1 * ((21 + 164) * scanline_len + 100) / ppu_overclock; +int const sprite_max_cpu_offset = 2420 + 3; + +ppu_time_t const t_to_v_time = 20 * scanline_len + 302; +ppu_time_t const even_odd_time = 20 * scanline_len + 328; + +ppu_time_t const first_scanline_time = 21 * scanline_len + 60; // this can be varied +ppu_time_t const first_hblank_time = 21 * scanline_len + 252; + +ppu_time_t const earliest_sprite_max = sprite_max_cpu_offset * ppu_overclock; +ppu_time_t const earliest_sprite_hit = 21 * scanline_len + 339; // needs to be 22 * scanline_len when fixed_sprite_max_time is set + +nes_time_t const vbl_end_time = 2272; +ppu_time_t const max_frame_length = 262 * scanline_len; +// ppu_time_t const max_frame_length = 320 * scanline_len; // longer frame for testing movie resync +nes_time_t const earliest_vbl_end_time = max_frame_length / ppu_overclock - 10; + +// Scanline rendering + +void Ppu::render_bg_until_(nes_time_t cpu_time) +{ + ppu_time_t time = ppu_time(cpu_time); + ppu_time_t const frame_duration = scanline_len * 261; + if (time > frame_duration) + time = frame_duration; + + // one-time events + if (frame_phase <= 1) + { + if (frame_phase < 1) + { + // vtemp->vaddr + frame_phase = 1; + if (w2001 & 0x08) + vram_addr = vram_temp; + } + + // variable-length scanline + if (time <= even_odd_time) + { + next_bg_time = nes_time(even_odd_time); + return; + } + frame_phase = 2; + if (!(w2001 & 0x08) || emu.nes.frame_count & 1) + { + if (--frame_length_extra < 0) + { + frame_length_extra = 2; + frame_length_++; + } + burst_phase--; + } + burst_phase = (burst_phase + 2) % 3; + } + + // scanlines + if (scanline_time < time) + { + int count = (time - scanline_time + scanline_len) / scanline_len; + + // hblank before next scanline + if (hblank_time < scanline_time) + { + hblank_time += scanline_len; + run_hblank(1); + } + + scanline_time += count * scanline_len; + + hblank_time += scanline_len * (count - 1); + int saved_vaddr = vram_addr; + + int start = scanline_count; + scanline_count += count; + draw_background(start, count); + + vram_addr = saved_vaddr; // to do: this is cheap + run_hblank(count - 1); + } + + // hblank after current scanline + ppu_time_t next_ppu_time = hblank_time; + if (hblank_time < time) + { + hblank_time += scanline_len; + run_hblank(1); + next_ppu_time = scanline_time; // scanline will run next + } + // either hblank or scanline comes next + next_bg_time = nes_time(next_ppu_time); +} + +void Ppu::render_until_(nes_time_t time) +{ + // render bg scanlines then render sprite scanlines up to wherever bg was rendered to + + render_bg_until(time); + next_sprites_time = nes_time(scanline_time); + if (host_pixels) + { + int start = next_sprites_scanline; + int count = scanline_count - start; + if (count > 0) + { + next_sprites_scanline += count; + draw_sprites(start, count); + } + } +} + +// Frame events + +inline void Ppu::end_vblank() +{ + // clear VBL, sprite hit, and max sprites flags first time after 20 scanlines + r2002 &= end_vbl_mask; + end_vbl_mask = ~0; +} + +inline void Ppu::run_end_frame(nes_time_t time) +{ + if (!frame_ended) + { + // update frame_length + render_bg_until(time); + + // set VBL when end of frame is reached + nes_time_t len = frame_length(); + if (time >= len) + { + r2002 |= 0x80; + frame_ended = true; + if (w2000 & 0x80) + nmi_time_ = len + 2 - (frame_length_extra >> 1); + } + } +} + +// Sprite max + +inline void Ppu::invalidate_sprite_max_() +{ + next_sprite_max_run = earliest_sprite_max / ppu_overclock; + sprite_max_set_time = 0; +} + +void Ppu::run_sprite_max_(nes_time_t cpu_time) +{ + end_vblank(); // might get run outside $2002 handler + + // 577.0 / 0x10000 ~= 1.0 / 113.581, close enough to accurately calculate which scanline it is + int start_scanline = next_sprite_max_scanline; + next_sprite_max_scanline = unsigned((cpu_time - sprite_max_cpu_offset) * 577) / 0x10000u; + + if (!sprite_max_set_time) + { + if (!(w2001 & 0x18)) + return; + + long t = recalc_sprite_max(start_scanline); + sprite_max_set_time = indefinite_time; + if (t > 0) + sprite_max_set_time = t / 3 + sprite_max_cpu_offset; + next_sprite_max_run = sprite_max_set_time; + // dprintf( "sprite_max_set_time: %d\n", sprite_max_set_time ); + } + + if (cpu_time > sprite_max_set_time) + { + r2002 |= 0x20; + // dprintf( "Sprite max flag set: %d\n", sprite_max_set_time ); + next_sprite_max_run = indefinite_time; + } +} + +inline void Ppu::run_sprite_max(nes_time_t t) +{ + if (!fixed_sprite_max_time && t > next_sprite_max_run) + run_sprite_max_(t); +} + +inline void Ppu::invalidate_sprite_max(nes_time_t t) +{ + if (!fixed_sprite_max_time && !(r2002 & 0x20)) + { + run_sprite_max(t); + invalidate_sprite_max_(); + } +} + +// Sprite 0 hit + +inline int Ppu_Impl::first_opaque_sprite_line() +{ + // advance earliest time if sprite has blank lines at beginning + uint8_t const *p = map_chr(sprite_tile_index(spr_ram) * 16); + int twice = w2000 >> 5 & 1; // loop twice if double height is set + int line = 0; + do + { + for (int n = 8; n--; p++) + { + if (p[0] | p[8]) + return line; + line++; + } + + p += 8; + } while (!--twice); + return line; +} + +void Ppu::update_sprite_hit(nes_time_t cpu_time) +{ + ppu_time_t earliest = earliest_sprite_hit + spr_ram[0] * scanline_len + spr_ram[3]; + // ppu_time_t latest = earliest + sprite_height() * scanline_len; + + earliest += first_opaque_sprite_line() * scanline_len; + + ppu_time_t time = ppu_time(cpu_time); + next_sprite_hit_check = indefinite_time; + + if (false) + if (earliest < time) + { + r2002 |= 0x40; + return; + } + + if (time < earliest) + { + next_sprite_hit_check = nes_time(earliest); + return; + } + + // within possible range; render scanline and compare pixels + int count_needed = 2 + (time - earliest_sprite_hit - spr_ram[3]) / scanline_len; + if (count_needed > 240) + count_needed = 240; + while (scanline_count < count_needed) + render_bg_until(std::max(cpu_time, next_bg_time + 1)); + + if (sprite_hit_found < 0) + return; // sprite won't hit + + if (!sprite_hit_found) + { + // check again next scanline + next_sprite_hit_check = nes_time(earliest_sprite_hit + spr_ram[3] + + (scanline_count - 1) * scanline_len); + } + else + { + // hit found + ppu_time_t hit_time = earliest_sprite_hit + sprite_hit_found - scanline_len; + + if (time < hit_time) + { + next_sprite_hit_check = nes_time(hit_time); + return; + } + + // dprintf( "Sprite hit x: %d, y: %d, scanline_count: %d\n", + // sprite_hit_found % 341, sprite_hit_found / 341, scanline_count ); + + r2002 |= 0x40; + } +} + +// $2002 + +inline void Ppu::query_until(nes_time_t time) +{ + end_vblank(); + + // sprite hit + if (time > next_sprite_hit_check) + update_sprite_hit(time); + + // sprite max + if (!fixed_sprite_max_time) + run_sprite_max(time); + else if (time >= fixed_sprite_max_time) + r2002 |= (w2001 << 1 & 0x20) | (w2001 << 2 & 0x20); +} + +int Ppu::read_2002(nes_time_t time) +{ + nes_time_t next = next_status_event; + next_status_event = vbl_end_time; + int extra_clock = extra_clocks ? (extra_clocks - 1) >> 2 & 1 : 0; + if (time > next && time > vbl_end_time + extra_clock) + { + query_until(time); + + next_status_event = next_sprite_hit_check; + nes_time_t const next_max = fixed_sprite_max_time ? fixed_sprite_max_time : next_sprite_max_run; + if (next_status_event > next_max) + next_status_event = next_max; + + if (time > earliest_open_bus_decay()) + { + next_status_event = earliest_open_bus_decay(); + update_open_bus(time); + } + + if (time > earliest_vbl_end_time) + { + if (next_status_event > earliest_vbl_end_time) + next_status_event = earliest_vbl_end_time; + run_end_frame(time); + + // special vbl behavior when read is just before or at clock when it's set + if (extra_clocks != 1) + { + if (time == frame_length()) + { + nmi_time_ = indefinite_time; + // dprintf( "Suppressed NMI\n" ); + } + } + else if (time == frame_length() - 1) + { + r2002 &= ~0x80; + frame_ended = true; + nmi_time_ = indefinite_time; + // dprintf( "Suppressed NMI\n" ); + } + } + } + emu.set_ppu_2002_time(next_status_event); + + int result = r2002; + second_write = false; + r2002 = result & ~0x80; + poke_open_bus(time, result, 0xE0); + update_open_bus(time); + return (result & 0xE0) | (open_bus & 0x1F); +} + +void Ppu::dma_sprites(nes_time_t time, void const *in) +{ + // dprintf( "%d sprites written\n", time ); + render_until(time); + + invalidate_sprite_max(time); + + memcpy(spr_ram + w2003, in, 0x100 - w2003); + memcpy(spr_ram, (char *)in + 0x100 - w2003, w2003); +} + +// Read + +inline int Ppu_Impl::read_2007(int addr) +{ + int result = r2007; + if (addr < 0x2000) + { + r2007 = *map_chr(addr); + } + else + { + r2007 = get_nametable(addr)[addr & 0x3ff]; + if (addr >= 0x3f00) + { + return palette[map_palette(addr)] | (open_bus & 0xC0); + } + } + return result; +} + +int Ppu::read(unsigned addr, nes_time_t time) +{ + switch (addr & 7) + { + // status + case 2: // handled inline + return read_2002(time); + + // sprite ram + case 4: + { + int result = spr_ram[w2003]; + if ((w2003 & 3) == 2) + result &= 0xe3; + poke_open_bus(time, result, ~0); + return result; + } + + // video ram + case 7: + { + render_bg_until(time); + int addr = vram_addr; + int new_addr = addr + addr_inc; + vram_addr = new_addr; + if (~addr & new_addr & vaddr_clock_mask) + { + emu.mapper->a12_clocked(); + addr = vram_addr - addr_inc; // avoid having to save across func call + } + int result = read_2007(addr & 0x3fff); + poke_open_bus(time, result, ((addr & 0x3fff) >= 0x3f00) ? 0x3F : ~0); + return result; + } + + default: + /* Read from unimplemented PPU register */ + break; + } + + update_open_bus(time); + + return open_bus; +} + +// Write + +void Ppu::write(nes_time_t time, unsigned addr, int data) +{ + switch (addr & 7) + { + case 0: + { // control + int changed = w2000 ^ data; + + if (changed & 0x28) + render_until(time); // obj height or pattern addr changed + else if (changed & 0x10) + render_bg_until(time); // bg pattern addr changed + else if (((data << 10) ^ vram_temp) & 0x0C00) + render_bg_until(time); // nametable changed + + if (changed & 0x80) + { + if (time > vbl_end_time + ((extra_clocks - 1) >> 2 & 1)) + end_vblank(); // to do: clean this up + + if (data & 0x80 & r2002) + { + nmi_time_ = time + 2; + emu.event_changed(); + } + if (time >= earliest_vbl_end_time) + run_end_frame(time - 1 + (extra_clocks & 1)); + } + + // nametable select + vram_temp = (vram_temp & ~0x0C00) | ((data & 3) * 0x400); + + if (changed & 0x20) // sprite height changed + invalidate_sprite_max(time); + w2000 = data; + addr_inc = data & 4 ? 32 : 1; + + break; + } + + case 1: + { // sprites, bg enable + int changed = w2001 ^ data; + + if (changed & 0xE1) + { + render_until(time + 1); // emphasis/monochrome bits changed + palette_changed = 0x18; + } + + if (changed & 0x14) + render_until(time + 1); // sprite enable/clipping changed + else if (changed & 0x0A) + render_bg_until(time + 1); // bg enable/clipping changed + + if (changed & 0x08) // bg enabled changed + emu.mapper->run_until(time); + + if (!(w2001 & 0x18) != !(data & 0x18)) + invalidate_sprite_max(time); // all rendering just turned on or off + + w2001 = data; + + if (changed & 0x08) + emu.irq_changed(); + + break; + } + + case 3: // spr addr + w2003 = data; + poke_open_bus(time, w2003, ~0); + break; + + case 4: + // dprintf( "%d sprites written\n", time ); + if (time > first_scanline_time / ppu_overclock) + { + render_until(time); + invalidate_sprite_max(time); + } + spr_ram[w2003] = data; + w2003 = (w2003 + 1) & 0xff; + break; + + case 5: + render_bg_until(time); + if ((second_write ^= 1)) + { + pixel_x = data & 7; + vram_temp = (vram_temp & ~0x1f) | (data >> 3); + } + else + { + vram_temp = (vram_temp & ~0x73e0) | + (data << 12 & 0x7000) | (data << 2 & 0x03e0); + } + break; + + case 6: + render_bg_until(time); + if ((second_write ^= 1)) + { + vram_temp = (vram_temp & 0xff) | (data << 8 & 0x3f00); + } + else + { + int changed = ~vram_addr & vram_temp; + vram_addr = vram_temp = (vram_temp & 0xff00) | data; + if (changed & vaddr_clock_mask) + emu.mapper->a12_clocked(); + } + break; + + default: + /* Wrote to unimplemented PPU register */ + break; + } + + poke_open_bus(time, data, ~0); +} + +// Frame begin/end + +nes_time_t Ppu::begin_frame(ppu_time_t timestamp) +{ + // current time + int cpu_timestamp = timestamp / ppu_overclock; + extra_clocks = timestamp - cpu_timestamp * ppu_overclock; + + // frame end + ppu_time_t const frame_end = max_frame_length - 1 - extra_clocks; + frame_length_ = (frame_end + (ppu_overclock - 1)) / ppu_overclock; + frame_length_extra = frame_length_ * ppu_overclock - frame_end; + + // nmi + nmi_time_ = indefinite_time; + if (w2000 & 0x80 & r2002) + nmi_time_ = 2 - (extra_clocks >> 1); + + // bg rendering + frame_phase = 0; + scanline_count = 0; + hblank_time = first_hblank_time; + scanline_time = first_scanline_time; + next_bg_time = nes_time(t_to_v_time); + + // sprite rendering + next_sprites_scanline = 0; + next_sprites_time = 0; + + // status register + frame_ended = false; + end_vbl_mask = ~0xE0; + next_status_event = 0; + sprite_hit_found = 0; + next_sprite_hit_check = 0; + next_sprite_max_scanline = 0; + invalidate_sprite_max_(); + + decay_low += cpu_timestamp; + decay_high += cpu_timestamp; + + base::begin_frame(); + + // dprintf( "cpu_timestamp: %d\n", cpu_timestamp ); + return cpu_timestamp; +} + +ppu_time_t Ppu::end_frame(nes_time_t end_time) +{ + render_bg_until(end_time); + render_until(end_time); + query_until(end_time); + run_end_frame(end_time); + + update_open_bus(end_time); + decay_low -= end_time; + decay_high -= end_time; + + // to do: do more PPU RE to get exact behavior + if (w2001 & 0x08) + { + unsigned a = vram_addr + 2; + if ((vram_addr & 0xff) >= 0xfe) + a = (vram_addr ^ 0x400) - 0x1e; + vram_addr = a; + } + + if (w2001 & 0x10) + w2003 = 0; + + suspend_rendering(); + + return (end_time - frame_length_) * ppu_overclock + frame_length_extra; +} + +void Ppu::poke_open_bus(nes_time_t time, int data, int mask) +{ + open_bus = (open_bus & ~mask) | (data & mask); + if (mask & 0x1F) decay_low = time + scanline_len * 100 / ppu_overclock; + if (mask & 0xE0) decay_high = time + scanline_len * 100 / ppu_overclock; +} + +nes_time_t Ppu::earliest_open_bus_decay() +{ + return (decay_low < decay_high) ? decay_low : decay_high; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppu.hpp b/quicknes/source/quickerNES/core/ppu/ppu.hpp new file mode 100644 index 00000000000..c786ed92c2d --- /dev/null +++ b/quicknes/source/quickerNES/core/ppu/ppu.hpp @@ -0,0 +1,146 @@ +#pragma once + +// NES PPU emulator +// Emu 0.7.0 + +#include "ppuRendering.hpp" +#include + +namespace quickerNES +{ + +class Mapper; +class Core; + +typedef long nes_time_t; +typedef long ppu_time_t; // ppu_time_t = nes_time_t * ppu_overclock + +ppu_time_t const ppu_overclock = 3; // PPU clocks for each CPU clock + +class Ppu : public Ppu_Rendering +{ + typedef Ppu_Rendering base; + + public: + Ppu(Core *); + + // Begin PPU frame and return beginning CPU timestamp + nes_time_t begin_frame(ppu_time_t); + + nes_time_t nmi_time() { return nmi_time_; } + void acknowledge_nmi() { nmi_time_ = LONG_MAX / 2 + 1; } + + int read_2002(nes_time_t); + int read(unsigned addr, nes_time_t); + void write(nes_time_t, unsigned addr, int); + + void render_bg_until(nes_time_t); + void render_until(nes_time_t); + + // CPU time that frame will have ended by + int frame_length() const { return frame_length_; } + + // End frame rendering and return PPU timestamp for next frame + ppu_time_t end_frame(nes_time_t); + + // Do direct memory copy to sprite RAM + void dma_sprites(nes_time_t, void const *in); + + int burst_phase; + + private: + Core &emu; + + enum + { + indefinite_time = LONG_MAX / 2 + 1 + }; + + void suspend_rendering(); + int read_(unsigned addr, nes_time_t); // note swapped arguments! + + // NES<->PPU time conversion + int extra_clocks; + ppu_time_t ppu_time(nes_time_t t) const { return t * ppu_overclock + extra_clocks; } + nes_time_t nes_time(ppu_time_t t) const { return (t - extra_clocks) / ppu_overclock; } + + // frame + nes_time_t nmi_time_; + int end_vbl_mask; + int frame_length_; + int frame_length_extra; + bool frame_ended; + void end_vblank(); + void run_end_frame(nes_time_t); + + // bg rendering + nes_time_t next_bg_time; + ppu_time_t scanline_time; + ppu_time_t hblank_time; + int scanline_count; + int frame_phase; + void render_bg_until_(nes_time_t); + void run_scanlines(int count); + + // sprite rendering + ppu_time_t next_sprites_time; + int next_sprites_scanline; + void render_until_(nes_time_t); + + // $2002 status register + nes_time_t next_status_event; + void query_until(nes_time_t); + + // sprite hit + nes_time_t next_sprite_hit_check; + void update_sprite_hit(nes_time_t); + + // open bus decay + void update_open_bus(nes_time_t); + void poke_open_bus(nes_time_t, int, int mask); + nes_time_t earliest_open_bus_decay(); + + // sprite max + nes_time_t next_sprite_max_run; // doesn't need to run until this time + nes_time_t sprite_max_set_time; // if 0, needs to be recalculated + int next_sprite_max_scanline; + void run_sprite_max_(nes_time_t); + void run_sprite_max(nes_time_t); + void invalidate_sprite_max_(); + void invalidate_sprite_max(nes_time_t); + + friend int nes_cpu_read_likely_ppu(class Core *, unsigned, nes_time_t); +}; + +inline void Ppu::suspend_rendering() +{ + next_bg_time = indefinite_time; + next_sprites_time = indefinite_time; + extra_clocks = 0; +} + +inline Ppu::Ppu(Core *e) : emu(*e) +{ + burst_phase = 0; + suspend_rendering(); +} + +inline void Ppu::render_until(nes_time_t t) +{ + if (t > next_sprites_time) + render_until_(t); +} + +inline void Ppu::render_bg_until(nes_time_t t) +{ + if (t > next_bg_time) + render_bg_until_(t); +} + +inline void Ppu::update_open_bus(nes_time_t time) +{ + if (time >= decay_low) open_bus &= ~0x1F; + if (time >= decay_high) open_bus &= ~0xE0; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppuImpl.cpp b/quicknes/source/quickerNES/core/ppu/ppuImpl.cpp new file mode 100644 index 00000000000..2790b105efa --- /dev/null +++ b/quicknes/source/quickerNES/core/ppu/ppuImpl.cpp @@ -0,0 +1,436 @@ +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "ppuImpl.hpp" +#include +#include +#include + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +int const cache_line_size = 128; // tile cache is kept aligned to this boundary + +inline void set_be32(void *p, unsigned long n) +{ + ((unsigned char *)p)[0] = (unsigned char)(n >> 24); + ((unsigned char *)p)[1] = (unsigned char)(n >> 16); + ((unsigned char *)p)[2] = (unsigned char)(n >> 8); + ((unsigned char *)p)[3] = (unsigned char)n; +} + +#define SET_BE32(addr, data) set_be32(addr, data) + +Ppu_Impl::Ppu_Impl() +{ + impl = NULL; + chr_data = NULL; + chr_size = 0; + tile_cache = NULL; + host_palette = NULL; + max_palette_size = 0; + tile_cache_mem = NULL; + ppu_state_t::unused = 0; + + mmc24_enabled = false; + mmc24_latched[0] = 0; + mmc24_latched[1] = 0; +} + +Ppu_Impl::~Ppu_Impl() +{ + close_chr(); + delete impl; +} + +void Ppu_Impl::all_tiles_modified() +{ + any_tiles_modified = true; + memset(modified_tiles, ~0, sizeof modified_tiles); +} + +const char *Ppu_Impl::open_chr(uint8_t const *new_chr, long chr_data_size) +{ + close_chr(); + + if (!impl) + { + impl = new impl_t; + chr_ram = impl->chr_ram; + } + + chr_data = new_chr; + chr_size = chr_data_size; + chr_is_writable = false; + + if (chr_data_size == 0) + { + // CHR RAM + chr_data = impl->chr_ram; + chr_size = sizeof impl->chr_ram; + chr_is_writable = true; + } + + // allocate aligned memory for cache + long tile_count = chr_size / bytes_per_tile; + tile_cache_mem = new uint8_t[tile_count * sizeof(cached_tile_t) * 2 + cache_line_size]; + tile_cache = (cached_tile_t *)(tile_cache_mem + cache_line_size - + (uintptr_t)tile_cache_mem % cache_line_size); + flipped_tiles = tile_cache + tile_count; + + // rebuild cache + all_tiles_modified(); + if (!chr_is_writable) + { + any_tiles_modified = false; + rebuild_chr(0, chr_size); + } + + return 0; +} + +void Ppu_Impl::close_chr() +{ + delete[] tile_cache_mem; + tile_cache_mem = NULL; +} + +void Ppu_Impl::set_chr_bank(int addr, int size, long data) +{ + if (data + size > chr_size) + data %= chr_size; + + int count = (unsigned)size / chr_page_size; + + int page = (unsigned)addr / chr_page_size; + while (count--) + { + chr_pages[page] = data - page * chr_page_size; + page++; + data += chr_page_size; + } +} + +void Ppu_Impl::set_chr_bank_ex(int addr, int size, long data) +{ + mmc24_enabled = true; + + // check( !chr_is_writable || addr == data ); // to do: is CHR RAM ever bank-switched? + // dprintf( "Tried to set CHR RAM bank at %04X to CHR+%04X\n", addr, data ); + + if (data + size > chr_size) + data %= chr_size; + + int count = (unsigned)size / chr_page_size; + // assert( chr_page_size * count == size ); + // assert( addr + size <= chr_addr_size ); + + int page = (unsigned)addr / chr_page_size; + while (count--) + { + chr_pages_ex[page] = data - page * chr_page_size; + page++; + data += chr_page_size; + } +} + +static uint8_t const initial_palette[0x20] = + { + 0x0f, 0x01, 0x00, 0x01, 0x00, 0x02, 0x02, 0x0D, 0x08, 0x10, 0x08, 0x24, 0x00, 0x00, 0x04, 0x2C, 0x00, 0x01, 0x34, 0x03, 0x00, 0x04, 0x00, 0x14, 0x00, 0x3A, 0x00, 0x02, 0x00, 0x20, 0x2C, 0x08}; + +void Ppu_Impl::reset(bool full_reset) +{ + w2000 = 0; + w2001 = 0; + r2002 = 0x80; + r2007 = 0; + open_bus = 0; + decay_low = 0; + decay_high = 0; + second_write = false; + vram_temp = 0; + pixel_x = 0; + + if (full_reset) + { + vram_addr = 0; + w2003 = 0; + memset(impl->chr_ram, 0xff, sizeof impl->chr_ram); + memset(impl->nt_ram, 0xff, sizeof impl->nt_ram); + memcpy(palette, initial_palette, sizeof palette); + } + + set_nt_banks(0, 0, 0, 0); + set_chr_bank(0, chr_addr_size, 0); + memset(spr_ram, 0xff, sizeof spr_ram); + all_tiles_modified(); + if (max_palette_size > 0) + memset(host_palette, 0, max_palette_size * sizeof *host_palette); +} + +void Ppu_Impl::capture_palette() +{ + if (palette_size + palette_increment <= max_palette_size) + { + palette_offset = (palette_begin + palette_size) * 0x01010101; + + short *out = host_palette + palette_size; + palette_size += palette_increment; + + int i; + + int emph = w2001 << 1 & 0x1C0; + int mono = (w2001 & 1 ? 0x30 : 0x3F); + + for (i = 0; i < 32; i++) + out[i] = (palette[i] & mono) | emph; + + int bg = out[0]; + for (i = 4; i < 32; i += 4) + out[i] = bg; + + memcpy(out + 32, out, 32 * sizeof *out); + } +} + +void Ppu_Impl::run_hblank(int count) +{ + long addr = (vram_addr & 0x7be0) + (vram_temp & 0x41f) + (count * 0x1000); + if (w2001 & 0x08) + { + while (addr >= 0x8000) + { + int y = (addr + 0x20) & 0x3e0; + addr = (addr - 0x8000) & ~0x3e0; + if (y == 30 * 0x20) + y = 0x800; + addr ^= y; + } + vram_addr = addr; + } +} + +#ifdef __MWERKS__ + #pragma ppc_unroll_factor_limit 1 // messes up calc_sprite_max_scanlines loop +static int zero = 0; +#else +const int zero = 0; +#endif + +// Tile cache + +inline unsigned long reorder(unsigned long n) +{ + n |= n << 7; + return ((n << 14) | n); +} + +inline void Ppu_Impl::update_tile(int index) +{ + const uint8_t *in = chr_data + (index)*bytes_per_tile; + uint8_t *out = (uint8_t *)tile_cache[index]; + uint8_t *flipped_out = (uint8_t *)flipped_tiles[index]; + + unsigned long bit_mask = 0x11111111 + zero; + + for (int n = 4; n--;) + { + // Reorder two lines of two-bit pixels. No bits are wasted, so + // reordered version is also four bytes. + // + // 12345678 to A0E4B1F5C2G6D3H7 + // ABCDEFGH + unsigned long c = + ((reorder(in[0]) & bit_mask) << 0) | + ((reorder(in[8]) & bit_mask) << 1) | + ((reorder(in[1]) & bit_mask) << 2) | + ((reorder(in[9]) & bit_mask) << 3); + in += 2; + + SET_BE32(out, c); + out += 4; + + // make horizontally-flipped version + c = ((c >> 28) & 0x000f) | + ((c >> 20) & 0x00f0) | + ((c >> 12) & 0x0f00) | + ((c >> 4) & 0xf000) | + ((c & 0xf000) << 4) | + ((c & 0x0f00) << 12) | + ((c & 0x00f0) << 20) | + ((c & 0x000f) << 28); + SET_BE32(flipped_out, c); + flipped_out += 4; + } +} + +void Ppu_Impl::rebuild_chr(unsigned long begin, unsigned long end) +{ + unsigned end_index = (end + bytes_per_tile - 1) / bytes_per_tile; + for (unsigned index = begin / bytes_per_tile; index < end_index; index++) + update_tile(index); +} + +void Ppu_Impl::update_tiles(int first_tile) +{ + int chunk = 0; + do + { + if (!(uint32_t &)modified_tiles[chunk]) + { + chunk += 4; + } + else + { + do + { + int modified = modified_tiles[chunk]; + if (modified) + { + modified_tiles[chunk] = 0; + + int index = first_tile + chunk * 8; + do + { + if (modified & 1) + update_tile(index); + index++; + } while ((modified >>= 1) != 0); + } + } while (++chunk & 3); + } + } while (chunk < chr_tile_count / 8); +} + +// Sprite max + +template +struct calc_sprite_max_scanlines +{ + static unsigned long func(uint8_t const *sprites, uint8_t *scanlines, int begin) + { + unsigned long any_hits = 0; + unsigned long const offset = 0x01010101 + zero; + unsigned limit = 239 + height - begin; + for (int n = 64; n; --n) + { + int top = *sprites; + sprites += 4; + uint8_t *p = scanlines + top; + if ((unsigned)(239 - top) < limit) + { + unsigned long p0 = ((uint32_t *)p)[0] + offset; + unsigned long p4 = ((uint32_t *)p)[1] + offset; + ((uint32_t *)p)[0] = p0; + any_hits |= p0; + ((uint32_t *)p)[1] = p4; + any_hits |= p4; + if (height > 8) + { + unsigned long p0 = ((uint32_t *)p)[2] + offset; + unsigned long p4 = ((uint32_t *)p)[3] + offset; + ((uint32_t *)p)[2] = p0; + any_hits |= p0; + ((uint32_t *)p)[3] = p4; + any_hits |= p4; + } + } + } + + return any_hits; + } +}; + +long Ppu_Impl::recalc_sprite_max(int scanline) +{ + int const max_scanline_count = image_height; + + uint8_t sprite_max_scanlines[256 + 16]; + + // recalculate sprites per scanline + memset(sprite_max_scanlines + scanline, 0x78, last_sprite_max_scanline - scanline); + unsigned long any_hits; + if (w2000 & 0x20) + any_hits = calc_sprite_max_scanlines<16>::func(spr_ram, sprite_max_scanlines, scanline); + else + any_hits = calc_sprite_max_scanlines<8>::func(spr_ram, sprite_max_scanlines, scanline); + + // cause search to terminate past max_scanline_count if none have 8 or more sprites + (uint32_t &)sprite_max_scanlines[max_scanline_count] = 0; + sprite_max_scanlines[max_scanline_count + 3] = 0x80; + + // avoid scan if no possible hits + if (!(any_hits & 0x80808080)) + return 0; + + // find soonest scanline with 8 or more sprites + while (true) + { + unsigned long const mask = 0x80808080 + zero; + + // check four at a time + uint8_t *pos = &sprite_max_scanlines[scanline]; + unsigned long n = *((uint32_t *)pos); + while (1) + { + unsigned long x = n & mask; + pos += 4; + n = *((uint32_t *)pos); + if (x) + break; + } + + int height = sprite_height(); + int remain = 8; + int i = 0; + + // find which of the four + pos -= 3 + (pos[-4] >> 7 & 1); + pos += 1 - (*pos >> 7 & 1); + pos += 1 - (*pos >> 7 & 1); + + scanline = pos - sprite_max_scanlines; + if (scanline >= max_scanline_count) + break; + + // find time that max sprites flag is set (or that it won't be set) + do + { + int relative = scanline - spr_ram[i]; + i += 4; + if ((unsigned)relative < (unsigned)height && !--remain) + { + // now use screwey search for 9th sprite + int offset = 0; + while (i < 0x100) + { + int relative = scanline - spr_ram[i + offset]; + // dprintf( "Checking sprite %d [%d]\n", i / 4, offset ); + i += 4; + offset = (offset + 1) & 3; + if ((unsigned)relative < (unsigned)height) + { + // dprintf( "sprite max on scanline %d\n", scanline ); + return scanline * scanline_len + (unsigned)i / 2; + } + } + break; + } + } while (i < 0x100); + scanline++; + } + + return 0; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppuImpl.hpp b/quicknes/source/quickerNES/core/ppu/ppuImpl.hpp new file mode 100644 index 00000000000..a3805899b2d --- /dev/null +++ b/quicknes/source/quickerNES/core/ppu/ppuImpl.hpp @@ -0,0 +1,263 @@ +#pragma once + +// NES PPU misc functions and setup +// Emu 0.7.0 + +#include + +namespace quickerNES +{ + +struct ppu_state_t +{ + uint8_t w2000; // control + uint8_t w2001; // control + uint8_t r2002; // status + uint8_t w2003; // sprite ram addr + uint8_t r2007; // vram read buffer + uint8_t second_write; // next write to $2005/$2006 is second since last $2002 read + uint16_t vram_addr; // loopy_v + uint16_t vram_temp; // loopy_t + uint8_t pixel_x; // fine-scroll (0-7) + uint8_t unused; + uint8_t palette[0x20]; // entries $10, $14, $18, $1c should be ignored + uint16_t decay_low; + uint16_t decay_high; + uint8_t open_bus; + uint8_t unused2[3]; +}; +static_assert(sizeof(ppu_state_t) == 20 + 0x20); + +class Ppu_Impl : public ppu_state_t +{ + public: + Ppu_Impl(); + ~Ppu_Impl(); + + void reset(bool full_reset); + + // Setup + const char *open_chr(const uint8_t *, long size); + void rebuild_chr(unsigned long begin, unsigned long end); + void close_chr(); + + static const uint16_t image_width = 256; + static const uint16_t image_height = 240; + static const uint16_t image_left = 8; + static const uint16_t buffer_width = image_width + 16; + static const uint16_t buffer_height = image_height; + enum + { + spr_ram_size = 0x100 + }; + + uint8_t *nt_banks[4]; + bool chr_is_writable; + long chr_size; + + int write_2007(int); + + // Host palette + static const uint8_t palette_increment = 64; + short *host_palette; + int palette_begin; + int max_palette_size; + int palette_size; // set after frame is rendered + + // Mapping + static const uint16_t vaddr_clock_mask = 0x1000; + void set_nt_banks(int bank0, int bank1, int bank2, int bank3); + void set_chr_bank(int addr, int size, long data); + void set_chr_bank_ex(int addr, int size, long data); + + // Nametable and CHR RAM + static const uint16_t nt_ram_size = 0x1000; + static const uint16_t chr_addr_size = 0x2000; + static const uint8_t bytes_per_tile = 16; + static const uint16_t chr_tile_count = chr_addr_size / bytes_per_tile; + static const uint8_t mini_offscreen_height = 16; // double-height sprite + + struct impl_t + { + uint8_t nt_ram[nt_ram_size]; + uint8_t chr_ram[chr_addr_size]; + union + { + uint32_t clip_buf[256 * 2]; + uint8_t mini_offscreen[buffer_width * mini_offscreen_height]; + }; + }; + impl_t *impl; + + long map_chr_addr_peek(unsigned a) const + { + return chr_pages[a / chr_page_size] + a; + } + + int peekaddr(int addr) + { + if (addr < 0x2000) + return chr_data[map_chr_addr_peek(addr)]; + else + return get_nametable(addr)[addr & 0x3ff]; + } + + static const uint16_t scanline_len = 341; + + uint8_t *getSpriteRAM() const { return (uint8_t *)spr_ram; } + uint16_t getSpriteRAMSize() const { return spr_ram_size; } + + uint8_t *getPaletteRAM() const { return (uint8_t *)palette; } + uint16_t getPaletteRAMSize() const { return sizeof(palette); } + + uint8_t spr_ram[spr_ram_size]; + void all_tiles_modified(); + + protected: + void begin_frame(); + void run_hblank(int); + int sprite_height() const { return (w2000 >> 2 & 8) + 8; } + + protected: // friend class Ppu; private: + int addr_inc; // pre-calculated $2007 increment (based on w2001 & 0x04) + int read_2007(int addr); + + static const uint16_t last_sprite_max_scanline = 240; + long recalc_sprite_max(int scanline); + int first_opaque_sprite_line(); + + protected: // friend class Ppu_Rendering; private: + unsigned long palette_offset; + int palette_changed; + void capture_palette(); + + bool any_tiles_modified; + void update_tiles(int first_tile); + + typedef uint32_t cache_t; + typedef cache_t cached_tile_t[4]; + cached_tile_t const &get_bg_tile(int index); + cached_tile_t const &get_sprite_tile(uint8_t const *sprite); + uint8_t *get_nametable(int addr) { return nt_banks[addr >> 10 & 3]; }; + + private: + static int map_palette(int addr); + int sprite_tile_index(uint8_t const *sprite) const; + + // Mapping + static const uint16_t chr_page_size = 0x400; + long chr_pages[chr_addr_size / chr_page_size]; + long chr_pages_ex[chr_addr_size / chr_page_size]; + long map_chr_addr(unsigned a) /*const*/ + { + if (!mmc24_enabled) + return chr_pages[a / chr_page_size] + a; + + int page = a >> 12 & 1; + int newval0 = (a & 0xff0) != 0xfd0; + int newval1 = (a & 0xff0) == 0xfe0; + + long ret; + if (mmc24_latched[page]) + ret = chr_pages_ex[a / chr_page_size] + a; + else + ret = chr_pages[a / chr_page_size] + a; + + mmc24_latched[page] &= newval0; + mmc24_latched[page] |= newval1; + + return ret; + } + + bool mmc24_enabled; + uint8_t mmc24_latched[2]; + + // CHR data + uint8_t const *chr_data; // points to chr ram when there is no read-only data + uint8_t *chr_ram; // always points to impl->chr_ram; makes write_2007() faster + uint8_t const *map_chr(int addr) { return &chr_data[map_chr_addr(addr)]; } + + // CHR cache + cached_tile_t *tile_cache; + cached_tile_t *flipped_tiles; + uint8_t *tile_cache_mem; + union + { + uint8_t modified_tiles[chr_tile_count / 8]; + uint32_t align_; + }; + + void update_tile(int index); +}; + +inline void Ppu_Impl::set_nt_banks(int bank0, int bank1, int bank2, int bank3) +{ + uint8_t *nt_ram = impl->nt_ram; + nt_banks[0] = &nt_ram[bank0 * 0x400]; + nt_banks[1] = &nt_ram[bank1 * 0x400]; + nt_banks[2] = &nt_ram[bank2 * 0x400]; + nt_banks[3] = &nt_ram[bank3 * 0x400]; +} + +inline int Ppu_Impl::map_palette(int addr) +{ + if ((addr & 3) == 0) + addr &= 0x0f; // 0x10, 0x14, 0x18, 0x1c map to 0x00, 0x04, 0x08, 0x0c + return addr & 0x1f; +} + +inline int Ppu_Impl::sprite_tile_index(uint8_t const *sprite) const +{ + int tile = sprite[1] + (w2000 << 5 & 0x100); + if (w2000 & 0x20) + tile = (tile & 1) * 0x100 + (tile & 0xfe); + return tile; +} + +inline int Ppu_Impl::write_2007(int data) +{ + int addr = vram_addr; + uint8_t *chr_ram = this->chr_ram; // pre-read + int changed = addr + addr_inc; + unsigned const divisor = bytes_per_tile * 8; + int mod_index = (unsigned)addr / divisor % (0x4000 / divisor); + vram_addr = changed; + changed ^= addr; + addr &= 0x3fff; + + // use index into modified_tiles [] since it's calculated sooner than addr is masked + if ((unsigned)mod_index < 0x2000 / divisor) + { + // Avoid overhead of checking for read-only CHR; if that is the case, + // this modification will be ignored. + int mod = modified_tiles[mod_index]; + chr_ram[addr] = data; + any_tiles_modified = true; + modified_tiles[mod_index] = mod | (1 << ((unsigned)addr / bytes_per_tile % 8)); + } + else if (addr < 0x3f00) + { + get_nametable(addr)[addr & 0x3ff] = data; + } + else + { + data &= 0x3f; + uint8_t &entry = palette[map_palette(addr)]; + int changed = entry ^ data; + entry = data; + if (changed) + palette_changed = 0x18; + } + + return changed; +} + +inline void Ppu_Impl::begin_frame() +{ + palette_changed = 0x18; + palette_size = 0; + palette_offset = palette_begin * 0x01010101; + addr_inc = w2000 & 4 ? 32 : 1; +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppuRendering.cpp b/quicknes/source/quickerNES/core/ppu/ppuRendering.cpp new file mode 100644 index 00000000000..5f89f8bcf45 --- /dev/null +++ b/quicknes/source/quickerNES/core/ppu/ppuRendering.cpp @@ -0,0 +1,506 @@ +// Emu 0.7.0. http://www.slack.net/~ant/ + +#include "ppuRendering.hpp" +#include +#include +#include + +/* Copyright (C) 2004-2006 Shay Green. This module is free software; you +can redistribute it and/or modify it under the terms of the GNU Lesser +General Public License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. This +module is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. You should have received a copy of the GNU Lesser General +Public License along with this module; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +namespace quickerNES +{ + +static unsigned zero = 0; // helps CodeWarrior optimizer when added to constants + +inline Ppu_Impl::cached_tile_t const & +Ppu_Impl::get_sprite_tile(uint8_t const *sprite) +{ + cached_tile_t *tiles = tile_cache; + if (sprite[2] & 0x40) + tiles = flipped_tiles; + int index = sprite_tile_index(sprite); + + // use index directly, since cached tile is same size as native tile + static_assert(sizeof(cached_tile_t) == bytes_per_tile); + return *(Ppu_Impl::cached_tile_t *)((uint8_t *)tiles + map_chr_addr(index * bytes_per_tile)); +} + +inline Ppu_Impl::cached_tile_t const &Ppu_Impl::get_bg_tile(int index) +{ + // use index directly, since cached tile is same size as native tile + static_assert(sizeof(cached_tile_t) == bytes_per_tile); + return *(Ppu_Impl::cached_tile_t *)((uint8_t *)tile_cache + map_chr_addr(index * bytes_per_tile)); +} + +// Fill + +void Ppu_Rendering::fill_background(int count) +{ + ptrdiff_t const next_line = scanline_row_bytes - image_width; + uint32_t *pixels = (uint32_t *)scanline_pixels; + + unsigned long fill = palette_offset; + if ((vram_addr & 0x3f00) == 0x3f00) + { + // PPU uses current palette entry if addr is within palette ram + int color = vram_addr & 0x1f; + if (!(color & 3)) + color &= 0x0f; + fill += color * 0x01010101; + } + + for (int n = count; n--;) + { + for (int n = image_width / 16; n--;) + { + pixels[0] = fill; + pixels[1] = fill; + pixels[2] = fill; + pixels[3] = fill; + pixels += 4; + } + pixels = (uint32_t *)((uint8_t *)pixels + next_line); + } +} + +void Ppu_Rendering::clip_left(int count) +{ + ptrdiff_t next_line = scanline_row_bytes; + uint8_t *p = scanline_pixels; + unsigned long fill = palette_offset; + + for (int n = count; n--;) + { + ((uint32_t *)p)[0] = fill; + ((uint32_t *)p)[1] = fill; + p += next_line; + } +} + +void Ppu_Rendering::save_left(int count) +{ + ptrdiff_t next_line = scanline_row_bytes; + uint8_t *in = scanline_pixels; + uint32_t *out = impl->clip_buf; + + for (int n = count; n--;) + { + unsigned long in0 = ((uint32_t *)in)[0]; + unsigned long in1 = ((uint32_t *)in)[1]; + in += next_line; + out[0] = in0; + out[1] = in1; + out += 2; + } +} + +void Ppu_Rendering::restore_left(int count) +{ + ptrdiff_t next_line = scanline_row_bytes; + uint8_t *out = scanline_pixels; + uint32_t *in = impl->clip_buf; + + for (int n = count; n--;) + { + unsigned long in0 = in[0]; + unsigned long in1 = in[1]; + in += 2; + ((uint32_t *)out)[0] = in0; + ((uint32_t *)out)[1] = in1; + out += next_line; + } +} + +// Background + +void Ppu_Rendering::draw_background_(int remain) +{ + // Draws 'remain' background scanlines. Does not modify vram_addr. + + int vram_addr = this->vram_addr & 0x7fff; + uint8_t *row_pixels = scanline_pixels - pixel_x; + int left_clip = (w2001 >> 1 & 1) ^ 1; + row_pixels += left_clip * 8; + do + { + // scanlines until next row + int height = 8 - (vram_addr >> 12); + if (height > remain) + height = remain; + + // handle hscroll change before next scanline + int hscroll_changed = (vram_addr ^ vram_temp) & 0x41f; + int addr = vram_addr; + if (hscroll_changed) + { + vram_addr ^= hscroll_changed; + height = 1; // hscroll will change after first line + } + remain -= height; + + // increment address for next row + vram_addr += height << 12; + if (vram_addr & 0x8000) + { + int y = (vram_addr + 0x20) & 0x3e0; + vram_addr &= 0x7fff & ~0x3e0; + if (y == 30 * 0x20) + y = 0x800; // toggle vertical nametable + vram_addr ^= y; + } + + // nametable change usually occurs in middle of row + uint8_t const *nametable = get_nametable(addr); + uint8_t const *nametable2 = get_nametable(addr ^ 0x400); + int count2 = addr & 31; + int count = 32 - count2 - left_clip; + // if ( pixel_x ) + count2++; + + uint8_t const *attr_table = &nametable[0x3c0 | (addr >> 4 & 0x38)]; + int bg_bank = (w2000 << 4) & 0x100; + addr += left_clip; + + // output pixels + ptrdiff_t const row_bytes = scanline_row_bytes; + uint8_t *pixels = row_pixels; + row_pixels += height * row_bytes; + + unsigned long const mask = 0x03030303 + zero; + unsigned long const attrib_factor = 0x04040404 + zero; + + const int fine_y = (height == 8) ? 0 : addr >> 12; + const int clipped = (height == 8) ? false : true; + addr &= 0x03ff; + if (height == 8) height -= fine_y & 1; + + while (true) + { + while (count--) + { + int attrib = attr_table[addr >> 2 & 0x07]; + attrib >>= (addr >> 4 & 4) | (addr & 2); + unsigned long offset = (attrib & 3) * attrib_factor + this->palette_offset; + + // draw one tile + cache_t const *lines = this->get_bg_tile(nametable[addr] + bg_bank); + uint8_t *p = pixels; + addr++; + pixels += 8; // next tile + + if (!clipped) + { + // optimal case: no clipping + for (int n = 4; n--;) + { + unsigned long line = *lines++; + ((uint32_t *)p)[0] = (line >> 4 & mask) + offset; + ((uint32_t *)p)[1] = (line & mask) + offset; + p += row_bytes; + ((uint32_t *)p)[0] = (line >> 6 & mask) + offset; + ((uint32_t *)p)[1] = (line >> 2 & mask) + offset; + p += row_bytes; + } + } + else + { + lines += fine_y >> 1; + + if (fine_y & 1) + { + unsigned long line = *lines++; + ((uint32_t *)p)[0] = (line >> 6 & mask) + offset; + ((uint32_t *)p)[1] = (line >> 2 & mask) + offset; + p += row_bytes; + } + + for (int n = height >> 1; n--;) + { + unsigned long line = *lines++; + ((uint32_t *)p)[0] = (line >> 4 & mask) + offset; + ((uint32_t *)p)[1] = (line & mask) + offset; + p += row_bytes; + ((uint32_t *)p)[0] = (line >> 6 & mask) + offset; + ((uint32_t *)p)[1] = (line >> 2 & mask) + offset; + p += row_bytes; + } + + if (height & 1) + { + unsigned long line = *lines; + ((uint32_t *)p)[0] = (line >> 4 & mask) + offset; + ((uint32_t *)p)[1] = (line & mask) + offset; + } + } + } + + count = count2; + count2 = 0; + addr -= 32; + attr_table = attr_table - nametable + nametable2; + nametable = nametable2; + if (!count) + break; + } + + } while (remain); +} + +// Sprites + +void Ppu_Rendering::draw_sprites_(int begin, int end) +{ + // Draws sprites on scanlines begin through end - 1. Handles clipping. + + int const sprite_height = this->sprite_height(); + int end_minus_one = end - 1; + int begin_minus_one = begin - 1; + int index = 0; + do + { + uint8_t const *sprite = &spr_ram[index]; + index += 4; + + // find if sprite is visible + int top_minus_one = sprite[0]; + int visible = end_minus_one - top_minus_one; + if (visible <= 0) + continue; // off bottom + + // quickly determine whether sprite is unclipped + int neg_vis = visible - sprite_height; + int neg_skip = top_minus_one - begin_minus_one; + if ((neg_skip | neg_vis) >= 0) // neg_skip >= 0 && neg_vis >= 0 + { + int const skip = 0; + int visible = sprite_height; + +#define CLIPPED 0 +#include "ppuSprites.hpp" + } + else + { + // clipped + if (neg_vis > 0) + visible -= neg_vis; + + if (neg_skip > 0) + neg_skip = 0; + visible += neg_skip; + + if (visible <= 0) + continue; // off top + + int skip = -neg_skip; + + // dprintf( "begin: %d, end: %d, top: %d, skip: %d, visible: %d\n", + // begin, end, top_minus_one + 1, skip, visible ); + +#define CLIPPED 1 +#include "ppuSprites.hpp" + } + } while (index < 0x100); +} + +void Ppu_Rendering::check_sprite_hit(int begin, int end) +{ + // Checks for sprite 0 hit on scanlines begin through end - 1. + // Updates sprite_hit_found. Background (but not sprites) must have + // already been rendered for the scanlines. + + // clip + int top = spr_ram[0] + 1; + int skip = begin - top; + if (skip < 0) + skip = 0; + + top += skip; + int visible = end - top; + if (visible <= 0) + return; // not visible + + int height = sprite_height(); + if (visible >= height) + { + visible = height; + sprite_hit_found = -1; // signal that no more hit checking will take place + } + + // pixels + ptrdiff_t next_row = this->scanline_row_bytes; + uint8_t const *bg = this->scanline_pixels + spr_ram[3] + (top - begin) * next_row; + cache_t const *lines = get_sprite_tile(spr_ram); + + // left edge clipping + int start_x = 0; + if (spr_ram[3] < 8 && (w2001 & 0x01e) != 0x1e) + { + if (spr_ram[3] == 0) + return; // won't hit + start_x = 8 - spr_ram[3]; + } + + // vertical flip + int final = skip + visible; + if (spr_ram[2] & 0x80) + { + skip += height - 1; + final = skip - visible; + } + + // check each line + unsigned long const mask = 0x01010101 + zero; + do + { + // get pixels for line + unsigned long line = lines[skip >> 1]; + unsigned long hit0 = ((uint32_t *)bg)[0]; + unsigned long hit1 = ((uint32_t *)bg)[1]; + bg += next_row; + line >>= skip << 1 & 2; + line |= line >> 1; + + // check for hits + hit0 = ((hit0 >> 1) | hit0) & (line >> 4); + hit1 = ((hit1 >> 1) | hit1) & line; + if ((hit0 | hit1) & mask) + { + // write to memory to avoid endian issues + uint32_t quads[3]; + quads[0] = hit0; + quads[1] = hit1; + + // find which pixel hit + int x = start_x; + do + { + if (((uint8_t *)quads)[x] & 1) + { + x += spr_ram[3]; + if (x >= 255) + break; // ignore right edge + + if (spr_ram[2] & 0x80) + skip = height - 1 - skip; // vertical flip + int y = spr_ram[0] + 1 + skip; + sprite_hit_found = y * scanline_len + x; + + return; + } + } while (x++ < 7); + } + if (skip > final) + skip -= 2; + skip++; + } while (skip != final); +} + +// Draw scanlines + +inline bool Ppu_Rendering::sprite_hit_possible(int scanline) const +{ + return !sprite_hit_found && spr_ram[0] <= scanline && (w2001 & 0x18) == 0x18; +} + +void Ppu_Rendering::draw_scanlines(int start, int count, uint8_t *pixels, long pitch, int mode) +{ + scanline_pixels = pixels + image_left; + scanline_row_bytes = pitch; + + int const obj_mask = 2; + int const bg_mask = 1; + int draw_mode = (w2001 >> 3) & 3; + int clip_mode = (~w2001 >> 1) & draw_mode; + + if (!(draw_mode & bg_mask)) + { + // no background + clip_mode |= bg_mask; // avoid unnecessary save/restore + if (mode & bg_mask) + fill_background(count); + } + + if (start == 0 && mode & 1) + memset(sprite_scanlines, max_sprites - sprite_limit, 240); + + if ((draw_mode &= mode)) + { + // sprites and/or background are being rendered + + if (any_tiles_modified && chr_is_writable) + { + any_tiles_modified = false; + update_tiles(0); + } + + if (draw_mode & bg_mask) + { + // dprintf( "bg %3d-%3d\n", start, start + count - 1 ); + draw_background_(count); + + if (clip_mode == bg_mask) + clip_left(count); + + if (sprite_hit_possible(start + count)) + check_sprite_hit(start, start + count); + } + + if (draw_mode & obj_mask) + { + // when clipping just sprites, save left strip then restore after drawing them + if (clip_mode == obj_mask) + save_left(count); + + // dprintf( "obj %3d-%3d\n", start, start + count - 1 ); + + draw_sprites_(start, start + count); + + if (clip_mode == obj_mask) + restore_left(count); + + if (clip_mode == (obj_mask | bg_mask)) + clip_left(count); + } + } + + scanline_pixels = NULL; +} + +void Ppu_Rendering::draw_background(int start, int count) +{ + // always capture palette at least once per frame + if ((start + count >= 240 && !palette_size) || (w2001 & palette_changed)) + { + palette_changed = false; + capture_palette(); + } + + if (host_pixels) + { + draw_scanlines(start, count, host_pixels + host_row_bytes * start, host_row_bytes, 1); + } + else if (sprite_hit_possible(start + count)) + { + // not rendering, but still handle sprite hit using mini graphics buffer + int y = spr_ram[0] + 1; + int skip = std::min(count, std::max(y - start, 0)); + int visible = std::min(count - skip, sprite_height()); + + if (visible > 0) + { + run_hblank(skip); + draw_scanlines(start + skip, visible, impl->mini_offscreen, buffer_width, 3); + } + } +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppuRendering.hpp b/quicknes/source/quickerNES/core/ppu/ppuRendering.hpp new file mode 100644 index 00000000000..31ac831b2e9 --- /dev/null +++ b/quicknes/source/quickerNES/core/ppu/ppuRendering.hpp @@ -0,0 +1,64 @@ +#pragma once + +// NES PPU emulator graphics rendering +// Emu 0.7.0 + +#include "ppuImpl.hpp" + +namespace quickerNES +{ + +class Ppu_Rendering : public Ppu_Impl +{ + typedef Ppu_Impl base; + + public: + Ppu_Rendering(); + + int sprite_limit; + + uint8_t *host_pixels; + long host_row_bytes; + + protected: + long sprite_hit_found; // -1: sprite 0 didn't hit, 0: no hit so far, > 0: y * 341 + x + void draw_background(int start, int count); + void draw_sprites(int start, int count); + + private: + void draw_scanlines(int start, int count, uint8_t *pixels, long pitch, int mode); + void draw_background_(int count); + + // destination for draw functions; avoids extra parameters + uint8_t *scanline_pixels; + long scanline_row_bytes; + + // fill/copy + void fill_background(int count); + void clip_left(int count); + void save_left(int count); + void restore_left(int count); + + // sprites + enum + { + max_sprites = 64 + }; + uint8_t sprite_scanlines[image_height]; // number of sprites on each scanline + void draw_sprites_(int start, int count); + bool sprite_hit_possible(int scanline) const; + void check_sprite_hit(int begin, int end); +}; + +inline Ppu_Rendering::Ppu_Rendering() +{ + sprite_limit = 8; + host_pixels = nullptr; +} + +inline void Ppu_Rendering::draw_sprites(int start, int count) +{ + draw_scanlines(start, count, host_pixels + host_row_bytes * start, host_row_bytes, 2); +} + +} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppuSprites.hpp b/quicknes/source/quickerNES/core/ppu/ppuSprites.hpp new file mode 100644 index 00000000000..737b92b6099 --- /dev/null +++ b/quicknes/source/quickerNES/core/ppu/ppuSprites.hpp @@ -0,0 +1,132 @@ +int sprite_2 = sprite[2]; + +// pixels +ptrdiff_t next_row = this->scanline_row_bytes; +uint8_t *out = this->scanline_pixels + sprite[3] + + (top_minus_one + skip - begin_minus_one) * next_row; +cache_t const *lines = get_sprite_tile(sprite); + +int dir = 1; +uint8_t *scanlines = this->sprite_scanlines + 1 + top_minus_one + skip; + +if (sprite_2 & 0x80) +{ + // vertical flip + out -= next_row; + out += visible * next_row; + next_row = -next_row; + dir = -1; + scanlines += visible - 1; +#if CLIPPED + int height = this->sprite_height(); + skip = height - skip - visible; +#endif +} + +// attributes +unsigned long offset = (sprite_2 & 3) * 0x04040404 + (this->palette_offset + 0x10101010); + +unsigned long const mask = 0x03030303 + zero; +unsigned long const maskgen = 0x80808080 + zero; + +#define DRAW_PAIR(shift) \ + { \ + int sprite_count = *scanlines; \ + CALC_FOUR(((uint32_t *)out)[0], (line >> (shift + 4)), out0) \ + CALC_FOUR(((uint32_t *)out)[1], (line >> shift), out1) \ + if (sprite_count < this->max_sprites) \ + { \ + ((uint32_t *)out)[0] = out0; \ + ((uint32_t *)out)[1] = out1; \ + } \ + if (CLIPPED) visible--; \ + out += next_row; \ + *scanlines = sprite_count + 1; \ + scanlines += dir; \ + if (CLIPPED && !visible) break; \ + } + +if (!(sprite_2 & 0x20)) +{ + // front + unsigned long const maskgen2 = 0x7f7f7f7f + zero; + +#define CALC_FOUR(in, line, out) \ + unsigned long out; \ + { \ + unsigned long bg = in; \ + unsigned long sp = line & mask; \ + unsigned long bgm = maskgen2 + ((bg >> 4) & mask); \ + unsigned long spm = (maskgen - sp) & maskgen2; \ + unsigned long m = (bgm & spm) >> 2; \ + out = (bg & ~m) | ((sp + offset) & m); \ + } + +#if CLIPPED + lines += skip >> 1; + unsigned long line = *lines++; + if (skip & 1) + goto front_skip; + + while (true) + { + DRAW_PAIR(0) + front_skip: + DRAW_PAIR(2) + line = *lines++; + } +#else + for (int n = visible >> 1; n--;) + { + unsigned long line = *lines++; + DRAW_PAIR(0) + DRAW_PAIR(2) + } +#endif + +#undef CALC_FOUR +} +else +{ + // behind + unsigned long const omask = 0x20202020 + zero; + unsigned long const bg_or = 0xc3c3c3c3 + zero; + +#define CALC_FOUR(in, line, out) \ + unsigned long out; \ + { \ + unsigned long bg = in; \ + unsigned long sp = line & mask; \ + unsigned long bgm = maskgen - (bg & mask); \ + unsigned long spm = maskgen - sp; \ + out = (bg & (bgm | bg_or)) | (spm & omask) | \ + (((offset & spm) + sp) & ~(bgm >> 2)); \ + } + +#if CLIPPED + lines += skip >> 1; + unsigned long line = *lines++; + if (skip & 1) + goto back_skip; + + while (true) + { + DRAW_PAIR(0) + back_skip: + DRAW_PAIR(2) + line = *lines++; + } +#else + for (int n = visible >> 1; n--;) + { + unsigned long line = *lines++; + DRAW_PAIR(0) + DRAW_PAIR(2) + } +#endif + +#undef CALC_FOUR +} + +#undef CLIPPED +#undef DRAW_PAIR diff --git a/quicknes/source/quickerNES/meson.build b/quicknes/source/quickerNES/meson.build new file mode 100644 index 00000000000..6136d3076e1 --- /dev/null +++ b/quicknes/source/quickerNES/meson.build @@ -0,0 +1,47 @@ +# quickerNES Core sources + +quickerNESAPUSrc = [ + 'core/apu/apu.cpp', + 'core/apu/oscs.cpp', + 'core/apu/buffer.cpp', + 'core/apu/blipBuffer.cpp', + 'core/apu/NESEffectsBuffer.cpp', + 'core/apu/effectsBuffer.cpp', + 'core/apu/multiBuffer.cpp', + 'core/apu/namco/apu_namco.cpp', + 'core/apu/vrc6/apu_vrc6.cpp', + 'core/apu/vrc7/emu2413.cpp', + 'core/apu/vrc7/emu2413_state.cpp', + 'core/apu/vrc7/apu_vrc7.cpp', + 'core/apu/fme7/apu_fme7.cpp', +] + +quickerNESPPUSrc = [ + 'core/ppu/ppu.cpp', + 'core/ppu/ppuImpl.cpp', + 'core/ppu/ppuRendering.cpp', +] + +quickerNESSrc = quickerNESAPUSrc + quickerNESPPUSrc + [ + 'core/mappers/mapper.cpp', + 'core/emu.cpp', + 'core/cpu.cpp' +] + +quickerNESCompileArgs = [ ] + +# Checking for arkanoid input support +if get_option('enableArkanoidInputs') == true + quickerNESCompileArgs += '-D_QUICKERNES_SUPPORT_ARKANOID_INPUTS' +endif + +# quickerNES Core Configuration + + quickerNESDependency = declare_dependency( + compile_args : quickerNESCompileArgs, + include_directories : include_directories(['.', '..']), + sources : [ quickerNESSrc ], + dependencies : [ + dependency('sdl2'), + ] + ) \ No newline at end of file diff --git a/quicknes/source/quickerNES/nesInstance.hpp b/quicknes/source/quickerNES/nesInstance.hpp new file mode 100644 index 00000000000..e0ff0f02f72 --- /dev/null +++ b/quicknes/source/quickerNES/nesInstance.hpp @@ -0,0 +1,79 @@ +#pragma once + +#include "../nesInstanceBase.hpp" +#include "core/emu.hpp" + +typedef quickerNES::Emu emulator_t; + +class NESInstance final : public NESInstanceBase +{ + public: + NESInstance(const nlohmann::json &config) : NESInstanceBase(config) + { + _nes.setControllerType(quickerNES::Core::controllerType_t::joypad_t); + if (_inputParser->_controller1Type == jaffar::InputParser::controller_t::arkanoidFamicom) _nes.setControllerType(quickerNES::Core::controllerType_t::arkanoidFamicom_t); + if (_inputParser->_controller1Type == jaffar::InputParser::controller_t::arkanoidNES) _nes.setControllerType(quickerNES::Core::controllerType_t::arkanoidNES_t); + } + + uint8_t *getLowMem() const override { return _nes.get_low_mem(); }; + size_t getLowMemSize() const override { return _nes.get_low_mem_size(); }; + + uint8_t *getWorkMem() const { return _nes.high_mem(); }; + size_t getWorkMemSize() const { return _nes.get_high_mem_size(); }; + + uint8_t *getNametableMem() const { return _nes.nametable_mem(); }; + size_t getNametableMemSize() const { return _nes.nametable_size(); }; + + uint8_t *getSpriteMem() const { return _nes.spr_mem(); }; + size_t getSpriteMemSize() const { return _nes.spr_mem_size(); }; + + uint8_t *getCHRMem() const { return _nes.chr_mem(); }; + size_t getCHRMemSize() const { return _nes.chr_size(); }; + + void serializeState(jaffarCommon::serializer::Base &serializer) const override { _nes.serializeState(serializer); } + void deserializeState(jaffarCommon::deserializer::Base &deserializer) override { _nes.deserializeState(deserializer); } + + std::string getCoreName() const override { return "QuickerNES"; } + + void doSoftReset() override { _nes.reset(false); } + void doHardReset() override { _nes.reset(true); } + + void *getInternalEmulatorPointer() override { return &_nes; } + + inline size_t getFullStateSize() const override + { + jaffarCommon::serializer::Contiguous serializer; + serializeState(serializer); + return serializer.getOutputSize(); + } + + inline size_t getDifferentialStateSize() const override + { + jaffarCommon::serializer::Differential serializer; + serializeState(serializer); + return serializer.getOutputSize(); + } + + void setNTABBlockSize(const size_t size) override { _nes.setNTABBlockSize(size); } + + void advanceState(const jaffar::input_t &input) override + { + if (_doRendering == true) _nes.emulate_frame(input.port1, input.port2, input.arkanoidLatch, input.arkanoidFire); + if (_doRendering == false) _nes.emulate_skip_frame(input.port1, input.port2, input.arkanoidLatch, input.arkanoidFire); + } + + protected: + bool loadROMImpl(const uint8_t *romData, const size_t romSize) override + { + // Loading rom data + _nes.load_ines(romData); + return true; + } + + void enableStateBlockImpl(const std::string &block) override { _nes.enableStateBlock(block); }; + void disableStateBlockImpl(const std::string &block) override { _nes.disableStateBlock(block); }; + + private: + // Emulator instance + emulator_t _nes; +}; diff --git a/quicknes/source/tester.cpp b/quicknes/source/tester.cpp new file mode 100644 index 00000000000..5b89b13507d --- /dev/null +++ b/quicknes/source/tester.cpp @@ -0,0 +1,286 @@ +#include "nesInstance.hpp" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +int main(int argc, char *argv[]) +{ + // Parsing command line arguments + argparse::ArgumentParser program("tester", "1.0"); + + program.add_argument("scriptFile") + .help("Path to the test script file to run.") + .required(); + + program.add_argument("--cycleType") + .help("Specifies the emulation actions to be performed per each input. Possible values: 'Simple': performs only advance state, 'Rerecord': performs load/advance/save, and 'Full': performs load/advance/save/advance.") + .default_value(std::string("Simple")); + + program.add_argument("--hashOutputFile") + .help("Path to write the hash output to.") + .default_value(std::string("")); + + // Try to parse arguments + try + { + program.parse_args(argc, argv); + } + catch (const std::runtime_error &err) + { + JAFFAR_THROW_LOGIC("%s\n%s", err.what(), program.help().str().c_str()); + } + + // Getting test script file path + std::string scriptFilePath = program.get("scriptFile"); + + // Getting path where to save the hash output (if any) + std::string hashOutputFile = program.get("--hashOutputFile"); + + // Getting reproduce flag + std::string cycleType = program.get("--cycleType"); + + // Loading script file + std::string scriptJsonRaw; + if (jaffarCommon::file::loadStringFromFile(scriptJsonRaw, scriptFilePath) == false) JAFFAR_THROW_LOGIC("Could not find/read script file: %s\n", scriptFilePath.c_str()); + + // Parsing script + const auto scriptJson = nlohmann::json::parse(scriptJsonRaw); + + // Getting rom file path + if (scriptJson.contains("Rom File") == false) JAFFAR_THROW_LOGIC("Script file missing 'Rom File' entry\n"); + if (scriptJson["Rom File"].is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Rom File' entry is not a string\n"); + std::string romFilePath = scriptJson["Rom File"].get(); + + // Getting initial state file path + if (scriptJson.contains("Initial State File") == false) JAFFAR_THROW_LOGIC("Script file missing 'Initial State File' entry\n"); + if (scriptJson["Initial State File"].is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Initial State File' entry is not a string\n"); + std::string initialStateFilePath = scriptJson["Initial State File"].get(); + + // Getting sequence file path + if (scriptJson.contains("Sequence File") == false) JAFFAR_THROW_LOGIC("Script file missing 'Sequence File' entry\n"); + if (scriptJson["Sequence File"].is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Sequence File' entry is not a string\n"); + std::string sequenceFilePath = scriptJson["Sequence File"].get(); + + // Getting expected ROM SHA1 hash + if (scriptJson.contains("Expected ROM SHA1") == false) JAFFAR_THROW_LOGIC("Script file missing 'Expected ROM SHA1' entry\n"); + if (scriptJson["Expected ROM SHA1"].is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Expected ROM SHA1' entry is not a string\n"); + std::string expectedROMSHA1 = scriptJson["Expected ROM SHA1"].get(); + + // Parsing disabled blocks in lite state serialization + std::vector stateDisabledBlocks; + std::string stateDisabledBlocksOutput; + if (scriptJson.contains("Disable State Blocks") == false) JAFFAR_THROW_LOGIC("Script file missing 'Disable State Blocks' entry\n"); + if (scriptJson["Disable State Blocks"].is_array() == false) JAFFAR_THROW_LOGIC("Script file 'Disable State Blocks' is not an array\n"); + for (const auto &entry : scriptJson["Disable State Blocks"]) + { + if (entry.is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Disable State Blocks' entry is not a string\n"); + stateDisabledBlocks.push_back(entry.get()); + stateDisabledBlocksOutput += entry.get() + std::string(" "); + } + + // Getting Controller 1 type + if (scriptJson.contains("Controller 1 Type") == false) JAFFAR_THROW_LOGIC("Script file missing 'Controller 1 Type' entry\n"); + if (scriptJson["Controller 1 Type"].is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Controller 1 Type' entry is not a string\n"); + std::string controller1Type = scriptJson["Controller 1 Type"].get(); + + // Getting Controller 2 type + if (scriptJson.contains("Controller 2 Type") == false) JAFFAR_THROW_LOGIC("Script file missing 'Controller 2 Type' entry\n"); + if (scriptJson["Controller 2 Type"].is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Controller 2 Type' entry is not a string\n"); + std::string controller2Type = scriptJson["Controller 2 Type"].get(); + + // Getting differential compression configuration + if (scriptJson.contains("Differential Compression") == false) JAFFAR_THROW_LOGIC("Script file missing 'Differential Compression' entry\n"); + if (scriptJson["Differential Compression"].is_object() == false) JAFFAR_THROW_LOGIC("Script file 'Differential Compression' entry is not a key/value object\n"); + const auto &differentialCompressionJs = scriptJson["Differential Compression"]; + + if (differentialCompressionJs.contains("Enabled") == false) JAFFAR_THROW_LOGIC("Script file missing 'Differential Compression / Enabled' entry\n"); + if (differentialCompressionJs["Enabled"].is_boolean() == false) JAFFAR_THROW_LOGIC("Script file 'Differential Compression / Enabled' entry is not a boolean\n"); + const auto differentialCompressionEnabled = differentialCompressionJs["Enabled"].get(); + + if (differentialCompressionJs.contains("Max Differences") == false) JAFFAR_THROW_LOGIC("Script file missing 'Differential Compression / Max Differences' entry\n"); + if (differentialCompressionJs["Max Differences"].is_number() == false) JAFFAR_THROW_LOGIC("Script file 'Differential Compression / Max Differences' entry is not a number\n"); + const auto differentialCompressionMaxDifferences = differentialCompressionJs["Max Differences"].get(); + + if (differentialCompressionJs.contains("Use Zlib") == false) JAFFAR_THROW_LOGIC("Script file missing 'Differential Compression / Use Zlib' entry\n"); + if (differentialCompressionJs["Use Zlib"].is_boolean() == false) JAFFAR_THROW_LOGIC("Script file 'Differential Compression / Use Zlib' entry is not a boolean\n"); + const auto differentialCompressionUseZlib = differentialCompressionJs["Use Zlib"].get(); + + // Creating emulator instance + NESInstance e(scriptJson); + + // Loading ROM File + std::string romFileData; + if (jaffarCommon::file::loadStringFromFile(romFileData, romFilePath) == false) JAFFAR_THROW_LOGIC("Could not rom file: %s\n", romFilePath.c_str()); + e.loadROM((uint8_t *)romFileData.data(), romFileData.size()); + + // Calculating ROM SHA1 + auto romSHA1 = jaffarCommon::hash::getSHA1String(romFileData); + + // If an initial state is provided, load it now + if (initialStateFilePath != "") + { + std::string stateFileData; + if (jaffarCommon::file::loadStringFromFile(stateFileData, initialStateFilePath) == false) JAFFAR_THROW_LOGIC("Could not initial state file: %s\n", initialStateFilePath.c_str()); + jaffarCommon::deserializer::Contiguous d(stateFileData.data()); + e.deserializeState(d); + } + + // Disabling requested blocks from state serialization + for (const auto &block : stateDisabledBlocks) e.disableStateBlock(block); + + // Disable rendering + e.disableRendering(); + + // Getting full state size + const auto stateSize = e.getFullStateSize(); + + // Getting differential state size + const auto fixedDiferentialStateSize = e.getDifferentialStateSize(); + const auto fullDifferentialStateSize = fixedDiferentialStateSize + differentialCompressionMaxDifferences; + + // Checking with the expected SHA1 hash + if (romSHA1 != expectedROMSHA1) JAFFAR_THROW_LOGIC("Wrong ROM SHA1. Found: '%s', Expected: '%s'\n", romSHA1.c_str(), expectedROMSHA1.c_str()); + + // Loading sequence file + std::string sequenceRaw; + if (jaffarCommon::file::loadStringFromFile(sequenceRaw, sequenceFilePath) == false) JAFFAR_THROW_LOGIC("[ERROR] Could not find or read from input sequence file: %s\n", sequenceFilePath.c_str()); + + // Building sequence information + const auto sequence = jaffarCommon::string::split(sequenceRaw, '\n'); + + // Getting sequence lenght + const auto sequenceLength = sequence.size(); + + // Getting input parser from the emulator + const auto inputParser = e.getInputParser(); + + // Getting decoded emulator input for each entry in the sequence + std::vector decodedSequence; + for (const auto &inputString : sequence) decodedSequence.push_back(inputParser->parseInputString(inputString)); + + // Getting emulation core name + std::string emulationCoreName = e.getCoreName(); + + // Printing test information + printf("[] -----------------------------------------\n"); + printf("[] Running Script: '%s'\n", scriptFilePath.c_str()); + printf("[] Cycle Type: '%s'\n", cycleType.c_str()); + printf("[] Emulation Core: '%s'\n", emulationCoreName.c_str()); + printf("[] ROM File: '%s'\n", romFilePath.c_str()); + printf("[] ROM Hash: 'SHA1: %s'\n", romSHA1.c_str()); + printf("[] Sequence File: '%s'\n", sequenceFilePath.c_str()); + printf("[] Sequence Length: %lu\n", sequenceLength); + printf("[] State Size: %lu bytes - Disabled Blocks: [ %s ]\n", stateSize, stateDisabledBlocksOutput.c_str()); + printf("[] Use Differential Compression: %s\n", differentialCompressionEnabled ? "true" : "false"); + if (differentialCompressionEnabled == true) + { + printf("[] + Max Differences: %lu\n", differentialCompressionMaxDifferences); + printf("[] + Use Zlib: %s\n", differentialCompressionUseZlib ? "true" : "false"); + printf("[] + Fixed Diff State Size: %lu\n", fixedDiferentialStateSize); + printf("[] + Full Diff State Size: %lu\n", fullDifferentialStateSize); + } + printf("[] ********** Running Test **********\n"); + + fflush(stdout); + + // Serializing initial state + auto currentState = (uint8_t *)malloc(stateSize); + { + jaffarCommon::serializer::Contiguous cs(currentState); + e.serializeState(cs); + } + + // Serializing differential state data (in case it's used) + uint8_t *differentialStateData = nullptr; + size_t differentialStateMaxSizeDetected = 0; + + // Allocating memory for differential data and performing the first serialization + if (differentialCompressionEnabled == true) + { + differentialStateData = (uint8_t *)malloc(fullDifferentialStateSize); + auto s = jaffarCommon::serializer::Differential(differentialStateData, fullDifferentialStateSize, currentState, stateSize, differentialCompressionUseZlib); + e.serializeState(s); + differentialStateMaxSizeDetected = s.getOutputSize(); + } + + // Check whether to perform each action + bool doPreAdvance = cycleType == "Full"; + bool doDeserialize = cycleType == "Rerecord" || cycleType == "Full"; + bool doSerialize = cycleType == "Rerecord" || cycleType == "Full"; + + // Actually running the sequence + auto t0 = std::chrono::high_resolution_clock::now(); + for (const auto &input : decodedSequence) + { + if (doPreAdvance == true) e.advanceState(input); + + if (doDeserialize == true) + { + if (differentialCompressionEnabled == true) + { + jaffarCommon::deserializer::Differential d(differentialStateData, fullDifferentialStateSize, currentState, stateSize, differentialCompressionUseZlib); + e.deserializeState(d); + } + + if (differentialCompressionEnabled == false) + { + jaffarCommon::deserializer::Contiguous d(currentState, stateSize); + e.deserializeState(d); + } + } + + e.advanceState(input); + + if (doSerialize == true) + { + if (differentialCompressionEnabled == true) + { + auto s = jaffarCommon::serializer::Differential(differentialStateData, fullDifferentialStateSize, currentState, stateSize, differentialCompressionUseZlib); + e.serializeState(s); + differentialStateMaxSizeDetected = std::max(differentialStateMaxSizeDetected, s.getOutputSize()); + } + + if (differentialCompressionEnabled == false) + { + auto s = jaffarCommon::serializer::Contiguous(currentState, stateSize); + e.serializeState(s); + } + } + } + auto tf = std::chrono::high_resolution_clock::now(); + + // Calculating running time + auto dt = std::chrono::duration_cast(tf - t0).count(); + double elapsedTimeSeconds = (double)dt * 1.0e-9; + + // Calculating final state hash + auto result = jaffarCommon::hash::calculateMetroHash(e.getLowMem(), e.getLowMemSize()); + + // Creating hash string + char hashStringBuffer[256]; + sprintf(hashStringBuffer, "0x%lX%lX", result.first, result.second); + + // Printing time information + printf("[] Elapsed time: %3.3fs\n", (double)dt * 1.0e-9); + printf("[] Performance: %.3f inputs / s\n", (double)sequenceLength / elapsedTimeSeconds); + printf("[] Final State Hash: %s\n", hashStringBuffer); + if (differentialCompressionEnabled == true) + { + printf("[] Differential State Max Size Detected: %lu\n", differentialStateMaxSizeDetected); + } + // If saving hash, do it now + if (hashOutputFile != "") jaffarCommon::file::saveStringToFile(std::string(hashStringBuffer), hashOutputFile.c_str()); + + // If reached this point, everything ran ok + return 0; +} diff --git a/quicknes/tests/.gitignore b/quicknes/tests/.gitignore new file mode 100644 index 00000000000..0a169d860ab --- /dev/null +++ b/quicknes/tests/.gitignore @@ -0,0 +1,9 @@ +*.nes +*.Identifier +*.zip +*.fds +test.sol +*.hash +*.out +*.sh + diff --git a/quicknes/tests/README.md b/quicknes/tests/README.md new file mode 100644 index 00000000000..9b501b7702b --- /dev/null +++ b/quicknes/tests/README.md @@ -0,0 +1,20 @@ +Some of the sequences hosted in this folder correspond to movies published in tasvideos.org under the Creative Commons 2.0 license. These movies were created by the author of this code (Sergio Martin, a.k.a. eien86) and collaborators, unless otherwise stated. + +Notes: + +Sprilo is a open-source free game. This rom was obtained from + - https://itch.io/jam/game-off-2017 + - https://github.com/cbrwn/gameoff + - We use the movie https://tasvideos.org/3557G by MrTASer distributed under the CC2.0 license + +Nova The Squirrel is a open-source free game. This rom was obtained from + - https://github.com/NovaSquirrel/NovaTheSquirrel + - https://novasquirrel.itch.io/nova-the-squirrel + - We use the movie https://tasvideos.org/5246M by Cephla distributed under the CC2.0 license + +For Saiyuuki World + - We use the movie https://tasvideos.org/4422M by aiqiyou & J.Y distributed under the CC2.0 license + + For Metroid + - We use part of the movie https://tasvideos.org/3666M by The8bitbeast distributed under the CC2.0 license + \ No newline at end of file diff --git a/quicknes/tests/arkanoid.arkNESController.sol b/quicknes/tests/arkanoid.arkNESController.sol new file mode 100644 index 00000000000..2dfbcf6df75 --- /dev/null +++ b/quicknes/tests/arkanoid.arkNESController.sol @@ -0,0 +1,9342 @@ +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,F| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 73,.| +|..| 16,F| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 149,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 144,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 146,.| +|..| 16,.| +|..| 135,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 72,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 23,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 141,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 59,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 84,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 78,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 85,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 78,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 35,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 132,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 33,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 86,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 158,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 52,.| +|..| 125,.| +|..| 16,F| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 131,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 36,.| +|..| 30,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 18,.| +|..| 160,.| +|..| 160,.| +|..| 160,.| +|..| 160,.| +|..| 160,.| +|..| 18,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 136,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 130,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 155,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 116,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 149,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 160,.| +|..| 42,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 52,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 106,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 37,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 104,.| +|..| 160,.| +|..| 19,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 61,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 117,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 36,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 75,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 62,.| +|..| 16,F| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 113,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 91,.| +|..| 16,.| +|..| 160,.| +|..| 160,.| +|..| 160,.| +|..| 160,.| +|..| 160,.| +|..| 16,.| +|..| 160,.| +|..| 80,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 134,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 116,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 55,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 160,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 79,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 114,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 80,.| +|..| 75,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 80,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 93,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 84,.| +|..| 16,F| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 136,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 63,.| +|..| 76,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 112,.| +|..| 16,.| +|..| 16,.| +|..| 21,.| +|..| 16,.| +|..| 160,.| +|..| 160,.| +|..| 35,.| +|..| 32,.| +|..| 160,.| +|..| 160,.| +|..| 23,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 94,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 128,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 56,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 141,.| +|..| 107,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 120,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 111,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 153,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 151,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 81,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 43,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 41,.| +|..| 44,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 53,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 46,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 127,.| +|..| 16,F| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 108,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 52,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 128,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 133,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 127,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 86,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 117,.| +|..| 16,.| +|..| 16,.| +|..| 127,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 156,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 46,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 24,.| +|..| 32,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 18,.| +|..| 91,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 92,.| +|..| 16,.| +|..| 121,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 90,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 47,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 94,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 100,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 57,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 141,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 49,.| +|..| 16,F| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 56,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 112,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 81,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 145,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 51,.| +|..| 48,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 73,.| +|..| 16,F| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 125,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 131,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 128,.| +|..| 16,.| +|..| 160,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 29,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 21,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 35,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 19,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 146,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 36,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 22,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 160,.| +|..| 25,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 132,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 126,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 155,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 47,.| +|..| 16,F| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 33,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 96,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 57,.| +|..| 16,F| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 149,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 112,.| +|..| 16,.| +|..| 131,.| +|..| 133,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 51,.| +|..| 31,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 146,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 132,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 132,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 29,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 44,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 17,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 17,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 18,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 20,.| +|..| 19,.| +|..| 68,.| +|..| 16,F| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 137,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 77,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 112,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 33,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 160,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 16,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| +|..| 80,.| \ No newline at end of file diff --git a/quicknes/tests/arkanoid.arkNESController.test b/quicknes/tests/arkanoid.arkNESController.test new file mode 100644 index 00000000000..ea420048298 --- /dev/null +++ b/quicknes/tests/arkanoid.arkNESController.test @@ -0,0 +1,15 @@ +{ + "Rom File": "roms/Arkanoid (U) [!].nes", + "Expected ROM SHA1": "B2B30C4F30DD853C215C17B0C67CFE63D61A3062", + "Initial State File": "", + "Sequence File": "arkanoid.arkNESController.sol", + "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "MAPR", "CTRL", "APUR" ], + "Controller 1 Type": "ArkanoidNES", + "Controller 2 Type": "None", + "Differential Compression": + { + "Enabled": false, + "Max Differences": 2200, + "Use Zlib": true + } +} diff --git a/quicknes/tests/arkanoid.warpless.sol b/quicknes/tests/arkanoid.warpless.sol new file mode 100644 index 00000000000..ebced9a29bf --- /dev/null +++ b/quicknes/tests/arkanoid.warpless.sol @@ -0,0 +1,39431 @@ +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|........| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R....| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|...R....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|....SsBA| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....SsBA| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....SsBA| +|..|....SsBA| +|..|....SsBA| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| diff --git a/quicknes/tests/arkanoid.warpless.test b/quicknes/tests/arkanoid.warpless.test new file mode 100644 index 00000000000..86e3bc13717 --- /dev/null +++ b/quicknes/tests/arkanoid.warpless.test @@ -0,0 +1,15 @@ +{ + "Rom File": "roms/Arkanoid (U) [!].nes", + "Expected ROM SHA1": "B2B30C4F30DD853C215C17B0C67CFE63D61A3062", + "Initial State File": "", + "Sequence File": "arkanoid.warpless.sol", + "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "MAPR", "CTRL", "APUR" ], + "Controller 1 Type": "Joypad", + "Controller 2 Type": "None", + "Differential Compression": + { + "Enabled": false, + "Max Differences": 2200, + "Use Zlib": true + } +} diff --git a/quicknes/tests/arkanoid.warps.sol b/quicknes/tests/arkanoid.warps.sol new file mode 100644 index 00000000000..df315a19a54 --- /dev/null +++ b/quicknes/tests/arkanoid.warps.sol @@ -0,0 +1,15806 @@ +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|........| +|..|.......A| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|........| +|..|.......A| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......BA| +|..|.....sBA| +|..|......BA| +|..|.....sBA| +|..|......BA| +|..|.....sBA| +|..|......BA| +|..|.....sBA| +|..|......BA| +|..|.....sBA| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..LR....| +|..|..LR....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..LR....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| \ No newline at end of file diff --git a/quicknes/tests/arkanoid.warps.test b/quicknes/tests/arkanoid.warps.test new file mode 100644 index 00000000000..3c393f673dd --- /dev/null +++ b/quicknes/tests/arkanoid.warps.test @@ -0,0 +1,15 @@ +{ + "Rom File": "roms/Arkanoid (U) [!].nes", + "Expected ROM SHA1": "B2B30C4F30DD853C215C17B0C67CFE63D61A3062", + "Initial State File": "", + "Sequence File": "arkanoid.warps.sol", + "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "MAPR", "CTRL", "APUR" ], + "Controller 1 Type": "Joypad", + "Controller 2 Type": "None", + "Differential Compression": + { + "Enabled": false, + "Max Differences": 2200, + "Use Zlib": true + } +} diff --git a/quicknes/tests/arkanoid2.arkFamicomController.sol b/quicknes/tests/arkanoid2.arkFamicomController.sol new file mode 100644 index 00000000000..4bcaf49413b --- /dev/null +++ b/quicknes/tests/arkanoid2.arkFamicomController.sol @@ -0,0 +1,3472 @@ +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|.....s..|.......| 80,.| +|..|........|.......| 80,.| +|..|.....s..|.......| 80,.| +|..|........|.......| 80,.| +|..|.....s..|.......| 80,.| +|..|........|.......| 80,.| +|..|.....s..|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,F| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,F| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,F| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 108,.| +|..|........|.......| 108,.| +|..|........|.......| 108,.| +|..|........|.......| 108,.| +|..|........|.......| 108,.| +|..|........|.......| 108,.| +|..|........|.......| 109,.| +|..|........|.......| 111,.| +|..|........|.......| 114,.| +|..|........|.......| 115,.| +|..|........|.......| 116,.| +|..|........|.......| 117,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 120,.| +|..|........|.......| 121,.| +|..|........|.......| 123,.| +|..|........|.......| 125,.| +|..|........|.......| 125,.| +|..|........|.......| 126,.| +|..|........|.......| 127,.| +|..|........|.......| 128,.| +|..|........|.......| 128,.| +|..|........|.......| 129,.| +|..|........|.......| 130,.| +|..|........|.......| 130,.| +|..|........|.......| 130,.| +|..|........|.......| 131,.| +|..|........|.......| 131,.| +|..|........|.......| 131,.| +|..|........|.......| 131,.| +|..|........|.......| 131,.| +|..|........|.......| 131,.| +|..|........|.......| 132,.| +|..|........|.......| 133,.| +|..|........|.......| 133,.| +|..|........|.......| 133,.| +|..|........|.......| 133,.| +|..|........|.......| 133,.| +|..|........|.......| 133,.| +|..|........|.......| 133,.| +|..|........|.......| 135,.| +|..|........|.......| 137,.| +|..|........|.......| 141,.| +|..|........|.......| 145,.| +|..|........|.......| 146,.| +|..|........|.......| 149,.| +|..|........|.......| 150,.| +|..|........|.......| 150,.| +|..|........|.......| 150,.| +|..|........|.......| 150,.| +|..|........|.......| 150,.| +|..|........|.......| 150,.| +|..|........|.......| 150,.| +|..|........|.......| 150,.| +|..|........|.......| 150,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 144,.| +|..|........|.......| 141,.| +|..|........|.......| 140,.| +|..|........|.......| 137,.| +|..|........|.......| 136,.| +|..|........|.......| 133,.| +|..|........|.......| 132,.| +|..|........|.......| 130,.| +|..|........|.......| 128,.| +|..|........|.......| 126,.| +|..|........|.......| 124,.| +|..|........|.......| 123,.| +|..|........|.......| 121,.| +|..|........|.......| 119,.| +|..|........|.......| 116,.| +|..|........|.......| 115,.| +|..|........|.......| 114,.| +|..|........|.......| 113,.| +|..|........|.......| 112,.| +|..|........|.......| 112,.| +|..|........|.......| 112,.| +|..|........|.......| 112,.| +|..|........|.......| 112,.| +|..|........|.......| 111,.| +|..|........|.......| 111,.| +|..|........|.......| 110,.| +|..|........|.......| 109,.| +|..|........|.......| 108,.| +|..|........|.......| 106,.| +|..|........|.......| 105,.| +|..|........|.......| 104,.| +|..|........|.......| 102,.| +|..|........|.......| 101,.| +|..|........|.......| 100,.| +|..|........|.......| 99,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 99,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 102,.| +|..|........|.......| 103,.| +|..|........|.......| 105,.| +|..|........|.......| 106,.| +|..|........|.......| 109,.| +|..|........|.......| 110,.| +|..|........|.......| 113,.| +|..|........|.......| 115,.| +|..|........|.......| 116,.| +|..|........|.......| 116,.| +|..|........|.......| 116,.| +|..|........|.......| 117,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 119,.| +|..|........|.......| 119,.| +|..|........|.......| 120,.| +|..|........|.......| 120,.| +|..|........|.......| 121,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 124,.| +|..|........|.......| 124,.| +|..|........|.......| 124,.| +|..|........|.......| 124,.| +|..|........|.......| 124,.| +|..|........|.......| 124,.| +|..|........|.......| 124,.| +|..|........|.......| 124,.| +|..|........|.......| 124,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 125,.| +|..|........|.......| 126,.| +|..|........|.......| 128,.| +|..|........|.......| 130,.| +|..|........|.......| 134,.| +|..|........|.......| 138,.| +|..|........|.......| 139,.| +|..|........|.......| 141,.| +|..|........|.......| 142,.| +|..|........|.......| 144,.| +|..|........|.......| 145,.| +|..|........|.......| 145,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 145,.| +|..|........|.......| 145,.| +|..|........|.......| 140,.| +|..|........|.......| 138,.| +|..|........|.......| 133,.| +|..|........|.......| 128,.| +|..|........|.......| 126,.| +|..|........|.......| 123,.| +|..|........|.......| 117,.| +|..|........|.......| 112,.| +|..|........|.......| 108,.| +|..|........|.......| 106,.| +|..|........|.......| 101,.| +|..|........|.......| 98,.| +|..|........|.......| 91,.| +|..|........|.......| 87,.| +|..|........|.......| 85,.| +|..|........|.......| 81,.| +|..|........|.......| 80,.| +|..|........|.......| 77,.| +|..|........|.......| 75,.| +|..|........|.......| 72,.| +|..|........|.......| 70,.| +|..|........|.......| 67,.| +|..|........|.......| 66,.| +|..|........|.......| 64,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 60,.| +|..|........|.......| 60,.| +|..|........|.......| 58,.| +|..|........|.......| 56,.| +|..|........|.......| 54,.| +|..|........|.......| 50,.| +|..|........|.......| 48,.| +|..|........|.......| 45,.| +|..|........|.......| 44,.| +|..|........|.......| 42,.| +|..|........|.......| 42,.| +|..|........|.......| 42,.| +|..|........|.......| 42,.| +|..|........|.......| 42,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 41,.| +|..|........|.......| 42,.| +|..|........|.......| 43,.| +|..|........|.......| 45,.| +|..|........|.......| 47,.| +|..|........|.......| 48,.| +|..|........|.......| 50,.| +|..|........|.......| 51,.| +|..|........|.......| 51,.| +|..|........|.......| 51,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 52,.| +|..|........|.......| 51,.| +|..|........|.......| 48,.| +|..|........|.......| 46,.| +|..|........|.......| 40,.| +|..|........|.......| 38,.| +|..|........|.......| 34,.| +|..|........|.......| 31,.| +|..|........|.......| 31,.| +|..|........|.......| 30,.| +|..|........|.......| 29,.| +|..|........|.......| 29,.| +|..|........|.......| 29,.| +|..|........|.......| 29,.| +|..|........|.......| 29,.| +|..|........|.......| 29,.| +|..|........|.......| 29,.| +|..|........|.......| 29,.| +|..|........|.......| 29,.| +|..|........|.......| 30,.| +|..|........|.......| 31,.| +|..|........|.......| 35,.| +|..|........|.......| 36,.| +|..|........|.......| 41,.| +|..|........|.......| 44,.| +|..|........|.......| 51,.| +|..|........|.......| 55,.| +|..|........|.......| 61,.| +|..|........|.......| 65,.| +|..|........|.......| 66,.| +|..|........|.......| 68,.| +|..|........|.......| 68,.| +|..|........|.......| 70,.| +|..|........|.......| 72,.| +|..|........|.......| 73,.| +|..|........|.......| 75,.| +|..|........|.......| 76,.| +|..|........|.......| 78,.| +|..|........|.......| 80,.| +|..|........|.......| 81,.| +|..|........|.......| 84,.| +|..|........|.......| 85,.| +|..|........|.......| 88,.| +|..|........|.......| 90,.| +|..|........|.......| 93,.| +|..|........|.......| 94,.| +|..|........|.......| 95,.| +|..|........|.......| 96,.| +|..|........|.......| 98,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 101,.| +|..|........|.......| 101,.| +|..|........|.......| 102,.| +|..|........|.......| 102,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 104,.| +|..|........|.......| 105,.| +|..|........|.......| 106,.| +|..|........|.......| 106,.| +|..|........|.......| 107,.| +|..|........|.......| 107,.| +|..|........|.......| 108,.| +|..|........|.......| 108,.| +|..|........|.......| 110,.| +|..|........|.......| 111,.| +|..|........|.......| 111,.| +|..|........|.......| 112,.| +|..|........|.......| 113,.| +|..|........|.......| 113,.| +|..|........|.......| 113,.| +|..|........|.......| 114,.| +|..|........|.......| 114,.| +|..|........|.......| 115,.| +|..|........|.......| 115,.| +|..|........|.......| 115,.| +|..|........|.......| 115,.| +|..|........|.......| 115,.| +|..|........|.......| 115,.| +|..|........|.......| 115,.| +|..|........|.......| 113,.| +|..|........|.......| 110,.| +|..|........|.......| 108,.| +|..|........|.......| 104,.| +|..|........|.......| 99,.| +|..|........|.......| 98,.| +|..|........|.......| 96,.| +|..|........|.......| 95,.| +|..|........|.......| 93,.| +|..|........|.......| 92,.| +|..|........|.......| 92,.| +|..|........|.......| 88,.| +|..|........|.......| 86,.| +|..|........|.......| 83,.| +|..|........|.......| 81,.| +|..|........|.......| 78,.| +|..|........|.......| 75,.| +|..|........|.......| 73,.| +|..|........|.......| 72,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 70,.| +|..|........|.......| 69,.| +|..|........|.......| 68,.| +|..|........|.......| 68,.| +|..|........|.......| 68,.| +|..|........|.......| 67,.| +|..|........|.......| 67,.| +|..|........|.......| 67,.| +|..|........|.......| 67,.| +|..|........|.......| 67,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 63,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 60,.| +|..|........|.......| 60,.| +|..|........|.......| 60,.| +|..|........|.......| 59,.| +|..|........|.......| 58,.| +|..|........|.......| 56,.| +|..|........|.......| 55,.| +|..|........|.......| 53,.| +|..|........|.......| 51,.| +|..|........|.......| 49,.| +|..|........|.......| 46,.| +|..|........|.......| 45,.| +|..|........|.......| 42,.| +|..|........|.......| 40,.| +|..|........|.......| 38,.| +|..|........|.......| 36,.| +|..|........|.......| 34,.| +|..|........|.......| 33,.| +|..|........|.......| 32,.| +|..|........|.......| 31,.| +|..|........|.......| 30,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 26,.| +|..|........|.......| 26,.| +|..|........|.......| 26,.| +|..|........|.......| 26,.| +|..|........|.......| 26,.| +|..|........|.......| 26,.| +|..|........|.......| 26,.| +|..|........|.......| 26,.| +|..|........|.......| 26,.| +|..|........|.......| 26,.| +|..|........|.......| 25,.| +|..|........|.......| 25,.| +|..|........|.......| 23,.| +|..|........|.......| 20,.| +|..|........|.......| 19,.| +|..|........|.......| 18,.| +|..|........|.......| 17,.| +|..|........|.......| 17,.| +|..|........|.......| 17,.| +|..|........|.......| 17,.| +|..|........|.......| 17,.| +|..|........|.......| 17,.| +|..|........|.......| 17,.| +|..|........|.......| 17,.| +|..|........|.......| 17,.| +|..|........|.......| 17,.| +|..|........|.......| 17,.| +|..|........|.......| 17,.| +|..|........|.......| 17,.| +|..|........|.......| 17,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 15,.| +|..|........|.......| 14,.| +|..|........|.......| 13,.| +|..|........|.......| 12,.| +|..|........|.......| 12,.| +|..|........|.......| 11,.| +|..|........|.......| 11,.| +|..|........|.......| 11,.| +|..|........|.......| 11,.| +|..|........|.......| 11,.| +|..|........|.......| 11,.| +|..|........|.......| 11,.| +|..|........|.......| 11,.| +|..|........|.......| 11,.| +|..|........|.......| 13,.| +|..|........|.......| 18,.| +|..|........|.......| 21,.| +|..|........|.......| 27,.| +|..|........|.......| 30,.| +|..|........|.......| 31,.| +|..|........|.......| 33,.| +|..|........|.......| 33,.| +|..|........|.......| 35,.| +|..|........|.......| 36,.| +|..|........|.......| 37,.| +|..|........|.......| 39,.| +|..|........|.......| 40,.| +|..|........|.......| 42,.| +|..|........|.......| 43,.| +|..|........|.......| 45,.| +|..|........|.......| 45,.| +|..|........|.......| 45,.| +|..|........|.......| 46,.| +|..|........|.......| 47,.| +|..|........|.......| 48,.| +|..|........|.......| 49,.| +|..|........|.......| 50,.| +|..|........|.......| 52,.| +|..|........|.......| 53,.| +|..|........|.......| 54,.| +|..|........|.......| 55,.| +|..|........|.......| 56,.| +|..|........|.......| 57,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 60,.| +|..|........|.......| 60,.| +|..|........|.......| 60,.| +|..|........|.......| 60,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 62,.| +|..|........|.......| 63,.| +|..|........|.......| 64,.| +|..|........|.......| 65,.| +|..|........|.......| 66,.| +|..|........|.......| 68,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 71,.| +|..|........|.......| 72,.| +|..|........|.......| 75,.| +|..|........|.......| 77,.| +|..|........|.......| 79,.| +|..|........|.......| 82,.| +|..|........|.......| 84,.| +|..|........|.......| 88,.| +|..|........|.......| 90,.| +|..|........|.......| 93,.| +|..|........|.......| 96,.| +|..|........|.......| 98,.| +|..|........|.......| 100,.| +|..|........|.......| 101,.| +|..|........|.......| 103,.| +|..|........|.......| 105,.| +|..|........|.......| 105,.| +|..|........|.......| 106,.| +|..|........|.......| 106,.| +|..|........|.......| 106,.| +|..|........|.......| 106,.| +|..|........|.......| 106,.| +|..|........|.......| 106,.| +|..|........|.......| 106,.| +|..|........|.......| 106,.| +|..|........|.......| 106,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 122,.| +|..|........|.......| 125,.| +|..|........|.......| 127,.| +|..|........|.......| 134,.| +|..|........|.......| 136,.| +|..|........|.......| 138,.| +|..|........|.......| 138,.| +|..|........|.......| 138,.| +|..|........|.......| 138,.| +|..|........|.......| 138,.| +|..|........|.......| 138,.| +|..|........|.......| 138,.| +|..|........|.......| 138,.| +|..|........|.......| 138,.| +|..|........|.......| 138,.| +|..|........|.......| 138,.| +|..|........|.......| 136,.| +|..|........|.......| 135,.| +|..|........|.......| 134,.| +|..|........|.......| 132,.| +|..|........|.......| 131,.| +|..|........|.......| 131,.| +|..|........|.......| 130,.| +|..|........|.......| 130,.| +|..|........|.......| 130,.| +|..|........|.......| 129,.| +|..|........|.......| 126,.| +|..|........|.......| 126,.| +|..|........|.......| 124,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 120,.| +|..|........|.......| 119,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 119,.| +|..|........|.......| 119,.| +|..|........|.......| 120,.| +|..|........|.......| 121,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 123,.| +|..|........|.......| 122,.| +|..|........|.......| 121,.| +|..|........|.......| 120,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 118,.| +|..|........|.......| 116,.| +|..|........|.......| 111,.| +|..|........|.......| 103,.| +|..|........|.......| 99,.| +|..|........|.......| 92,.| +|..|........|.......| 88,.| +|..|........|.......| 83,.| +|..|........|.......| 79,.| +|..|........|.......| 72,.| +|..|........|.......| 65,.| +|..|........|.......| 60,.| +|..|........|.......| 48,.| +|..|........|.......| 41,.| +|..|........|.......| 25,.| +|..|........|.......| 18,.| +|..|........|.......| 8,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 7,.| +|..|........|.......| 9,.| +|..|........|.......| 13,.| +|..|........|.......| 14,.| +|..|........|.......| 16,.| +|..|........|.......| 18,.| +|..|........|.......| 20,.| +|..|........|.......| 23,.| +|..|........|.......| 27,.| +|..|........|.......| 32,.| +|..|........|.......| 34,.| +|..|........|.......| 36,.| +|..|........|.......| 36,.| +|..|........|.......| 36,.| +|..|........|.......| 36,.| +|..|........|.......| 36,.| +|..|........|.......| 36,.| +|..|........|.......| 36,.| +|..|........|.......| 36,.| +|..|........|.......| 35,.| +|..|........|.......| 35,.| +|..|........|.......| 35,.| +|..|........|.......| 35,.| +|..|........|.......| 35,.| +|..|........|.......| 35,.| +|..|........|.......| 36,.| +|..|........|.......| 36,.| +|..|........|.......| 38,.| +|..|........|.......| 40,.| +|..|........|.......| 43,.| +|..|........|.......| 46,.| +|..|........|.......| 47,.| +|..|........|.......| 48,.| +|..|........|.......| 48,.| +|..|........|.......| 50,.| +|..|........|.......| 50,.| +|..|........|.......| 50,.| +|..|........|.......| 51,.| +|..|........|.......| 51,.| +|..|........|.......| 52,.| +|..|........|.......| 53,.| +|..|........|.......| 53,.| +|..|........|.......| 54,.| +|..|........|.......| 55,.| +|..|........|.......| 55,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 57,.| +|..|........|.......| 57,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 59,.| +|..|........|.......| 60,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 62,.| +|..|........|.......| 63,.| +|..|........|.......| 65,.| +|..|........|.......| 66,.| +|..|........|.......| 69,.| +|..|........|.......| 70,.| +|..|........|.......| 72,.| +|..|........|.......| 73,.| +|..|........|.......| 75,.| +|..|........|.......| 76,.| +|..|........|.......| 78,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 81,.| +|..|........|.......| 81,.| +|..|........|.......| 83,.| +|..|........|.......| 84,.| +|..|........|.......| 86,.| +|..|........|.......| 87,.| +|..|........|.......| 88,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 89,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 87,.| +|..|........|.......| 86,.| +|..|........|.......| 85,.| +|..|........|.......| 84,.| +|..|........|.......| 83,.| +|..|........|.......| 82,.| +|..|........|.......| 81,.| +|..|........|.......| 80,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 77,.| +|..|........|.......| 77,.| +|..|........|.......| 76,.| +|..|........|.......| 75,.| +|..|........|.......| 74,.| +|..|........|.......| 73,.| +|..|........|.......| 73,.| +|..|........|.......| 65,.| +|..|........|.......| 58,.| +|..|........|.......| 53,.| +|..|........|.......| 42,.| +|..|........|.......| 37,.| +|..|........|.......| 29,.| +|..|........|.......| 23,.| +|..|........|.......| 21,.| +|..|........|.......| 20,.| +|..|........|.......| 20,.| +|..|........|.......| 20,.| +|..|........|.......| 20,.| +|..|........|.......| 18,.| +|..|........|.......| 18,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 14,.| +|..|........|.......| 13,.| +|..|........|.......| 8,.| +|..|........|.......| 7,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 6,.| +|..|........|.......| 7,.| +|..|........|.......| 7,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 8,.| +|..|........|.......| 10,.| +|..|........|.......| 10,.| +|..|........|.......| 11,.| +|..|........|.......| 12,.| +|..|........|.......| 13,.| +|..|........|.......| 14,.| +|..|........|.......| 15,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 18,.| +|..|........|.......| 18,.| +|..|........|.......| 20,.| +|..|........|.......| 21,.| +|..|........|.......| 25,.| +|..|........|.......| 26,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 29,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 31,.| +|..|........|.......| 33,.| +|..|........|.......| 35,.| +|..|........|.......| 38,.| +|..|........|.......| 38,.| +|..|........|.......| 40,.| +|..|........|.......| 41,.| +|..|........|.......| 43,.| +|..|........|.......| 45,.| +|..|........|.......| 46,.| +|..|........|.......| 48,.| +|..|........|.......| 48,.| +|..|........|.......| 50,.| +|..|........|.......| 51,.| +|..|........|.......| 53,.| +|..|........|.......| 54,.| +|..|........|.......| 56,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 60,.| +|..|........|.......| 61,.| +|..|........|.......| 64,.| +|..|........|.......| 66,.| +|..|........|.......| 67,.| +|..|........|.......| 68,.| +|..|........|.......| 69,.| +|..|........|.......| 70,.| +|..|........|.......| 71,.| +|..|........|.......| 73,.| +|..|........|.......| 73,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 76,.| +|..|........|.......| 78,.| +|..|........|.......| 81,.| +|..|........|.......| 84,.| +|..|........|.......| 86,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 89,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 92,.| +|..|........|.......| 92,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 92,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 87,.| +|..|........|.......| 85,.| +|..|........|.......| 77,.| +|..|........|.......| 68,.| +|..|........|.......| 62,.| +|..|........|.......| 50,.| +|..|........|.......| 43,.| +|..|........|.......| 35,.| +|..|........|.......| 32,.| +|..|........|.......| 31,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 29,.| +|..|........|.......| 23,.| +|..|........|.......| 11,.| +|..|........|.......| 3,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 6,.| +|..|........|.......| 20,.| +|..|........|.......| 25,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 28,.| +|..|........|.......| 27,.| +|..|........|.......| 23,.| +|..|........|.......| 21,.| +|..|........|.......| 21,.| +|..|........|.......| 20,.| +|..|........|.......| 20,.| +|..|........|.......| 19,.| +|..|........|.......| 18,.| +|..|........|.......| 17,.| +|..|........|.......| 16,.| +|..|........|.......| 16,.| +|..|........|.......| 15,.| +|..|........|.......| 15,.| +|..|........|.......| 14,.| +|..|........|.......| 13,.| +|..|........|.......| 11,.| +|..|........|.......| 8,.| +|..|........|.......| 6,.| +|..|........|.......| 4,.| +|..|........|.......| 3,.| +|..|........|.......| 2,.| +|..|........|.......| 1,.| +|..|........|.......| 1,.| +|..|........|.......| 1,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 1,.| +|..|........|.......| 1,.| +|..|........|.......| 1,.| +|..|........|.......| 1,.| +|..|........|.......| 1,.| +|..|........|.......| 1,.| +|..|........|.......| 1,.| +|..|........|.......| 1,.| +|..|........|.......| 1,.| +|..|........|.......| 1,.| +|..|........|.......| 1,.| +|..|........|.......| 2,.| +|..|........|.......| 3,.| +|..|........|.......| 4,.| +|..|........|.......| 4,.| +|..|........|.......| 5,.| +|..|........|.......| 5,.| +|..|........|.......| 5,.| +|..|........|.......| 5,.| +|..|........|.......| 5,.| +|..|........|.......| 4,.| +|..|........|.......| 4,.| +|..|........|.......| 3,.| +|..|........|.......| 2,.| +|..|........|.......| 1,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 2,.| +|..|........|.......| 8,.| +|..|........|.......| 14,.| +|..|........|.......| 16,.| +|..|........|.......| 21,.| +|..|........|.......| 23,.| +|..|........|.......| 25,.| +|..|........|.......| 25,.| +|..|........|.......| 26,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 30,.| +|..|........|.......| 31,.| +|..|........|.......| 33,.| +|..|........|.......| 35,.| +|..|........|.......| 37,.| +|..|........|.......| 40,.| +|..|........|.......| 41,.| +|..|........|.......| 43,.| +|..|........|.......| 44,.| +|..|........|.......| 46,.| +|..|........|.......| 50,.| +|..|........|.......| 51,.| +|..|........|.......| 52,.| +|..|........|.......| 53,.| +|..|........|.......| 53,.| +|..|........|.......| 53,.| +|..|........|.......| 53,.| +|..|........|.......| 53,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 55,.| +|..|........|.......| 55,.| +|..|........|.......| 57,.| +|..|........|.......| 57,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 58,.| +|..|........|.......| 59,.| +|..|........|.......| 60,.| +|..|........|.......| 61,.| +|..|........|.......| 62,.| +|..|........|.......| 64,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 63,.| +|..|........|.......| 62,.| +|..|........|.......| 58,.| +|..|........|.......| 56,.| +|..|........|.......| 55,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 54,.| +|..|........|.......| 56,.| +|..|........|.......| 60,.| +|..|........|.......| 66,.| +|..|........|.......| 70,.| +|..|........|.......| 75,.| +|..|........|.......| 79,.| +|..|........|.......| 80,.| +|..|........|.......| 82,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 84,.| +|..|........|.......| 85,.| +|..|........|.......| 85,.| +|..|........|.......| 86,.| +|..|........|.......| 86,.| +|..|........|.......| 86,.| +|..|........|.......| 86,.| +|..|........|.......| 87,.| +|..|........|.......| 87,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 89,.| +|..|........|.......| 90,.| +|..|........|.......| 91,.| +|..|........|.......| 95,.| +|..|........|.......| 100,.| +|..|........|.......| 102,.| +|..|........|.......| 106,.| +|..|........|.......| 110,.| +|..|........|.......| 121,.| +|..|........|.......| 127,.| +|..|........|.......| 136,.| +|..|........|.......| 138,.| +|..|........|.......| 141,.| +|..|........|.......| 141,.| +|..|........|.......| 141,.| +|..|........|.......| 141,.| +|..|........|.......| 141,.| +|..|........|.......| 141,.| +|..|........|.......| 141,.| +|..|........|.......| 141,.| +|..|........|.......| 140,.| +|..|........|.......| 138,.| +|..|........|.......| 133,.| +|..|........|.......| 127,.| +|..|........|.......| 124,.| +|..|........|.......| 119,.| +|..|........|.......| 116,.| +|..|........|.......| 113,.| +|..|........|.......| 111,.| +|..|........|.......| 110,.| +|..|........|.......| 109,.| +|..|........|.......| 106,.| +|..|........|.......| 101,.| +|..|........|.......| 100,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 97,.| +|..|........|.......| 97,.| +|..|........|.......| 97,.| +|..|........|.......| 95,.| +|..|........|.......| 94,.| +|..|........|.......| 90,.| +|..|........|.......| 88,.| +|..|........|.......| 85,.| +|..|........|.......| 84,.| +|..|........|.......| 84,.| +|..|........|.......| 84,.| +|..|........|.......| 84,.| +|..|........|.......| 86,.| +|..|........|.......| 90,.| +|..|........|.......| 91,.| +|..|........|.......| 94,.| +|..|........|.......| 95,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,F| +|..|........|.......| 96,F| +|..|........|.......| 96,F| +|..|........|.......| 96,F| +|..|........|.......| 96,F| +|..|........|.......| 96,F| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,F| +|..|........|.......| 96,F| +|..|........|.......| 96,F| +|..|........|.......| 96,F| +|..|........|.......| 96,F| +|..|........|.......| 96,F| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 95,.| +|..|........|.......| 95,F| +|..|........|.......| 95,F| +|..|........|.......| 95,F| +|..|........|.......| 95,F| +|..|........|.......| 95,F| +|..|........|.......| 95,F| +|..|........|.......| 95,F| +|..|........|.......| 95,.| +|..|........|.......| 95,.| +|..|........|.......| 95,.| +|..|........|.......| 95,.| +|..|........|.......| 95,.| +|..|........|.......| 95,.| +|..|........|.......| 95,.| +|..|........|.......| 95,.| +|..|........|.......| 95,.| +|..|........|.......| 95,.| +|..|........|.......| 94,.| +|..|........|.......| 94,.| +|..|........|.......| 94,.| +|..|........|.......| 94,.| +|..|........|.......| 94,.| +|..|........|.......| 94,.| +|..|........|.......| 94,.| +|..|........|.......| 94,.| +|..|........|.......| 94,.| +|..|........|.......| 94,.| +|..|........|.......| 94,.| +|..|........|.......| 94,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,F| +|..|........|.......| 93,F| +|..|........|.......| 93,F| +|..|........|.......| 93,F| +|..|........|.......| 93,F| +|..|........|.......| 93,F| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 93,.| +|..|........|.......| 92,.| +|..|........|.......| 92,.| +|..|........|.......| 92,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,F| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 91,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 90,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 87,.| +|..|........|.......| 87,.| +|..|........|.......| 86,.| +|..|........|.......| 86,.| +|..|........|.......| 86,.| +|..|........|.......| 86,.| +|..|........|.......| 85,.| +|..|........|.......| 85,.| +|..|........|.......| 85,.| +|..|........|.......| 85,.| +|..|........|.......| 85,.| +|..|........|.......| 85,.| +|..|........|.......| 84,.| +|..|........|.......| 84,.| +|..|........|.......| 84,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 83,.| +|..|........|.......| 82,.| +|..|........|.......| 82,.| +|..|........|.......| 82,.| +|..|........|.......| 82,.| +|..|........|.......| 82,.| +|..|........|.......| 82,.| +|..|........|.......| 82,.| +|..|........|.......| 82,.| +|..|........|.......| 82,.| +|..|........|.......| 82,.| +|..|........|.......| 82,.| +|..|........|.......| 82,.| +|..|........|.......| 82,.| +|..|........|.......| 82,.| +|..|........|.......| 81,.| +|..|........|.......| 80,.| +|..|........|.......| 77,.| +|..|........|.......| 75,.| +|..|........|.......| 73,.| +|..|........|.......| 72,.| +|..|........|.......| 71,.| +|..|........|.......| 70,.| +|..|........|.......| 70,.| +|..|........|.......| 70,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 68,.| +|..|........|.......| 68,.| +|..|........|.......| 67,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 65,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 66,.| +|..|........|.......| 67,.| +|..|........|.......| 68,.| +|..|........|.......| 70,.| +|..|........|.......| 72,.| +|..|........|.......| 73,.| +|..|........|.......| 73,.| +|..|........|.......| 73,.| +|..|........|.......| 73,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 76,.| +|..|........|.......| 77,.| +|..|........|.......| 77,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 77,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 75,.| +|..|........|.......| 74,.| +|..|........|.......| 73,.| +|..|........|.......| 73,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 72,.| +|..|........|.......| 73,.| +|..|........|.......| 73,.| +|..|........|.......| 73,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 77,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 79,.| +|..|........|.......| 79,.| +|..|........|.......| 79,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 70,.| +|..|........|.......| 69,.| +|..|........|.......| 68,.| +|..|........|.......| 67,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 66,.| +|..|........|.......| 67,.| +|..|........|.......| 67,.| +|..|........|.......| 68,.| +|..|........|.......| 68,.| +|..|........|.......| 68,.| +|..|........|.......| 68,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 70,.| +|..|........|.......| 70,.| +|..|........|.......| 70,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,F| +|..|........|.......| 71,F| +|..|........|.......| 71,F| +|..|........|.......| 71,F| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 72,.| +|..|........|.......| 72,.| +|..|........|.......| 73,.| +|..|........|.......| 73,.| +|..|........|.......| 73,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 77,.| +|..|........|.......| 77,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 80,.| +|..|........|.......| 80,.| +|..|........|.......| 81,.| +|..|........|.......| 82,.| +|..|........|.......| 85,.| +|..|........|.......| 85,.| +|..|........|.......| 87,.| +|..|........|.......| 89,.| +|..|........|.......| 90,.| +|..|........|.......| 91,.| +|..|........|.......| 93,.| +|..|........|.......| 94,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 99,.| +|..|........|.......| 100,.| +|..|........|.......| 101,.| +|..|........|.......| 103,.| +|..|........|.......| 103,.| +|..|........|.......| 104,.| +|..|........|.......| 105,.| +|..|........|.......| 105,.| +|..|........|.......| 106,.| +|..|........|.......| 108,.| +|..|........|.......| 110,.| +|..|........|.......| 111,.| +|..|........|.......| 117,.| +|..|........|.......| 120,.| +|..|........|.......| 125,.| +|..|........|.......| 131,.| +|..|........|.......| 134,.| +|..|........|.......| 138,.| +|..|........|.......| 140,.| +|..|........|.......| 143,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 146,.| +|..|........|.......| 147,.| +|..|........|.......| 147,.| +|..|........|.......| 147,.| +|..|........|.......| 147,.| +|..|........|.......| 147,.| +|..|........|.......| 147,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 148,.| +|..|........|.......| 147,.| +|..|........|.......| 146,.| +|..|........|.......| 143,.| +|..|........|.......| 141,.| +|..|........|.......| 136,.| +|..|........|.......| 131,.| +|..|........|.......| 128,.| +|..|........|.......| 125,.| +|..|........|.......| 124,.| +|..|........|.......| 122,.| +|..|........|.......| 121,.| +|..|........|.......| 121,.| +|..|........|.......| 120,.| +|..|........|.......| 120,.| +|..|........|.......| 119,.| +|..|........|.......| 117,.| +|..|........|.......| 116,.| +|..|........|.......| 115,.| +|..|........|.......| 113,.| +|..|........|.......| 111,.| +|..|........|.......| 111,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 110,.| +|..|........|.......| 109,.| +|..|........|.......| 109,.| +|..|........|.......| 107,.| +|..|........|.......| 105,.| +|..|........|.......| 103,.| +|..|........|.......| 97,.| +|..|........|.......| 94,.| +|..|........|.......| 87,.| +|..|........|.......| 82,.| +|..|........|.......| 75,.| +|..|........|.......| 71,.| +|..|........|.......| 68,.| +|..|........|.......| 66,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 63,.| +|..|........|.......| 63,.| +|..|........|.......| 62,.| +|..|........|.......| 62,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 62,.| +|..|........|.......| 62,.| +|..|........|.......| 63,.| +|..|........|.......| 63,.| +|..|........|.......| 64,.| +|..|........|.......| 66,.| +|..|........|.......| 68,.| +|..|........|.......| 68,.| +|..|........|.......| 70,.| +|..|........|.......| 70,.| +|..|........|.......| 71,.| +|..|........|.......| 72,.| +|..|........|.......| 73,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 75,.| +|..|........|.......| 76,.| +|..|........|.......| 77,.| +|..|........|.......| 78,.| +|..|........|.......| 80,.| +|..|........|.......| 81,.| +|..|........|.......| 83,.| +|..|........|.......| 86,.| +|..|........|.......| 87,.| +|..|........|.......| 90,.| +|..|........|.......| 93,.| +|..|........|.......| 94,.| +|..|........|.......| 96,.| +|..|........|.......| 96,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 99,.| +|..|........|.......| 99,.| +|..|........|.......| 99,.| +|..|........|.......| 99,.| +|..|........|.......| 99,.| +|..|........|.......| 99,.| +|..|........|.......| 99,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 100,.| +|..|........|.......| 98,.| +|..|........|.......| 96,.| +|..|........|.......| 95,.| +|..|........|.......| 91,.| +|..|........|.......| 90,.| +|..|........|.......| 86,.| +|..|........|.......| 84,.| +|..|........|.......| 83,.| +|..|........|.......| 81,.| +|..|........|.......| 80,.| +|..|........|.......| 78,.| +|..|........|.......| 78,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 74,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 68,.| +|..|........|.......| 68,.| +|..|........|.......| 66,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 64,.| +|..|........|.......| 64,.| +|..|........|.......| 63,.| +|..|........|.......| 63,.| +|..|........|.......| 63,.| +|..|........|.......| 63,.| +|..|........|.......| 63,.| +|..|........|.......| 61,.| +|..|........|.......| 61,.| +|..|........|.......| 57,.| +|..|........|.......| 54,.| +|..|........|.......| 53,.| +|..|........|.......| 52,.| +|..|........|.......| 51,.| +|..|........|.......| 51,.| +|..|........|.......| 51,.| +|..|........|.......| 51,.| +|..|........|.......| 51,.| +|..|........|.......| 51,.| +|..|........|.......| 51,.| +|..|........|.......| 53,.| +|..|........|.......| 54,.| +|..|........|.......| 55,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 57,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 56,.| +|..|........|.......| 55,.| +|..|........|.......| 48,.| +|..|........|.......| 43,.| +|..|........|.......| 35,.| +|..|........|.......| 30,.| +|..|........|.......| 23,.| +|..|........|.......| 21,.| +|..|........|.......| 20,.| +|..|........|.......| 20,.| +|..|........|.......| 20,.| +|..|........|.......| 20,.| +|..|........|.......| 20,.| +|..|........|.......| 20,.| +|..|........|.......| 20,.| +|..|........|.......| 20,.| +|..|........|.......| 20,.| +|..|........|.......| 19,.| +|..|........|.......| 19,.| +|..|........|.......| 18,.| +|..|........|.......| 18,.| +|..|........|.......| 17,.| +|..|........|.......| 16,.| +|..|........|.......| 15,.| +|..|........|.......| 14,.| +|..|........|.......| 13,.| +|..|........|.......| 13,.| +|..|........|.......| 13,.| +|..|........|.......| 11,.| +|..|........|.......| 11,.| +|..|........|.......| 11,.| +|..|........|.......| 10,.| +|..|........|.......| 8,.| +|..|........|.......| 5,.| +|..|........|.......| 3,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 0,.| +|..|........|.......| 2,.| +|..|........|.......| 5,.| +|..|........|.......| 9,.| +|..|........|.......| 11,.| +|..|........|.......| 17,.| +|..|........|.......| 21,.| +|..|........|.......| 24,.| +|..|........|.......| 28,.| +|..|........|.......| 29,.| +|..|........|.......| 31,.| +|..|........|.......| 31,.| +|..|........|.......| 31,.| +|..|........|.......| 32,.| +|..|........|.......| 32,.| +|..|........|.......| 33,.| +|..|........|.......| 33,.| +|..|........|.......| 33,.| +|..|........|.......| 33,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 34,.| +|..|........|.......| 35,.| +|..|........|.......| 36,.| +|..|........|.......| 37,.| +|..|........|.......| 40,.| +|..|........|.......| 41,.| +|..|........|.......| 45,.| +|..|........|.......| 46,.| +|..|........|.......| 51,.| +|..|........|.......| 53,.| +|..|........|.......| 55,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 60,.| +|..|........|.......| 61,.| +|..|........|.......| 63,.| +|..|........|.......| 66,.| +|..|........|.......| 68,.| +|..|........|.......| 71,.| +|..|........|.......| 72,.| +|..|........|.......| 74,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 74,.| +|..|........|.......| 73,.| +|..|........|.......| 72,.| +|..|........|.......| 72,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 71,.| +|..|........|.......| 72,.| +|..|........|.......| 72,.| +|..|........|.......| 73,.| +|..|........|.......| 75,.| +|..|........|.......| 75,.| +|..|........|.......| 76,.| +|..|........|.......| 76,.| +|..|........|.......| 77,.| +|..|........|.......| 78,.| +|..|........|.......| 80,.| +|..|........|.......| 83,.| +|..|........|.......| 84,.| +|..|........|.......| 85,.| +|..|........|.......| 86,.| +|..|........|.......| 88,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 89,.| +|..|........|.......| 88,.| +|..|........|.......| 88,.| +|..|........|.......| 87,.| +|..|........|.......| 86,.| +|..|........|.......| 85,.| +|..|........|.......| 83,.| +|..|........|.......| 81,.| +|..|........|.......| 80,.| +|..|........|.......| 79,.| +|..|........|.......| 78,.| +|..|........|.......| 77,.| +|..|........|.......| 76,.| +|..|........|.......| 75,.| +|..|........|.......| 74,.| +|..|........|.......| 73,.| +|..|........|.......| 72,.| +|..|........|.......| 71,.| +|..|........|.......| 70,.| +|..|........|.......| 70,.| +|..|........|.......| 70,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 69,.| +|..|........|.......| 68,.| +|..|........|.......| 67,.| +|..|........|.......| 66,.| +|..|........|.......| 65,.| +|..|........|.......| 65,.| +|..|........|.......| 63,.| +|..|........|.......| 63,.| +|..|........|.......| 61,.| +|..|........|.......| 60,.| +|..|........|.......| 58,.| +|..|........|.......| 56,.| +|..|........|.......| 55,.| +|..|........|.......| 51,.| +|..|........|.......| 51,.| +|..|........|.......| 49,.| +|..|........|.......| 47,.| +|..|........|.......| 46,.| +|..|........|.......| 45,.| +|..|........|.......| 45,.| +|..|........|.......| 43,.| +|..|........|.......| 42,.| +|..|........|.......| 41,.| +|..|........|.......| 40,.| +|..|........|.......| 39,.| +|..|........|.......| 38,.| +|..|........|.......| 37,.| +|..|........|.......| 35,.| +|..|........|.......| 32,.| +|..|........|.......| 31,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 28,.| +|..|........|.......| 26,.| +|..|........|.......| 25,.| +|..|........|.......| 23,.| +|..|........|.......| 23,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 22,.| +|..|........|.......| 23,.| +|..|........|.......| 24,.| +|..|........|.......| 25,.| +|..|........|.......| 26,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 30,.| +|..|........|.......| 29,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 27,.| +|..|........|.......| 28,.| +|..|........|.......| 28,.| +|..|........|.......| 29,.| +|..|........|.......| 29,.| +|..|........|.......| 31,.| +|..|........|.......| 31,.| +|..|........|.......| 32,.| +|..|........|.......| 32,.| +|..|........|.......| 32,.| +|..|........|.......| 32,.| +|..|........|.......| 32,.| +|..|........|.......| 32,.| +|..|........|.......| 33,.| +|..|........|.......| 33,.| +|..|........|.......| 33,.| +|..|........|.......| 34,.| +|..|........|.......| 35,.| +|..|........|.......| 35,.| +|..|........|.......| 36,.| +|..|........|.......| 38,.| +|..|........|.......| 38,.| +|..|........|.......| 43,.| +|..|........|.......| 45,.| +|..|........|.......| 50,.| +|..|........|.......| 52,.| +|..|........|.......| 54,.| +|..|........|.......| 55,.| +|..|........|.......| 55,.| +|..|........|.......| 55,.| +|..|........|.......| 55,.| +|..|........|.......| 56,.| +|..|........|.......| 56,.| +|..|........|.......| 57,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 58,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 59,.| +|..|........|.......| 60,.| +|..|........|.......| 60,.| +|..|........|.......| 61,.| +|..|........|.......| 62,.| +|..|........|.......| 63,.| +|..|........|.......| 66,.| +|..|........|.......| 68,.| +|..|........|.......| 77,.| +|..|........|.......| 84,.| +|..|........|.......| 86,.| +|..|........|.......| 91,.| +|..|........|.......| 93,.| +|..|........|.......| 95,.| +|..|........|.......| 97,.| +|..|........|.......| 98,.| +|..|........|.......| 98,.| +|..|........|.......| 100,.| +|..|........|.......| 101,.| +|..|........|.......| 103,.| +|..|........|.......| 105,.| +|..|........|.......| 106,.| +|..|........|.......| 108,.| +|..|........|.......| 110,.| +|..|........|.......| 113,.| +|..|........|.......| 116,.| +|..|........|.......| 118,.| +|..|........|.......| 121,.| +|..|........|.......| 123,.| +|..|........|.......| 125,.| +|..|........|.......| 125,.| +|..|........|.......| 125,.| +|..|........|.......| 125,.| +|..|........|.......| 125,.| +|..|........|.......| 125,.| \ No newline at end of file diff --git a/quicknes/tests/arkanoid2.arkFamicomController.test b/quicknes/tests/arkanoid2.arkFamicomController.test new file mode 100644 index 00000000000..52da2794e54 --- /dev/null +++ b/quicknes/tests/arkanoid2.arkFamicomController.test @@ -0,0 +1,15 @@ +{ + "Rom File": "roms/Arkanoid II (J) [!].nes", + "Expected ROM SHA1": "79F9D3DA1904400832546216833978A2261313A5", + "Initial State File": "", + "Sequence File": "arkanoid2.arkFamicomController.sol", + "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "MAPR", "CTRL", "APUR" ], + "Controller 1 Type": "ArkanoidFamicom", + "Controller 2 Type": "None", + "Differential Compression": + { + "Enabled": false, + "Max Differences": 2200, + "Use Zlib": true + } +} diff --git a/quicknes/tests/castlevania1.anyPercent.sol b/quicknes/tests/castlevania1.anyPercent.sol new file mode 100644 index 00000000000..dd1957b53b8 --- /dev/null +++ b/quicknes/tests/castlevania1.anyPercent.sol @@ -0,0 +1,37338 @@ +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R..B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|........| +|..|.D......| +|..|.D.R..B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|U..R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|U.L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..LR....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..LR....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.DL.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|.D......| +|..|UD....BA| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|.D......| +|..|...R....| +|..|..L.....| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.D.R....| +|..|.D.R....| +|..|..L.....| +|..|........| +|..|.D.R....| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|.DL.....| +|..|...R....| +|..|...R..B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|.D.R....| +|..|........| +|..|.DL.....| +|..|...R....| +|..|.D......| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|.D......| +|..|..L.....| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|........| +|..|.D......| +|..|...R....| +|..|...R...A| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|.D.R....| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|.D.R....| +|..|........| +|..|.D......| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.D......| +|..|........| +|..|.D.R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|.D......| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|.D.R....| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|.D.R....| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|.D......| +|..|..L.....| +|..|...R..B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|U..R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U.L.....| +|..|........| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|.D.R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|UD.R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R...A| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|.D.R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|..L.....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U.L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|.D.R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|U.L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|.DL....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.DL....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U..R....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U..R....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L....A| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.DL.....| +|..|...R....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|UDLR.s..| +|..|U.L....A| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|.DL....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U..R....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U.L.....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U.L.....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|UD.R....| +|..|........| +|..|U..R....| +|..|..L.....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|.D.R....| +|..|..L.....| +|..|U..R....| +|..|U.L.....| +|..|U..R....| +|..|.D.R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R...A| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R....| +|..|.D.R...A| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R...A| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R....| +|..|UDLR.sBA| +|..|...R....| +|..|.D.R...A| +|..|U..R...A| +|..|U..R....| +|..|.D.R...A| +|..|U..R....| +|..|U..R...A| +|..|...R....| +|..|UDLR.sBA| +|..|U.LR.sB.| +|..|U..R..B.| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|UDLR.sBA| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|UDLR.sBA| +|..|...R....| +|..|UDLR.sBA| +|..|...R..B.| +|..|U.LR.sB.| +|..|UDLR.sBA| +|..|U.LR.sB.| +|..|...R....| +|..|U..R....| +|..|UDLR.sBA| +|..|...R..B.| +|..|...R..B.| +|..|U..R..B.| +|..|U.LR.sB.| +|..|UDLR.sBA| +|..|U.LR.sB.| +|..|...R..B.| +|..|U.LR.sB.| +|..|UDLR.sBA| +|..|U.LR.sB.| +|..|...R..B.| +|..|U.LR.sB.| +|..|...R..B.| +|..|...R..B.| +|..|U..R..B.| +|..|U..R..B.| +|..|...R..B.| +|..|...R..B.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|...R..B.| +|..|...R..B.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U..R..B.| +|..|...R..B.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U..R..B.| +|..|...R..B.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U..R..B.| +|..|...R..B.| +|..|U.LR.sB.| +|..|UDLR.sBA| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|.DL....A| +|..|U.L.....| +|..|.DL....A| +|..|..L.....| +|..|.DL....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.......A| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|U.L...B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|U.....B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|U.....B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|U.L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|..L....A| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|..L....A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|..L.....| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|...R....| +|..|........| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|UD.R....| +|..|.DL.....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|........| +|..|...R....| +|..|.D.R....| +|..|.D......| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|.D......| +|..|........| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.DL.....| +|..|........| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.DL.....| +|..|...R....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|..L.....| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L....A| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L....A| +|..|......B.| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| diff --git a/quicknes/tests/castlevania1.anyPercent.test b/quicknes/tests/castlevania1.anyPercent.test new file mode 100644 index 00000000000..6b34450bf47 --- /dev/null +++ b/quicknes/tests/castlevania1.anyPercent.test @@ -0,0 +1,15 @@ +{ + "Rom File": "roms/Castlevania (U) (PRG0) [!].nes", + "Expected ROM SHA1": "A31B8BD5B370A9103343C866F3C2B2998E889341", + "Initial State File": "", + "Sequence File": "castlevania1.anyPercent.sol", + "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "CTRL" ], + "Controller 1 Type": "Joypad", + "Controller 2 Type": "None", + "Differential Compression": + { + "Enabled": false, + "Max Differences": 2200, + "Use Zlib": true + } +} diff --git a/quicknes/tests/castlevania1.pacifist.sol b/quicknes/tests/castlevania1.pacifist.sol new file mode 100644 index 00000000000..9430616196e --- /dev/null +++ b/quicknes/tests/castlevania1.pacifist.sol @@ -0,0 +1,39555 @@ +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|U..R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.....sB.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R.s..| +|..|...R.s..| +|..|...R.s..| +|..|...R.s.A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|.....s..| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R.s..| +|..|...R.s..| +|..|...R.s..| +|..|...R.s..| +|..|...R.s..| +|..|...R.s..| +|..|.....s..| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|.....s..| +|..|.....s..| +|..|........| +|..|........| +|..|.....s..| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|.D......| +|..|........| +|..|........| +|..|.....s..| +|..|.....s..| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|.....s..| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L....A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.....s..| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U....s..| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L..s.A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L..s..| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.DL.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R....| +|..|.D.R....| +|..|.D......| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|...R....| +|..|...R....| +|..|.D......| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|....S...| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|....S...| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|......B.| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D.R....| +|..|........| +|..|...R...A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|......B.| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|........| +|..|...R....| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|........| +|..|.D......| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|.DL.....| +|..|.D......| +|..|.D....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|........| +|..|.D.R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.DL.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|.D.R....| +|..|...R....| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|........| +|..|..L...B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|........| +|..|.D......| +|..|........| +|..|.D.R....| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|...R....| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.DL.....| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|.D......| +|..|........| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.DL.....| +|..|........| +|..|.D.R....| +|..|...R....| +|..|.DL.....| +|..|........| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D......| +|..|........| +|..|.D.R....| +|..|..L.....| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|........| +|..|.D......| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|........| +|..|.DL.....| +|..|........| +|..|...R....| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|...R....| +|..|...R....| +|..|.D......| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.....s..| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R.s..| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.....s..| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|..L.....| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|........| +|..|...R....| +|..|..L.....| +|..|........| +|..|...R....| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|.DL.....| +|..|........| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...RS...| +|..|...R....| +|..|...RS...| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L...B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|..L.....| +|..|...R..B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|........| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|..L.....| +|..|.D......| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|.D.R....| +|..|....S...| +|..|........| +|..|....S...| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|UD.R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|.D.R....| +|..|..L.....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..LR....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|....S...| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|.DL.....| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|...R....| +|..|........| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|....S...| +|..|...R...A| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|UDL.....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|...R....| +|..|.DL.....| +|..|.D......| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|.DL.....| +|..|...R....| +|..|..L.....| +|..|U.L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L..s..| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.....s..| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L..s..| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L..s..| +|..|..L..s..| +|..|..L..s..| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L..s..| +|..|..L..s..| +|..|..L..s..| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L..s..| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L..s..| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L..s..| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L..s..| +|..|U..R....| +|..|........| +|..|U.L.....| +|..|...R.s..| +|..|...R.s..| +|..|U..R.s..| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U.L.....| +|..|U..R....| +|..|U..R....| +|..|U..R.s..| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R.s..| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R.s..| +|..|...R....| +|..|...R....| +|..|...R.s..| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R.s..| +|..|...R.s..| +|..|...R.s..| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R.s..| +|..|...R.s..| +|..|U..R.s..| +|..|U..R.s..| +|..|U..R.s..| +|..|...R.s..| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R...A| +|..|.D......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|UDLR.s..| +|..|...R....| +|..|.D.R...A| +|..|U..R...A| +|..|U..R....| +|..|.D.R...A| +|..|U..R....| +|..|U..R...A| +|..|...R....| +|..|UDLR.sBA| +|..|U.LR.sB.| +|..|U..R..B.| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|UDLR.sBA| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|U.LR.sB.| +|..|UDLR.sBA| +|..|...R....| +|..|UDLR.sBA| +|..|...R..B.| +|..|U.LR.sB.| +|..|UDLR.sBA| +|..|U.LR.sB.| +|..|...R....| +|..|U..R....| +|..|UDLR.sBA| +|..|...R..B.| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.D.R....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|.DL.....| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.DL.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L....A| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R..B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R..B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|.D......| +|..|........| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.D......| +|..|.D.R....| +|..|.D......| +|..|........| +|..|........| +|..|...R....| +|..|.DL.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|UD......| +|..|........| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|...R....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.DL.....| +|..|..L.....| +|..|.DL.....| +|..|..L.....| +|..|.DL.....| +|..|..L.....| +|..|.DL.....| +|..|..L.....| +|..|.DL.....| +|..|..L.....| +|..|.DL.....| +|..|..L.....| +|..|.DL.....| +|..|..L.....| +|..|.DL.....| +|..|..L.....| +|..|.DL.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|.D.R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.S...| +|..|..L.....| +|..|..L.S...| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D......| +|..|.D....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R..B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R..B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|..L.....| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| \ No newline at end of file diff --git a/quicknes/tests/castlevania1.pacifist.test b/quicknes/tests/castlevania1.pacifist.test new file mode 100644 index 00000000000..e433adeca8f --- /dev/null +++ b/quicknes/tests/castlevania1.pacifist.test @@ -0,0 +1,15 @@ +{ + "Rom File": "roms/Castlevania (U) (PRG0) [!].nes", + "Expected ROM SHA1": "A31B8BD5B370A9103343C866F3C2B2998E889341", + "Initial State File": "", + "Sequence File": "castlevania1.pacifist.sol", + "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "CTRL" ], + "Controller 1 Type": "Joypad", + "Controller 2 Type": "None", + "Differential Compression": + { + "Enabled": false, + "Max Differences": 2200, + "Use Zlib": true + } +} diff --git a/quicknes/tests/castlevania3.playaround.sol b/quicknes/tests/castlevania3.playaround.sol new file mode 100644 index 00000000000..726344d28fa --- /dev/null +++ b/quicknes/tests/castlevania3.playaround.sol @@ -0,0 +1,3499 @@ +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|....S...| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|U.....B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L...B.| +|..|..L...B.| +|..|..L...B.| +|..|..L..sB.| +|..|..L..sB.| +|..|..L..sB.| +|..|..L..sB.| +|..|..L..sB.| +|..|..L..sB.| +|..|..L..s..| +|..|..L..s..| +|..|..L..s..| +|..|..L..s..| +|..|..L..s..| +|..|..L..s..| +|..|..L..s..| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|U..R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| diff --git a/quicknes/tests/castlevania3.playaround.test b/quicknes/tests/castlevania3.playaround.test new file mode 100644 index 00000000000..1186bc5eee2 --- /dev/null +++ b/quicknes/tests/castlevania3.playaround.test @@ -0,0 +1,15 @@ +{ + "Rom File": "roms/Castlevania III - Dracula's Curse (U) [!].nes", + "Expected ROM SHA1": "F91281D5D9CC26BCF6FB4DE2F5BE086BC633D49B", + "Initial State File": "", + "Sequence File": "castlevania3.playaround.sol", + "Disable State Blocks": [ ], + "Controller 1 Type": "Joypad", + "Controller 2 Type": "None", + "Differential Compression": + { + "Enabled": false, + "Max Differences": 2200, + "Use Zlib": true + } +} diff --git a/quicknes/tests/galaga.anyPercent.sol b/quicknes/tests/galaga.anyPercent.sol new file mode 100644 index 00000000000..8b97a085b81 --- /dev/null +++ b/quicknes/tests/galaga.anyPercent.sol @@ -0,0 +1,29916 @@ +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|....S...| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L....A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L....A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L....A| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|......B.| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L....A| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L....A| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R..B.| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L...B.| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|......B.| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R..B.| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|..L.....| +|..|..L...B.| +|..|...R...A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|..L...B.| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L...B.| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L...B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| \ No newline at end of file diff --git a/quicknes/tests/galaga.anyPercent.test b/quicknes/tests/galaga.anyPercent.test new file mode 100644 index 00000000000..b7cf63eea1f --- /dev/null +++ b/quicknes/tests/galaga.anyPercent.test @@ -0,0 +1,15 @@ +{ + "Rom File": "roms/Galaga - Demons of Death (U) [!].nes", + "Expected ROM SHA1": "DA54C223D79FA59EB95437854B677CF69B5CAC8A", + "Initial State File": "", + "Sequence File": "galaga.anyPercent.sol", + "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "CTRL" ], + "Controller 1 Type": "Joypad", + "Controller 2 Type": "None", + "Differential Compression": + { + "Enabled": false, + "Max Differences": 2200, + "Use Zlib": true + } +} diff --git a/quicknes/tests/ironSword.anyPercent.sol b/quicknes/tests/ironSword.anyPercent.sol new file mode 100644 index 00000000000..86651d0d605 --- /dev/null +++ b/quicknes/tests/ironSword.anyPercent.sol @@ -0,0 +1,25785 @@ +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|....S...| +|..|........| +|..|.D.R....| +|..|U..R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R...A| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|U..R...A| +|..|U..R....| +|..|U..R...A| +|..|U..R...A| +|..|U..R....| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|U..R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.......A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|U.L..s..| +|..|U.L..s..| +|..|U.L..s..| +|..|U.L..s..| +|..|U.L..s..| +|..|U.L..s..| +|..|U.L..s..| +|..|U.L..s..| +|..|U.L..s.A| +|..|U.L..s.A| +|..|U.L..s.A| +|..|U.L..s.A| +|..|U.L..s.A| +|..|U.L..s.A| +|..|U.L..s.A| +|..|U.L..s.A| +|..|U.L..s.A| +|..|U.L..s.A| +|..|U.L..s.A| +|..|U.L..s.A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U......A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|UDL....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|.......A| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|...R...A| +|..|.......A| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|.......A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|U..R...A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|.......A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|........| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U..R....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|........| +|..|........| +|..|........| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|........| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|..L...BA| +|..|......BA| +|..|..L...BA| +|..|.DL...BA| +|..|.DL...BA| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|.DL....A| +|..|.DL....A| +|..|.DL....A| +|..|.DL....A| +|..|.DL....A| +|..|.DL....A| +|..|.DL....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|U.L....A| +|..|U.L....A| +|..|.DL....A| +|..|.DL....A| +|..|.DL....A| +|..|U.L....A| +|..|..L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|..L....A| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R..B.| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|.D.R....| +|..|.D.R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|......BA| +|..|.......A| +|..|.......A| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|......BA| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|......BA| +|..|......BA| +|..|......BA| +|..|......BA| +|..|......BA| +|..|......BA| +|..|......BA| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|......BA| +|..|......BA| +|..|......BA| +|..|......BA| +|..|......BA| +|..|......BA| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|......BA| +|..|......BA| +|..|......BA| +|..|......BA| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U.....BA| +|..|U.....BA| +|..|U.....BA| +|..|U.....BA| +|..|U.....BA| +|..|U.....BA| +|..|U......A| +|..|U......A| +|..|U......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|U.....B.| +|..|U.....B.| +|..|U.....B.| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|......BA| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|......BA| +|..|......BA| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|......B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|.D.R....| +|..|.D.R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|.DL....A| +|..|.DL....A| +|..|.DL....A| +|..|.DL....A| +|..|.DL....A| +|..|.DL....A| +|..|.DL....A| +|..|.DL....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R..B.| +|..|.D.R..B.| +|..|.D.R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..B.| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.D.R...A| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|.D.R...A| +|..|UD.R...A| +|..|UD.R...A| +|..|UD.R...A| +|..|UD.R...A| +|..|UD.R...A| +|..|UD.R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|......B.| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|......B.| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|......B.| +|..|......B.| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|......B.| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|......B.| +|..|......B.| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|U..R....| +|..|U..R...A| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R..B.| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|U......A| +|..|U......A| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U......A| +|..|U......A| +|..|U......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|.DL.....| +|..|.DL.....| +|..|.D......| +|..|.D......| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U......A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|.DL....A| +|..|U.L....A| +|..|.DL....A| +|..|U.L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R..B.| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D.R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|U.L....A| +|..|U.L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.......| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|.D.R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|.......A| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D.R....| +|..|.D.R....| +|..|.D.R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R..BA| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.DL.....| +|..|.DL...B.| +|..|.DL...B.| +|..|.DL...B.| +|..|.DL...B.| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.......| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|......B.| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|.D....B.| +|..|.D....B.| +|..|.D......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D....B.| +|..|.D....B.| +|..|.D....B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..LR....| +|..|..LR....| +|..|..LR....| +|..|..LR....| +|..|..LR....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.D....B.| +|..|.D....B.| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D....B.| +|..|.D....B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|.D......| +|..|.D......| +|..|.D....B.| +|..|.D....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|.D......| +|..|.D....B.| +|..|.D....B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.D.R....| +|..|.D.R....| +|..|.D......| +|..|.D......| +|..|.D....B.| +|..|.D....B.| +|..|.D....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|.D......| +|..|.D....B.| +|..|.D....B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|......B.| +|..|.......A| +|..|......B.| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.D.R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|.DL.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|..L....A| +|..|..L....A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|.......A| +|..|......B.| +|..|.......A| +|..|......B.| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R..BA| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L...B.| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.D.R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L...B.| +|..|..L....A| +|..|..L...B.| +|..|..L....A| +|..|..L...B.| +|..|..L....A| +|..|..L...B.| +|..|..L....A| +|..|..L...B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U.....B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|U.....B.| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.....B.| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.....B.| +|..|U.....B.| +|..|U.....B.| +|..|U.....B.| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.....B.| +|..|U.....B.| +|..|U.....B.| +|..|U.....B.| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.....B.| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.....B.| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.......| +|..|U.....B.| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|......B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R..BA| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.......A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.......A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L...BA| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|........| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|.......A| +|..|......B.| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|.DL.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R...A| +|..|...R..B.| +|..|...R...A| +|..|...R..B.| +|..|...R...A| +|..|...R..B.| +|..|...R...A| +|..|...R..B.| +|..|...R...A| +|..|...R..B.| +|..|...R...A| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|U..R....| +|..|U..R....| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|U..R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L....A| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|..L.....| +|..|........| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U.L.....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|.......A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|.D....B.| +|..|.D....B.| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R..BA| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|UD.R....| +|..|UD.R..BA| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|.D....B.| +|..|UDL.....| +|..|UDL.....| +|..|.D......| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|.D....B.| +|..|UDL.....| +|..|UDL.....| +|..|UDL.....| +|..|UDL.....| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL.....| +|..|.D....B.| +|..|UDL.....| +|..|.D....B.| +|..|UD.R....| +|..|.D......| +|..|UDL...B.| +|..|UDL...B.| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|.......A| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|.D....B.| +|..|.D....B.| +|..|UD.R..BA| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|UD.R....| +|..|.D....B.| +|..|UDL...B.| +|..|UD.R....| +|..|........| +|..|.D......| +|..|UD.R....| +|..|.D....B.| +|..|.D......| +|..|UDL.....| +|..|........| +|..|........| +|..|...R....| +|..|UDL.....| +|..|........| +|..|...R....| +|..|........| +|..|U.L...B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|UDL.....| +|..|UDL.....| +|..|UDL.....| +|..|UDL.....| +|..|UDL.....| +|..|UDL...B.| +|..|UDL.....| +|..|UDL...B.| +|..|UDL.....| +|..|UDL.....| +|..|UDL.....| +|..|UDL.....| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL.....| +|..|UDL.....| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL...B.| +|..|UDL.....| +|..|UDL...B.| +|..|UDL.....| +|..|UDL.....| +|..|UDL...B.| +|..|UDL.....| +|..|UDL...B.| +|..|.DL...BA| +|..|........| +|..|........| +|..|........| +|..|......B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.......A| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|...R..B.| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|.D......| +|..|UDL.....| +|..|UDL...B.| +|..|UDL.....| +|..|UDL.....| +|..|UDL...B.| +|..|UDL.....| +|..|UDL.....| +|..|........| +|..|......B.| \ No newline at end of file diff --git a/quicknes/tests/ironSword.anyPercent.test b/quicknes/tests/ironSword.anyPercent.test new file mode 100644 index 00000000000..61a00f8d577 --- /dev/null +++ b/quicknes/tests/ironSword.anyPercent.test @@ -0,0 +1,15 @@ +{ + "Rom File": "roms/Ironsword - Wizards & Warriors II (U) [!].nes", + "Expected ROM SHA1": "97B79E432F62403FB9F877090850C41112A9A168", + "Initial State File": "", + "Sequence File": "ironSword.anyPercent.sol", + "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "CTRL" ], + "Controller 1 Type": "Joypad", + "Controller 2 Type": "None", + "Differential Compression": + { + "Enabled": true, + "Max Differences": 1900, + "Use Zlib": true + } +} diff --git a/quicknes/tests/meson.build b/quicknes/tests/meson.build new file mode 100644 index 00000000000..748ffe5e4f4 --- /dev/null +++ b/quicknes/tests/meson.build @@ -0,0 +1,118 @@ +nomalloc = environment({'MALLOC_PERTURB_': '0'}) + +bash = find_program('bash') +testCommands = ['run_test.sh', quickerNESTester.path(), quickNESTester.path() ] +testTimeout = 120 + +# Tests for copyrighted game roms (only for local testing or own CI runners) +protectedTestSet = [ + 'arkanoid.warpless.test', + 'arkanoid.warps.test', + 'castlevania1.anyPercent.test', + 'castlevania1.pacifist.test', + 'galaga.anyPercent.test', + 'ironSword.anyPercent.test', + 'metroid.playaround.test', + 'nigelMansell.anyPercent.test', + 'ninjaGaiden.anyPercent.test', + 'ninjaGaiden.pacifist.test', + 'ninjaGaiden2.anyPercent.test', + 'ninjaGaiden2.pacifist.test', + 'novaTheSquirrel.anyPercent.test', + 'princeOfPersia.anyPercent.test', + 'rcProAmII.race1.test', + 'saintSeiyaKanketsuHen.anyPercent.test', + 'saintSeiyaOugonDensetsu.anyPercent.test', + 'saiyuukiWorld.anyPercent.test', + 'solarJetman.anyPercent.test', + 'sprilo.anyPercent.test', + 'superMarioBros.warpless.test', + 'superMarioBros.warps.test', + 'superMarioBros3.warps.test', + 'superOffroad.anyPercent.test', + 'tennis.anyPercent.test', +] + +# Tests for open source free roms (for public cloud testing) +openSourceTestSet = [ + 'novaTheSquirrel.anyPercent.test', + 'sprilo.anyPercent.test', +] + +# Creating test set based on whether copyrighted roms are to be used +testSet = openSourceTestSet +if get_option('onlyOpenSource') == false + testSet += protectedTestSet +endif + +# Adding tests to the suite +foreach testFile : testSet + testSuite = testFile.split('.')[0] + testName = testFile.split('.')[1] + test(testName, + bash, + workdir : meson.current_source_dir(), + timeout: testTimeout, + args : [ testCommands, testFile, '--cycleType', 'Full'], + suite : [ testSuite ]) +endforeach + +# Special test case for castlevania 3, since it doesn't work with quickNES +if get_option('onlyOpenSource') == false + testFile = 'castlevania3.playaround.test' + testSuite = testFile.split('.')[0] + testName = testFile.split('.')[1] + test(testName, + quickerNESTester, + workdir : meson.current_source_dir(), + timeout: testTimeout, + args : [ testFile, '--cycleType', 'Full'], + suite : [ testSuite ]) +endif + +# Special test cases for from-save-state start, since it doesn't work with quickNES +if get_option('onlyOpenSource') == false + testFile = 'saiyuukiWorld.lastHalf.test' + testSuite = testFile.split('.')[0] + testName = testFile.split('.')[1] + test(testName, + quickerNESTester, + workdir : meson.current_source_dir(), + timeout: testTimeout, + args : [ testFile, '--cycleType', 'Full'], + suite : [ testSuite ]) + + testFile = 'microMachines.race20.test' + testSuite = testFile.split('.')[0] + testName = testFile.split('.')[1] + test(testName, + quickerNESTester, + workdir : meson.current_source_dir(), + timeout: testTimeout, + args : [ testFile, '--cycleType', 'Full'], + suite : [ testSuite ]) + + if get_option('enableArkanoidInputs') == true + + testFile = 'arkanoid.arkNESController.test' + testSuite = testFile.split('.')[0] + testName = testFile.split('.')[1] + test(testName, + quickerNESTester, + workdir : meson.current_source_dir(), + timeout: testTimeout, + args : [ testFile, '--cycleType', 'Full'], + suite : [ testSuite ]) + + testFile = 'arkanoid2.arkFamicomController.test' + testSuite = testFile.split('.')[0] + testName = testFile.split('.')[1] + test(testName, + quickerNESTester, + workdir : meson.current_source_dir(), + timeout: testTimeout, + args : [ testFile, '--cycleType', 'Full'], + suite : [ testSuite ]) + + endif +endif \ No newline at end of file diff --git a/quicknes/tests/metroid.playaround.sol b/quicknes/tests/metroid.playaround.sol new file mode 100644 index 00000000000..cf1802422f0 --- /dev/null +++ b/quicknes/tests/metroid.playaround.sol @@ -0,0 +1,1729 @@ +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|....S...| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L....A| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..LR....| +|..|..L.....| +|..|..LR....| +|..|..L.....| +|..|..LR....| +|..|..L.....| +|..|..LR....| +|..|..L.....| +|..|..LR..B.| +|..|..L...B.| +|..|..LR..B.| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|..L.....| +|..|........| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|.D......| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|U..R....| +|..|U..R..B.| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R....| +|..|U..R..B.| +|..|U..R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R...A| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R..B.| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|U..R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|..L.....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|...R....| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| +|..|........| \ No newline at end of file diff --git a/quicknes/tests/metroid.playaround.test b/quicknes/tests/metroid.playaround.test new file mode 100644 index 00000000000..556996dd8e8 --- /dev/null +++ b/quicknes/tests/metroid.playaround.test @@ -0,0 +1,15 @@ +{ + "Rom File": "roms/Metroid (U) (PRG0) [!].nes", + "Expected ROM SHA1": "ECF39EC5A33E6A6F832F03E8FFC61C5D53F4F90B", + "Initial State File": "", + "Sequence File": "metroid.playaround.sol", + "Disable State Blocks": [ "CHRR", "NTAB", "SPRT", "CTRL" ], + "Controller 1 Type": "Joypad", + "Controller 2 Type": "None", + "Differential Compression": + { + "Enabled": false, + "Max Differences": 2200, + "Use Zlib": true + } +} diff --git a/quicknes/tests/microMachines.race20.sol b/quicknes/tests/microMachines.race20.sol new file mode 100644 index 00000000000..f7cb83b2b70 --- /dev/null +++ b/quicknes/tests/microMachines.race20.sol @@ -0,0 +1,1802 @@ +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|..L....A| +|..|.......A| +|..|..L.....| +|..|.......A| +|..|...R...A| +|..|.......A| +|..|...R....| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| +|..|.......A| diff --git a/quicknes/tests/microMachines.race20.state b/quicknes/tests/microMachines.race20.state new file mode 100644 index 0000000000000000000000000000000000000000..99ceb741c4da2fc1ff2e422cb19862c206d11ad7 GIT binary patch literal 22946 zcmeHvZFm#cmGB*nq>-#IgZVJTSTZC)fX3!yK_

g1e9>Zk;9&lBQXlgp%|rZJfpl zPLMqUj73`qlfctJ!8U1Vl84=WA!Rqg%ZFr4G20MK+6{PH8p)Vok`PPAV9Ay=_dVy% zj1V7b-}n9Z?xRCy&bjB@d*|G9&pqeP=sG$=$ew#S@`pbREdr8k9OH-kjJu}aC6MgA z5f;bPX%@$nF&2k|Scqjr9LM-E_LCKLfJ#YFLs69;l{C~hjNiPRQ1~#%OgK#Yx zU}R{3^D(bb;yGZ5oKkVow~+7T>>%X(I<1cAj7D4dWLB8tM(^1Fuc*Pu|7Ei;`PEnT1~Tp~<6B1K zbQm6S+-VYWOeVcuFbQUpQLypQQMy?=Ew=ZOjru7tKB6UojDS{~(ls#v z8^@eFZYU-JRg%GxSwOh5htwh&q*n%bo;&}x_6H?kVqVW>&jJ-e&g~;ae1r7)fgZZJ zZhhSbjuS|RR+FV6<`0M_i;!v43_~1B>b)C(4&(a8X(MQ0CMIYyos2#@h5T`no@uqB zijaxGwZZiK-vFmh@ZW4SbBZuCcA-GuoGYBzU9@}n?XI_v@A|{*|LGlWj&^BCq>JMs z^h?1?ujoh8D_Xb&xO5}wm)Z>a1zeZl>V=E9RZ*SIO$A#W)dH;t+5of>=nR{CiOF2I zB*W}pVl-Ek8O(KMdb7JsYpyC4%yp$Yv%8cxS5=uTyQ?xRJFASAt*Z={-K+GLovXB# ztt$k}?iD)A&K106>k^Z7_mT|j&Lu|c)-r>2cbVS0vrKE^OsIZL=GoaEVFTVJQ2>=yXIBDS|9RSkb z#7CLMY=Urdqf>dBJmT2)( z`5$l}umxluVX>(f$sidSHd9h}weIb3F3DwV4Y)#5-w@r4K>K9V0+xZ<8_BrBkdaLR zO8Zz}(2(I_DlrVT{w9XzOn&{w1AJ5I&O1gLsfO3;^n!tAn9LTdEpr6T8Z~;%*z9rR zY0iXPyCZMnBzo86DO2yBHhl)YC%<6ktl4w^VeUL<;rx4x7JxE>UMuLpj#^c9n^gsi z3T73qE0UzFBLOl1s@!$*e_MC%zUjZDDB0>dF>1o(e5W&i@`M#DR;*gJs;a80w6wIW ztZd1WCAV^}H%n4qUIF;>i%Y${PSENN#thTnAd;<8h&ngK-&9}$fG3#LWN4k~Y1+xR zPFdU3#J5gZ*VN3nX02~(;aiP$O}qG3TG#Xz-+FCB({K3Juj-rL=3BeHO}qKlvm2X! z%eQ{~^QL$B*7jdCz00?@{u29nwgLMY{TlYu{u=i4!Y1s;-iZBt+=%_G*^K?%{W|OC zb?j%u8`#h6E!a<4J*2WaSrC)kgk$9|wD^aFR$r>P11`E4`y1NGnK zi5mYg7Gg}q*oZL_V?jath`amSZ5-V9sH= z2XtV$2y+tX#&Q(qD$H4!yD*1gF2kJ0avSD2$aOGgUZ*u`bs2c+&Bjz(kokJvs5P1O zya_@h)=Sa`MrVAtteltY7(uSTPFomlE-QbCXI*8i$L}eaWxQQ`)EU};KmUo@`rGM`I)i>_0+8RTKQssZm;hESj6<%3D_EwX z%*KcM%Q7}g+HvEtGb6MBIg^->hJRSglp)BpnjT@^jLfu53ba9)D^MEj!;B6slM|q| z$TaE={iDfENMqlOHfZ%@g)vAoJ#O(Ii`JNJ7>$#TEpGK60r(cPUiO&@_Pj~v8yp0~ zI9{ljp3ikmywhxwX{JDiPIj-P%HTJq6!p#eoI6xsLe;c-?alTVnE%{pbI?h)@eTGz zJL4!7nL>mAEA~&?93`s#jTT1VVDpp#n011@R#KEs4hD758`xajVDnV_8^Hizie&2j zf6UTaL0-_$mR{#kjhKNCPAK7TtlgRm4`|vt|66|ieX7_#}2+>d?hHy*~K-K+D@StqFh-+$z+&PZ=tF` z#;p{-N-k9O$EjDDDR?2+Ke_Hx_$s+jn{!9f?^I?AUdS7T0LO*VNGH;~vRT}(HS+=*eKlwZMCt3qr_hsLKF{pi}V%`F= z7INVC;4!IumDUOnYcU6c530OWoM8a#vK(k;ZzriTq|MO3k^|YB%*}GxWwQ`~+j9ii zWi$NuZm`w;dsWi%v<1=@NLwInfwTqE7Wf}(fm`6+Y?!rTt_S_S;WoitLiPrm%e*NKIn*X!=HOEGf&0Ix&Um_lhbzEL|&wmke z-m|#3;njG;*Yd;O2E$^mF8isl?d6D%hU{UXfMgTST<<*pyeI`4>z#xYz^@>iimu^~ z%f5*`1=ivCi`C&Lil?6u^rVE-IQ#_1(d_WQFOP?C^@V<&{ab?pC=)Y`^W}Jd&oQu{ zJ|}OXw(x#!z4P~W`@C}tP@W0$51jFYw9n7219}YcfL%_1AzeE65Ab|WPyF1GqR(9R zd2QUfseUpF>WFmvFE(u0;3fWx*Wg2V)a&)uH3md68jZ#%6-Ag`C(bY^+ktb7^ccCU ze$`F{QJ{R}h97(Oe~6V7h|yS2JAhzwF%Hr_st~Yj@AETcdrz_{_MRo%yDb^R9E!z64=LH8*Oq!{BHk+wU8EWfKmMI} z9w$^xKo1E@JQ`lJPQ%eyAo2O9@I3A0hsRGF26@2cq9Ks)^80sfMtx#m$9h2@hi=TM zY$zvUFfCBl=<4d$6Cag^V*|%&Ny+0&zg>1%OX=#ffl0A)Lbk0cI9GZ|Qb2w8J8|VI z3|FEmmdE=iWxSUub%~w6{EpX?m{o{Hm_0bbOcO(~kS`JAZFX^>Lx7i*cp^bRq(l(( zdMk|W+K(eX-vVj}Jv;syqt7(jpAQ^y4?PWW#=n-=*PrX&GUJtDw?2n^=49)uZoLvu zR6OwcM{njY_lcHqv!Cq*KcZ4}Fdhv1Q?R6z8Q%ZrHx^N^WN+E=~pOvh3ygK9Q;z+C%(o<5eu!?5^6x@HNDu zl!zg}HX5fYmii9;;D9?Gmp(grs5%~x*H4&q+%o>(e&o%)^FOnubhdb1or2|#4}JpJ zlr_0?$DiIU2dhbOupEFC|LSZg;1i`GSdXBEG$cj+YcYOb$H6v;e^8cjePO$P++BXo zJO7w*?8J61?xk)Vi*B|ir zOSA#vC*d@e;g3aknB@~+T*k~UdF?_Hvv>ey1#ikJ9OymOQru`ShK1kV_Q^dks(6Ed z7-0dtW``1iui9s3W)}QryeqzfM z@F+SgJCH2j<(Geb1}yto@+ZdlV7!~{HKEq zJd0&RcEMCE%i)-l?FW20E=#Np){~CN|GL}S+VDbuL#S5ZngZ$%pq=dFPe}UoY5QuHIf3ifDDU+}pKlLwIh7TCEa#2!-cO zvfJ&dzLL^jRN9NOJU1@4mg4hRKaps;*8{N8OJk9%2p(@E1Gfn zHN(HmJYyi#Cr0*s8l$9S*NLUmv?zD&elQe*$?-q&Z<(2}Is#t;lXw>IS`NoaB=bNl z0iX{j;^^B*BglR(mxl*%n*=+w#DMUg0;?6kNk?G1!|lEIcKJLaA*)xTap5^2!sVsP zX(aSv0K%9fyP#~UBh!pO>m#UgDLxd74-LmvJTxq^e6M0?9}CgY*-?hfIhmQ6Q?Z>0 z|4;`{NiZz;6YIw^#|yS7?3elnuEtdy4uyN8-9498d@&mAmV*8^6@PO6Lfg@kpIlKf zs5Y#T?aaFFY1kHQtKZhGVnQSPTVR+lUx5(RPzIVDul|6)doUU&_0eEI#(c7L4>Jg* zOIdBQWDk)v!!Uj<3v}a^3zzz1aY@CHM!Sv4P^)!c&<)p@+SK>RLxn2*!65VwhR)5k84PgP3OW@8 za0{BKxucf^?UtSvh>v#SF9`-KO2Ah^d7Kvjc(m-BSb#AIx(W7T6&y4*XvaOWm&wkKGbZN7LO_qVvcjeq@Dd$If6fl7Qo2aP-n z?;2^;!q%uL*Ty1*^!1L~TDLR&=0CYnPGF{P1K_s`ED&j{&%5Zy8e5L&ezkA{;cTwe ztGc?;bg0l!;-6~iAeB01zrTH_<*6yeUvOZfcJK=Lksr(xALyPie(t$Lm9UmUA;0Ha zbH*9X;6I>_fT!5#hw*3>^wx% zPvZI^yv^l`CZ3d}kQC_1+TS`ZyZagF@${t&+E+o0{u3YW?|;DNl5$z{j7Nia=Vgr@ z2dmd^x7l#fNaD$G*iXm=c%y_HmDYv>y1uXmk({_rk}+Xgq5uk$B3K3#kT!T|Bxne@ea`M6l<> z*IMFkNw6uR%sPY=D+&css6esU?2}1R-0sD*iQetCH7`|Fy;Q^W6lf)t<&8AzK9@+G zb4P_O`)AMIzXcCS6F>NkEDuNLYOV|qU(w737DCk5EHc}RqFe*IVr^)nT!t!sq@rvF zWFCe@g<|WH1qzh`I1GbTix`Ap;MZGow%mK?u6iEi9C-W$G^g|BK8Q<%;0k#E?N{QT z)kY+7xp&gc?VE7j_=5%6Cs7Vm`1qL*3RZO;sDw}f`#isA=6E<40=2A4exzUj`sJUV zi;`cV|2tSKxCt1)8Q8~;9-EbwHHJ5tj1bF}->AKc{Ro+f*)$Q4o(k|#ElU}vC#W=s zDK(t9bi(i$cpE|xUU^j!!?UTEVOe3Yg)*;dC7lJrJt)j;AXKW%aP@OC>EC=#8X6vY zss7JSgMRFkM$rZ99=1^x6)1;*>j{c>bYo)2TN2cK2}V^QDMCWxl<`UH=)sz^HH9Mz z$?<2^ z$JC73R8||f@gqu=E^$H8k~Isy*L&zxXJg&)k!)F&lnxwKuR65Zgk;Zm*Wy!aXATWj zYUVhdwY9a>Z78|=LSkgU@Q~v+J*Bf(_eweLzKa{5eoIT9%hR5^*e#GBJ#S{3 zz(!ft2x73+2H}+FU|2XRnH@a@eu2>SncIExwV%gZK5A(cG@Z5ZcCJKul!mo~>4{t^JcKWX=* ziLnEK_PC4{Bp2XV4I=;>G-f!$t>LY}K?NA!Gr5~#|8aqx^XAsCX9AAb%kJc1V!S2S zjKZ0zIM2!wnNdP2*jS~e9_I7B9p2R|3mi1wV~?Ib9h}I+$!YMA^F5!}!*+>}O4PS# zc6K%ux}!CaBeXo{@nlzrSvJjn?lko3sjRMcLKtftYvR`nLXa&zd^u!I=m52&96y?M^bWiz`U3f5g{&+vI;LG>ibWV^ zZUf;|#qL)Mp%whq%VH-H0ayWUNCS|fCQn5{j)l`Uc$zzVt|Zqtd*c9&91Z!fmw?Yf zWNNz^RPB_=n92XF$LJ*!`fsBW&-@mdJ-@ByZZ5|1B zJuhCSUUzZOH$c~%U!Ur`JeVL|m#Mr^-#Nz^>-&jB zKl?Ov6~0o#*{v|sXVu`7iavd_JMX!AbZ*(5U;B^4hhM+1nEb2;!YAl6 zHa1rL*Oy1yE(xK~YKw(*(u0A(;aPpf4ad%3JarN>yVW4BUR;1LEW`+v$Me#A-orBkZ9jeYU6+Xqd6SL7wF4jzhmT+DCfPYGX64MUd1aXk$~i3CkeJO50Teodbt=FKHh=g)SJysR2_AnCdbtIh)et-Y zNM-?i9?2y5n*&~?V6h?7QH^D{8(2`zG{7*Rei+11-%;{VbtZxR7ZgEWT~dj1w_0|V zR4#@x$cn0~D=SI0Av4qAVEwcD1&a$%j?aQ8VE>Dq2Bj=NZ!yYAPEHQH*dNUqNYVXo zHMTS^fjTkV`UFl86?@wPw)G7piWRL&LKPFq$(j4lIZ24|)!yBEzk9#UKji%L z&;OWz{&}34Nob1@vLzz4>!w@UE(D>^qiHA+%i)0(aeWnv_&zd4d~cbebBGMZcUE{l zG8Bg*SM6K15A|D{(ibJ8?I=UUpePYSQiYP}ng@tPC#V|VD0_0YB-w?4k@@okc&ZQ9JesgB9ocBQDIr$Ub;aT1Y8 zWLh4YweqdESFH|Tlb!QUhj%-z>%87$;a4E_q=yTMLU|cUTd_>Y1*k|fpn-{~gjvo^ zW<0zQ(q`z65E`Ky5DW+3&5Zja&`|lc9RCR3r-T z_*L65l?00qF||;DMBQ%v1BE^!7K<9wcc-`VZb*d1j}<;$ z=qX6w;pIFK4_w(kXpBsvf^^{6;b3@PyN-Eu$D@7|(rP91y30nKIRGObF7Qrw=DEIE>oAsR{ z-pxg55)KJjH%Ngt@0QEf$FxVsMDmc0(g-BB6YO1%@8{KBy+S4m~Ob)M}|7Fn2$lH$}gT9Pj zGCk(|E9dpHzx1dsy2hR6s`a6-_NYGoeSK54UbHUe8@*(1%!!ki_0mN#7f;u_^^b^p zTsXy@7^k(Pr0pbz5GaQz56tGde1x8k?*0%P&qwP+ zNA+;jU8vzIM?OU?JZL@scUb@LjN)&n*1f-MxsY-eJi zrC@c=e0$Z0A0d9mkn*LOckBDh-%H=0@6kV7?__b>L;z!mfzL@B5_uEt6tNxvZh^$<^{L;+U@k_=G z8N=SOBhYt_pVpD<9n=2a{HyccoyPqzsV`;vgVW119-P9$ADki-4^GPVB)#&gfbXU{ zbR=o!ECJt5jeLrv*{@AV6mo&osL>?7KIg@WLN1W{*XY0Us(=0dlu+x;S^o9=Q!zbS zlVGEjCb`(2tx2%aN|T&_?+N<;B`MSWdr#2!FL`-}zx01c-@o?-egBfMaR1&H>h~{+ zQ26(|pzmLzZ13Oig1&!AhmNhie(zjsuira&Z>`qSduz3p-q~AsQ+M{(-IRa)@0Gu^ zx9+A|Jdm_8DJkjoq@=_RiHV6b6BD;?-I}-o9>7jK0}tRPz66g?JkZtya2XPWU<85@ z2u2_nfnWrJ5%@QYz(0HDz^0N_N;`3ot^cJ`~+Pi&i5s2;Y&(O9!DZSLZ~w6Ikb<;IL9I2*1ck{LDJfnsDeTltZ~ zI|?~c#skUu(Ig8p1ccH6+A(>@i`!28-0Uo_vn_fuD&iKvU-ulH83C}ilH*$3aMA=F znM6j+;yu%LCJ#OT-DYEH9Z)ywD-IvwfhjKG0jf7MiFz|}!~Fi%6Gx6528qK*N=k@8 zaf!zpVDo0dG9>t7j>x0Lt%-mo?ia-pLQ4|Ac;Rk&qDjOBeWCUvU|)cun1<}=VNVWA zvt9mR?&Rbtf&3?iMQ1k@#Nla^=YDWG)s9nUygD~y{@hn}TCHw?MyCxu`stq1h&{bo zgMnRL%(64)YZMZ=71!zj0gPI!v6}(2EI~B-VDe)FR1qu6Z4Ead9+a-A`t;9N7rEVx z#d7`HO^!>~tf<#0L}*31lhpy{sHiLjYlqgkjTkU#1^&UIA}wmL^*t9MZD>j_t|<<8 zbh)zUY|9f$WqAW>>NkDQH4vF8#pz8Ap<#IO**#afG%GOTmI82K$4CJER+@}I0%ZIV zApK8(^gjWCdw)LfKQw{#hX6qM(E=5~1aYtMaB4aarKJTtWV$kWaJ!fD;NepqeyNA= z^6=f$dHpgh@JksF9}9f9Ti3r|zyAHfJ$utHO?Hf2t|cy)3nO>Pn;Q5Cv1Y&T2!HnaO6DUAOuf>qf2R+{U_{J2{SH_k6tL+|>$9UB#T+BD7Oz zJZTgEAy01}u&XW(rnv~qw044#Wl@--M@l2MrYm@?Qo)*K!b*n&izo`?-%3MW93|Ap znMln6G({IPTmFJEP0caPa$$}WA23#ya$G1kug=)W@fs2sKj5{<&B5%042EGhOMes9G}bkiR+b`7v^IL0cG~D?MvommcA+l)&GZH73k|-I z;;!z0n6s_0u!u3kY;!rR78>JiWmiQm5yn@qUTx=+U>r91sSN{XoeWnDUD8msWk};> z*QVz`9lK_u#qrs^x{{0~=LUb z8ae=i2K~p=A`y?F8UUexp@W6~4WLsOE|@-p(&?X_I%V7ly-t6ta$MF?juroM;E4r? z#H`rEM;<=%@R5g)YDc1h1V+{(ICv)}2GTqezW(ExiLrvPAKlWT#4YmX7P-rpA>H2+ zDttV-{{Wf77P*C&;WIH_EvZ)=;}&Uih+BkPLP%g+6{Lj)3=O3gGqLKi3qfNFTBL=1 zi2NSS9)L;8gCC2}-o*!lf{YLOGJ(4Hq6@j#%=!}x*nclieb{w@+e2@>Bp2-Cyt z6Fvza@19wx&EFmgBawl(EiZCMWgt#?1U${N2p0UFcNl|mkvoL=2yfqC7k@uf_sa%W zaR*H^05k)02SBgK@Mf)99d{AI3SPUTeOJ1G@EJNeh38Y6xYac*%c0u#J8In!M@)Z| zb1*As6{2QL8S&I4*gqVW*Tg7u5I!=r?0nbT*@b&|eVonE6K72S^Mq&h)Xg8aFY9IJ z&`&=ddFgjeM1MB*DCM<;1n}RWS-or}_@7a-rdgCHG=QEy zl{7$4+0za2^kELQS#El2{}Fzj@Vp8I;`%pB{hAJ<-WT&;z<@DT9YBe-hs-l~U)d*-@Vi?IaCdpWkuZ_l4PNZtej z*eb4;fAPt=hx&6rdzn~t>eQ*P=6mhICa(Pb+H)2kz4xQ{zxt@Pe=v63a8!I*;p1bR z>2|vs{AhTEwSvubwQTFwPrvh)SW2LK_hehVbUiN1hc58x*JIl4YPw$IwWMS}Ii&D#!(p>*X}Cc)u{@L%k^S_3mzOSwkzrx>mwRc4 z>4xhzv&BdAv$W)(uYE4sRerAihOfTbS{kBLTkq8`bJ4dQHd~XIwwWxa;RLs@mA0L) z<2WB5!*Jv{w@)8h3+gtXzs!aT3;5t0Z`ZRdCA+R)^YQWDOBtqc=Ps}PQ)TPdf4uc= z7?A>4-l?oSy?(tfUbz0m9spnbOA1O#cJ0{yrB{B%^%{uJ24DLtT#l0m4jk~c7uza+ z*ig)Q#c=@`@Yi>lA=RJpwWp%F*}P-Nj&ojx>shv{!kueM6SYc1uQ-L3Jw4Xvql-}c4Jbh~~HSGn6) z|C#lbm9?8UlS3a5JfEvM@1-s8d|OwSpYMw&^iIP!=MENo`Gu#vIRTToO>#O)$4@bx zUciC#ZODkXR{dv<UoXs2K)H& zDQ2tPYPH+pgsdzm0R6YVw%Dpc-&k5|v#4}BO_WxnQ4f&~=`vV42=w=NRXdcRKd#a3 zu*b`#q}LjqP8K$k2e)dHvoqIBGirw{VezfhR2|f)bqwJr{@QbFBrYGLQeHCJrv zODNaLVp|o&$gf+LI6s8uzR@g|lI6_O=(c{O*#rIE1OQ$GkHSq!C4EVhp7G-7?l7Q7tPxWbgimWU4Ihq~sbwEV z#;wFt>nS5^cgBCatQ6V_?Poa*?MEUR43zF_0Y|F4cj(+XOd1MZ2%RXCsgWIAg~0Rp z>tUGr=F-u&;z4qZjYen!Tz<%)su>0WQveI+yxx0|n&gN-2$@N!SOH&)WQ$Lyr^w|w zEbH7?$-Ow+&L^v8lhI})Cz@60eYkX*n_*csf|Y)|J*@J zPI{yPNTN`ypX{UNu|}uv-=|NX{^|iKIsz~#c=u~AI(e*Noi{IDym-@DDHA#Y;-b(& zr%?iauNb@8@xy28NiUKBU>ead)lSDdc?>^hn)LMS*>M^UlixLgXCfpPNhG0CIhqF> zy2Tn*;QU4rGMS9<-+&Qgh=(6g20#Q%^oX$g^ZP+Nv|#ss`t!h5;{*6@1N;m0=PrJL zKY{!}e**b|{ydBhv==BJ7@xcN0r3sw2l^LCBlPHm9}gUWUU}58{pisN@ggxK^hUf$ z0*P=pmTXNJ1l&vICyg3;O3v(?vvX49DfZm3Tzg7b$G*v9Vxv%)df@bhx+sJqW2e3} zb6^;X)Xtc-LVj%#yw&cs zr^Gp(tB)Q%+Q>Ss22RVBYMfU10Wq5;A-{%CU$)roc1uFTRB{8Myf%^ z+oKk|j8uK6tuT&DC@VYT#y1*_Cewyb%B!$ZJ7nan&4aE-#u;TVM=F(8S+_okYj;fCB8wXOdeir_t%X}A7QVlr zM~Cs&+0{Q!)kUY|_Feq_YmV*_e}gJ7N>=KB3LbJF>6AHn^G-~z!VrSpOO--K z!+e#;*`079ZdL%F<8+wZb;HFN!)&RrHaL-9pAxTDJ7wfG0w6Pt9I4mq4PII*&=eR1 za5~|hkEXL%u7uYLU$S!L%4{fs_oGD7rC;9^m}g;8PwI>g24fkxQU`Y?1QY$J*M7MK z8xA-v=W8qL;5`Fx^~EiVTL_Lf9Nx08VeIqqV~XLhwqWj~F*@q6RXNrny13+*7`ruo zO4fy@{yF30Uuh}DwzQ(0IOpj}tH)^4?2lf)eDh5W(ot~q%U_LjBftFi`VCAUJh8KR zE4bZ=T^3BCw0#DSTeM_J+OeBYoIUaL&&gGz%w{u=Bn6s^PesO_yvHIFn&Y_ZK<8 ztGIrliN*LA=RZo|HXhud`YWnFJB3ZK2n?J0*p2!Z8nSg5E7XNi8E*b~0V~;ME8Jt1 z9NfE?fpxHk91LKqUkK5J9Bi6p5M&WqMcfq)mPPg1P`KfvuQxATGoSRoEL;Wu9VHS= z+ji;FWoZA=<%cdAG=qm`Fs1n;HHIu$iH;hah8ECX{ISX|Uk1I75NtGg3~J$B7Bv)u z8AbFPEN+0|WwGFe%x48faGqS~jIJ1b`Bs(AdFeK%iWu5t>tC2^Yiwkjn&vk({qhU6 z6l0qWHefVUv~SmEG(K;&TA>Vr2La*z$9RQo1-VztaJw^LYdxz1_#trHk^%Qu4_m)= zRI+6Y!{GQuiyUy^wGgxLJ))?tw)Wf&!1imuG&P++UzS!}X8|U4sJH;GsO(nGkV3xB zv9c}h>+Xz<3^wb_gXc!PFgXL9aJ!ds&ph+qdmm+TTywJ$R={Q{?2$AH&C(4C8Yqa= z7!2^vr6PNce6!Qw;S?`}tF+KeO~U@KAFniFC^BNKh3 z5r*4_2ywU0?TpKe?bO{R@c(w=kj~x2@P9p$P`b!&HE0c1x~RH#GH9 zCL4_IYHd94Rhw?AcnzFO;BBuAlOg^KN7z{GQ-x`OZ;n&SAAO?+_SK-J&xKt86v7V} ze;=b$M!+s#r|YLygvsUYJ1ABB@faGWFvlpBIm#G49Et&~=B1fGJ<=xO!^owX4Gzqe zMoOg8wsM6G_9$>pYA1s|iWH96;qY}Y&~U)8%SSHjb@6gFe=sX{+GF(k%Rl~jc(&DS zz6@uCbcw8g^5n@AUyw+D2M3zJEPU>{XU6r4Q7Y!oUqZnFL*abo%>^%CxOvf;_ibf9 zSHsGyl`%2U32+33H#Lo590Va4fnWrJ5eP;g7=d5}f)NNtAQ*vQ1cDI=Mj#l0U<85@ r2u2_nfnWrJ5eP;g7=d5}f)NNtAQ*vQ1cDI=Mj#l0U Date: Wed, 12 Feb 2025 01:56:50 -0500 Subject: [PATCH 60/65] Throw an error with useful text message if the number of controllers suddenly changes Throw an error early since there is no way to recover from that point while the TAStudioMPR is open. They will need to select the desired Core, Reboot Core, then try it again. --- src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index 7a8c94bd204..e42dd7c5387 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -1436,6 +1436,9 @@ private IMovieController ControllerFromMnemonicStr(string inputLogEntry) if (MovieSession.MovieController.Definition.MnemonicsCache is null) throw new InvalidOperationException("Can't build mnemonic map with empty mnemonics cache"); + if (MovieSession.MovieController.Definition.ControlsOrdered.Count != TasViews.Count) + throw new InvalidOperationException("Number of Controllers has changed unexpectedly. Select desired Core, Reboot Core, and try again."); + var playerControls = MovieSession.MovieController.Definition.ControlsOrdered[viewIndex]; //foreach (var playerControls in MovieSession.MovieController.Definition.ControlsOrdered) From bdcc094af1a22fa3e085b1b5405a1c82124915c5 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 12 Feb 2025 20:49:56 +1000 Subject: [PATCH 61/65] Revert unrelated quickerNES changes --- quicknes/.clang-format | 121 - quicknes/.gitignore | 37 - quicknes/.gitmodules | 6 - quicknes/.run-clang-format.sh | 59 - quicknes/LICENSE | 339 - quicknes/README.md | 39 - quicknes/core | 2 +- quicknes/extern/hqn/.gitignore | 13 - quicknes/extern/hqn/LICENSE | 24 - quicknes/extern/hqn/hqn.cpp | 125 - quicknes/extern/hqn/hqn.h | 188 - quicknes/extern/hqn/hqn_gui_controller.cpp | 334 - quicknes/extern/hqn/hqn_gui_controller.h | 160 - quicknes/extern/hqn/hqn_surface.cpp | 302 - quicknes/extern/hqn/hqn_surface.h | 129 - quicknes/extern/hqn/meson.build | 16 - quicknes/meson.build | 60 - quicknes/meson_options.txt | 34 - quicknes/overlay/base.png | Bin 3811 -> 0 bytes quicknes/overlay/button_a.png | Bin 527 -> 0 bytes quicknes/overlay/button_b.png | Bin 534 -> 0 bytes quicknes/overlay/button_down.png | Bin 231 -> 0 bytes quicknes/overlay/button_left.png | Bin 231 -> 0 bytes quicknes/overlay/button_right.png | Bin 231 -> 0 bytes quicknes/overlay/button_select.png | Bin 245 -> 0 bytes quicknes/overlay/button_start.png | Bin 389 -> 0 bytes quicknes/overlay/button_up.png | Bin 231 -> 0 bytes quicknes/overlay/overlay.pdn | Bin 10301 -> 0 bytes quicknes/source/inputParser.hpp | 353 - quicknes/source/meson.build | 12 - quicknes/source/nesInstanceBase.hpp | 89 - quicknes/source/playbackInstance.hpp | 274 - quicknes/source/player.cpp | 241 - quicknes/source/quickNES/meson.build | 80 - quicknes/source/quickNES/nesInstance.hpp | 85 - .../quickerNES/core/apu/NESEffectsBuffer.cpp | 85 - .../quickerNES/core/apu/NESEffectsBuffer.hpp | 41 - quicknes/source/quickerNES/core/apu/apu.cpp | 375 - quicknes/source/quickerNES/core/apu/apu.hpp | 363 - .../source/quickerNES/core/apu/blipBuffer.cpp | 422 - .../source/quickerNES/core/apu/blipBuffer.hpp | 380 - .../source/quickerNES/core/apu/buffer.cpp | 230 - .../source/quickerNES/core/apu/buffer.hpp | 82 - .../quickerNES/core/apu/effectsBuffer.cpp | 518 - .../quickerNES/core/apu/effectsBuffer.hpp | 104 - .../quickerNES/core/apu/fme7/apu_fme7.cpp | 108 - .../quickerNES/core/apu/fme7/apu_fme7.hpp | 155 - .../quickerNES/core/apu/multiBuffer.cpp | 287 - .../quickerNES/core/apu/multiBuffer.hpp | 202 - .../quickerNES/core/apu/namco/apu_namco.cpp | 183 - .../quickerNES/core/apu/namco/apu_namco.hpp | 115 - quicknes/source/quickerNES/core/apu/oscs.cpp | 682 - quicknes/source/quickerNES/core/apu/oscs.hpp | 172 - .../quickerNES/core/apu/vrc6/apu_vrc6.cpp | 215 - .../quickerNES/core/apu/vrc6/apu_vrc6.hpp | 112 - .../quickerNES/core/apu/vrc7/apu_vrc7.cpp | 211 - .../quickerNES/core/apu/vrc7/apu_vrc7.hpp | 79 - .../quickerNES/core/apu/vrc7/emu2413.cpp | 1155 - .../quickerNES/core/apu/vrc7/emu2413.hpp | 223 - .../core/apu/vrc7/emu2413_state.cpp | 116 - .../core/apu/vrc7/emu2413_state.hpp | 41 - quicknes/source/quickerNES/core/cart.hpp | 117 - quicknes/source/quickerNES/core/core.hpp | 1208 - quicknes/source/quickerNES/core/cpu.cpp | 1495 - quicknes/source/quickerNES/core/cpu.hpp | 165 - quicknes/source/quickerNES/core/emu.cpp | 845 - quicknes/source/quickerNES/core/emu.hpp | 322 - .../source/quickerNES/core/mappers/mapper.cpp | 294 - .../source/quickerNES/core/mappers/mapper.hpp | 212 - .../quickerNES/core/mappers/mapper000.hpp | 38 - .../quickerNES/core/mappers/mapper001.hpp | 129 - .../quickerNES/core/mappers/mapper002.hpp | 48 - .../quickerNES/core/mappers/mapper003.hpp | 47 - .../quickerNES/core/mappers/mapper004.hpp | 258 - .../quickerNES/core/mappers/mapper005.hpp | 152 - .../quickerNES/core/mappers/mapper007.hpp | 55 - .../quickerNES/core/mappers/mapper009.hpp | 81 - .../quickerNES/core/mappers/mapper010.hpp | 79 - .../quickerNES/core/mappers/mapper011.hpp | 55 - .../quickerNES/core/mappers/mapper015.hpp | 97 - .../quickerNES/core/mappers/mapper019.hpp | 202 - .../quickerNES/core/mappers/mapper021.hpp | 259 - .../quickerNES/core/mappers/mapper022.hpp | 37 - .../quickerNES/core/mappers/mapper023.hpp | 36 - .../quickerNES/core/mappers/mapper024.hpp | 236 - .../quickerNES/core/mappers/mapper025.hpp | 36 - .../quickerNES/core/mappers/mapper026.hpp | 14 - .../quickerNES/core/mappers/mapper030.hpp | 56 - .../quickerNES/core/mappers/mapper032.hpp | 129 - .../quickerNES/core/mappers/mapper033.hpp | 106 - .../quickerNES/core/mappers/mapper034.hpp | 47 - .../quickerNES/core/mappers/mapper060.hpp | 56 - .../quickerNES/core/mappers/mapper066.hpp | 55 - .../quickerNES/core/mappers/mapper069.hpp | 193 - .../quickerNES/core/mappers/mapper070.hpp | 87 - .../quickerNES/core/mappers/mapper071.hpp | 57 - .../quickerNES/core/mappers/mapper073.hpp | 137 - .../quickerNES/core/mappers/mapper075.hpp | 113 - .../quickerNES/core/mappers/mapper078.hpp | 80 - .../quickerNES/core/mappers/mapper079.hpp | 98 - .../quickerNES/core/mappers/mapper085.hpp | 228 - .../quickerNES/core/mappers/mapper086.hpp | 29 - .../quickerNES/core/mappers/mapper087.hpp | 53 - .../quickerNES/core/mappers/mapper088.hpp | 114 - .../quickerNES/core/mappers/mapper089.hpp | 62 - .../quickerNES/core/mappers/mapper093.hpp | 61 - .../quickerNES/core/mappers/mapper094.hpp | 60 - .../quickerNES/core/mappers/mapper097.hpp | 69 - .../quickerNES/core/mappers/mapper113.hpp | 33 - .../quickerNES/core/mappers/mapper140.hpp | 69 - .../quickerNES/core/mappers/mapper152.hpp | 29 - .../quickerNES/core/mappers/mapper154.hpp | 33 - .../quickerNES/core/mappers/mapper156.hpp | 65 - .../quickerNES/core/mappers/mapper180.hpp | 60 - .../quickerNES/core/mappers/mapper184.hpp | 70 - .../quickerNES/core/mappers/mapper190.hpp | 60 - .../quickerNES/core/mappers/mapper193.hpp | 81 - .../quickerNES/core/mappers/mapper206.hpp | 103 - .../quickerNES/core/mappers/mapper207.hpp | 96 - .../quickerNES/core/mappers/mapper232.hpp | 59 - .../quickerNES/core/mappers/mapper240.hpp | 69 - .../quickerNES/core/mappers/mapper241.hpp | 58 - .../quickerNES/core/mappers/mapper244.hpp | 75 - .../quickerNES/core/mappers/mapper246.hpp | 80 - quicknes/source/quickerNES/core/ppu/ppu.cpp | 659 - quicknes/source/quickerNES/core/ppu/ppu.hpp | 146 - .../source/quickerNES/core/ppu/ppuImpl.cpp | 436 - .../source/quickerNES/core/ppu/ppuImpl.hpp | 263 - .../quickerNES/core/ppu/ppuRendering.cpp | 506 - .../quickerNES/core/ppu/ppuRendering.hpp | 64 - .../source/quickerNES/core/ppu/ppuSprites.hpp | 132 - quicknes/source/quickerNES/meson.build | 47 - quicknes/source/quickerNES/nesInstance.hpp | 79 - quicknes/source/tester.cpp | 286 - quicknes/tests/.gitignore | 9 - quicknes/tests/README.md | 20 - quicknes/tests/arkanoid.arkNESController.sol | 9342 - quicknes/tests/arkanoid.arkNESController.test | 15 - quicknes/tests/arkanoid.warpless.sol | 39431 -- quicknes/tests/arkanoid.warpless.test | 15 - quicknes/tests/arkanoid.warps.sol | 15806 - quicknes/tests/arkanoid.warps.test | 15 - .../tests/arkanoid2.arkFamicomController.sol | 3472 - .../tests/arkanoid2.arkFamicomController.test | 15 - quicknes/tests/castlevania1.anyPercent.sol | 37338 -- quicknes/tests/castlevania1.anyPercent.test | 15 - quicknes/tests/castlevania1.pacifist.sol | 39555 -- quicknes/tests/castlevania1.pacifist.test | 15 - quicknes/tests/castlevania3.playaround.sol | 3499 - quicknes/tests/castlevania3.playaround.test | 15 - quicknes/tests/galaga.anyPercent.sol | 29916 -- quicknes/tests/galaga.anyPercent.test | 15 - quicknes/tests/ironSword.anyPercent.sol | 25785 -- quicknes/tests/ironSword.anyPercent.test | 15 - quicknes/tests/meson.build | 118 - quicknes/tests/metroid.playaround.sol | 1729 - quicknes/tests/metroid.playaround.test | 15 - quicknes/tests/microMachines.race20.sol | 1802 - quicknes/tests/microMachines.race20.state | Bin 22946 -> 0 bytes quicknes/tests/microMachines.race20.test | 15 - quicknes/tests/nigelMansell.anyPercent.sol | 296590 --------------- quicknes/tests/nigelMansell.anyPercent.test | 15 - quicknes/tests/ninjaGaiden.anyPercent.sol | 39111 -- quicknes/tests/ninjaGaiden.anyPercent.test | 15 - quicknes/tests/ninjaGaiden.pacifist.sol | 40680 -- quicknes/tests/ninjaGaiden.pacifist.test | 15 - quicknes/tests/ninjaGaiden2.anyPercent.sol | 34660 -- quicknes/tests/ninjaGaiden2.anyPercent.test | 15 - quicknes/tests/ninjaGaiden2.pacifist.sol | 36619 -- quicknes/tests/ninjaGaiden2.pacifist.test | 15 - quicknes/tests/novaTheSquirrel.anyPercent.sol | 45472 --- .../tests/novaTheSquirrel.anyPercent.test | 15 - quicknes/tests/princeOfPersia.anyPercent.sol | 55827 --- quicknes/tests/princeOfPersia.anyPercent.test | 15 - quicknes/tests/rcProAmII.race1.sol | 5482 - quicknes/tests/rcProAmII.race1.test | 15 - quicknes/tests/roms/README.md | 3 - .../saintSeiyaKanketsuHen.anyPercent.sol | 86170 ----- .../saintSeiyaKanketsuHen.anyPercent.test | 15 - .../saintSeiyaOugonDensetsu.anyPercent.sol | 76723 ---- .../saintSeiyaOugonDensetsu.anyPercent.test | 15 - quicknes/tests/saiyuukiWorld.anyPercent.sol | 44671 --- quicknes/tests/saiyuukiWorld.anyPercent.test | 15 - quicknes/tests/saiyuukiWorld.lastHalf.sol | 22672 -- quicknes/tests/saiyuukiWorld.lastHalf.state | Bin 22937 -> 0 bytes quicknes/tests/saiyuukiWorld.lastHalf.test | 15 - quicknes/tests/solarJetman.anyPercent.sol | 45983 --- quicknes/tests/solarJetman.anyPercent.test | 17 - quicknes/tests/sprilo.anyPercent.sol | 4572 - quicknes/tests/sprilo.anyPercent.test | 15 - quicknes/tests/superMarioBros.warpless.sol | 67115 ---- quicknes/tests/superMarioBros.warpless.test | 15 - quicknes/tests/superMarioBros.warps.sol | 17867 - quicknes/tests/superMarioBros.warps.test | 15 - quicknes/tests/superMarioBros3.warps.sol | 37520 -- quicknes/tests/superMarioBros3.warps.test | 15 - quicknes/tests/superOffroad.anyPercent.sol | 182180 --------- quicknes/tests/superOffroad.anyPercent.test | 15 - quicknes/tests/tennis.anyPercent.sol | 40627 -- quicknes/tests/tennis.anyPercent.test | 15 - 200 files changed, 1 insertion(+), 1410660 deletions(-) delete mode 100644 quicknes/.clang-format delete mode 100644 quicknes/.gitignore delete mode 100644 quicknes/.gitmodules delete mode 100644 quicknes/.run-clang-format.sh delete mode 100644 quicknes/LICENSE delete mode 100644 quicknes/README.md delete mode 100644 quicknes/extern/hqn/.gitignore delete mode 100644 quicknes/extern/hqn/LICENSE delete mode 100644 quicknes/extern/hqn/hqn.cpp delete mode 100644 quicknes/extern/hqn/hqn.h delete mode 100644 quicknes/extern/hqn/hqn_gui_controller.cpp delete mode 100644 quicknes/extern/hqn/hqn_gui_controller.h delete mode 100644 quicknes/extern/hqn/hqn_surface.cpp delete mode 100644 quicknes/extern/hqn/hqn_surface.h delete mode 100644 quicknes/extern/hqn/meson.build delete mode 100644 quicknes/meson.build delete mode 100644 quicknes/meson_options.txt delete mode 100644 quicknes/overlay/base.png delete mode 100644 quicknes/overlay/button_a.png delete mode 100644 quicknes/overlay/button_b.png delete mode 100644 quicknes/overlay/button_down.png delete mode 100644 quicknes/overlay/button_left.png delete mode 100644 quicknes/overlay/button_right.png delete mode 100644 quicknes/overlay/button_select.png delete mode 100644 quicknes/overlay/button_start.png delete mode 100644 quicknes/overlay/button_up.png delete mode 100644 quicknes/overlay/overlay.pdn delete mode 100644 quicknes/source/inputParser.hpp delete mode 100644 quicknes/source/meson.build delete mode 100644 quicknes/source/nesInstanceBase.hpp delete mode 100644 quicknes/source/playbackInstance.hpp delete mode 100644 quicknes/source/player.cpp delete mode 100644 quicknes/source/quickNES/meson.build delete mode 100644 quicknes/source/quickNES/nesInstance.hpp delete mode 100644 quicknes/source/quickerNES/core/apu/NESEffectsBuffer.cpp delete mode 100644 quicknes/source/quickerNES/core/apu/NESEffectsBuffer.hpp delete mode 100644 quicknes/source/quickerNES/core/apu/apu.cpp delete mode 100644 quicknes/source/quickerNES/core/apu/apu.hpp delete mode 100644 quicknes/source/quickerNES/core/apu/blipBuffer.cpp delete mode 100644 quicknes/source/quickerNES/core/apu/blipBuffer.hpp delete mode 100644 quicknes/source/quickerNES/core/apu/buffer.cpp delete mode 100644 quicknes/source/quickerNES/core/apu/buffer.hpp delete mode 100644 quicknes/source/quickerNES/core/apu/effectsBuffer.cpp delete mode 100644 quicknes/source/quickerNES/core/apu/effectsBuffer.hpp delete mode 100644 quicknes/source/quickerNES/core/apu/fme7/apu_fme7.cpp delete mode 100644 quicknes/source/quickerNES/core/apu/fme7/apu_fme7.hpp delete mode 100644 quicknes/source/quickerNES/core/apu/multiBuffer.cpp delete mode 100644 quicknes/source/quickerNES/core/apu/multiBuffer.hpp delete mode 100644 quicknes/source/quickerNES/core/apu/namco/apu_namco.cpp delete mode 100644 quicknes/source/quickerNES/core/apu/namco/apu_namco.hpp delete mode 100644 quicknes/source/quickerNES/core/apu/oscs.cpp delete mode 100644 quicknes/source/quickerNES/core/apu/oscs.hpp delete mode 100644 quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.cpp delete mode 100644 quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.hpp delete mode 100644 quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.cpp delete mode 100644 quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.hpp delete mode 100644 quicknes/source/quickerNES/core/apu/vrc7/emu2413.cpp delete mode 100644 quicknes/source/quickerNES/core/apu/vrc7/emu2413.hpp delete mode 100644 quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.cpp delete mode 100644 quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.hpp delete mode 100644 quicknes/source/quickerNES/core/cart.hpp delete mode 100644 quicknes/source/quickerNES/core/core.hpp delete mode 100644 quicknes/source/quickerNES/core/cpu.cpp delete mode 100644 quicknes/source/quickerNES/core/cpu.hpp delete mode 100644 quicknes/source/quickerNES/core/emu.cpp delete mode 100644 quicknes/source/quickerNES/core/emu.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper.cpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper000.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper001.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper002.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper003.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper004.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper005.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper007.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper009.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper010.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper011.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper015.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper019.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper021.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper022.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper023.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper024.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper025.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper026.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper030.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper032.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper033.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper034.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper060.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper066.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper069.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper070.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper071.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper073.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper075.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper078.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper079.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper085.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper086.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper087.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper088.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper089.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper093.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper094.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper097.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper113.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper140.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper152.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper154.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper156.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper180.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper184.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper190.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper193.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper206.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper207.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper232.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper240.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper241.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper244.hpp delete mode 100644 quicknes/source/quickerNES/core/mappers/mapper246.hpp delete mode 100644 quicknes/source/quickerNES/core/ppu/ppu.cpp delete mode 100644 quicknes/source/quickerNES/core/ppu/ppu.hpp delete mode 100644 quicknes/source/quickerNES/core/ppu/ppuImpl.cpp delete mode 100644 quicknes/source/quickerNES/core/ppu/ppuImpl.hpp delete mode 100644 quicknes/source/quickerNES/core/ppu/ppuRendering.cpp delete mode 100644 quicknes/source/quickerNES/core/ppu/ppuRendering.hpp delete mode 100644 quicknes/source/quickerNES/core/ppu/ppuSprites.hpp delete mode 100644 quicknes/source/quickerNES/meson.build delete mode 100644 quicknes/source/quickerNES/nesInstance.hpp delete mode 100644 quicknes/source/tester.cpp delete mode 100644 quicknes/tests/.gitignore delete mode 100644 quicknes/tests/README.md delete mode 100644 quicknes/tests/arkanoid.arkNESController.sol delete mode 100644 quicknes/tests/arkanoid.arkNESController.test delete mode 100644 quicknes/tests/arkanoid.warpless.sol delete mode 100644 quicknes/tests/arkanoid.warpless.test delete mode 100644 quicknes/tests/arkanoid.warps.sol delete mode 100644 quicknes/tests/arkanoid.warps.test delete mode 100644 quicknes/tests/arkanoid2.arkFamicomController.sol delete mode 100644 quicknes/tests/arkanoid2.arkFamicomController.test delete mode 100644 quicknes/tests/castlevania1.anyPercent.sol delete mode 100644 quicknes/tests/castlevania1.anyPercent.test delete mode 100644 quicknes/tests/castlevania1.pacifist.sol delete mode 100644 quicknes/tests/castlevania1.pacifist.test delete mode 100644 quicknes/tests/castlevania3.playaround.sol delete mode 100644 quicknes/tests/castlevania3.playaround.test delete mode 100644 quicknes/tests/galaga.anyPercent.sol delete mode 100644 quicknes/tests/galaga.anyPercent.test delete mode 100644 quicknes/tests/ironSword.anyPercent.sol delete mode 100644 quicknes/tests/ironSword.anyPercent.test delete mode 100644 quicknes/tests/meson.build delete mode 100644 quicknes/tests/metroid.playaround.sol delete mode 100644 quicknes/tests/metroid.playaround.test delete mode 100644 quicknes/tests/microMachines.race20.sol delete mode 100644 quicknes/tests/microMachines.race20.state delete mode 100644 quicknes/tests/microMachines.race20.test delete mode 100644 quicknes/tests/nigelMansell.anyPercent.sol delete mode 100644 quicknes/tests/nigelMansell.anyPercent.test delete mode 100644 quicknes/tests/ninjaGaiden.anyPercent.sol delete mode 100644 quicknes/tests/ninjaGaiden.anyPercent.test delete mode 100644 quicknes/tests/ninjaGaiden.pacifist.sol delete mode 100644 quicknes/tests/ninjaGaiden.pacifist.test delete mode 100644 quicknes/tests/ninjaGaiden2.anyPercent.sol delete mode 100644 quicknes/tests/ninjaGaiden2.anyPercent.test delete mode 100644 quicknes/tests/ninjaGaiden2.pacifist.sol delete mode 100644 quicknes/tests/ninjaGaiden2.pacifist.test delete mode 100644 quicknes/tests/novaTheSquirrel.anyPercent.sol delete mode 100644 quicknes/tests/novaTheSquirrel.anyPercent.test delete mode 100644 quicknes/tests/princeOfPersia.anyPercent.sol delete mode 100644 quicknes/tests/princeOfPersia.anyPercent.test delete mode 100644 quicknes/tests/rcProAmII.race1.sol delete mode 100644 quicknes/tests/rcProAmII.race1.test delete mode 100644 quicknes/tests/roms/README.md delete mode 100644 quicknes/tests/saintSeiyaKanketsuHen.anyPercent.sol delete mode 100644 quicknes/tests/saintSeiyaKanketsuHen.anyPercent.test delete mode 100644 quicknes/tests/saintSeiyaOugonDensetsu.anyPercent.sol delete mode 100644 quicknes/tests/saintSeiyaOugonDensetsu.anyPercent.test delete mode 100644 quicknes/tests/saiyuukiWorld.anyPercent.sol delete mode 100644 quicknes/tests/saiyuukiWorld.anyPercent.test delete mode 100644 quicknes/tests/saiyuukiWorld.lastHalf.sol delete mode 100644 quicknes/tests/saiyuukiWorld.lastHalf.state delete mode 100644 quicknes/tests/saiyuukiWorld.lastHalf.test delete mode 100644 quicknes/tests/solarJetman.anyPercent.sol delete mode 100644 quicknes/tests/solarJetman.anyPercent.test delete mode 100644 quicknes/tests/sprilo.anyPercent.sol delete mode 100644 quicknes/tests/sprilo.anyPercent.test delete mode 100644 quicknes/tests/superMarioBros.warpless.sol delete mode 100644 quicknes/tests/superMarioBros.warpless.test delete mode 100644 quicknes/tests/superMarioBros.warps.sol delete mode 100644 quicknes/tests/superMarioBros.warps.test delete mode 100644 quicknes/tests/superMarioBros3.warps.sol delete mode 100644 quicknes/tests/superMarioBros3.warps.test delete mode 100644 quicknes/tests/superOffroad.anyPercent.sol delete mode 100644 quicknes/tests/superOffroad.anyPercent.test delete mode 100644 quicknes/tests/tennis.anyPercent.sol delete mode 100644 quicknes/tests/tennis.anyPercent.test diff --git a/quicknes/.clang-format b/quicknes/.clang-format deleted file mode 100644 index c818c8e955b..00000000000 --- a/quicknes/.clang-format +++ /dev/null @@ -1,121 +0,0 @@ ---- -Language: Cpp -# BasedOnStyle: LLVM -AccessModifierOffset: -4 -AlignAfterOpenBracket: Align -AlignConsecutiveAssignments: false -AlignConsecutiveDeclarations: false -AlignEscapedNewlines: Right -AlignOperands: true -AlignTrailingComments: true -AllowAllParametersOfDeclarationOnNextLine: true -AllowShortLambdasOnASingleLine: None -AllowShortBlocksOnASingleLine: true -AllowShortCaseLabelsOnASingleLine: true -AllowShortFunctionsOnASingleLine: All -AllowShortIfStatementsOnASingleLine: true -AllowShortLoopsOnASingleLine: true -AlwaysBreakAfterDefinitionReturnType: None -AlwaysBreakAfterReturnType: None -AlwaysBreakBeforeMultilineStrings: false -AlwaysBreakTemplateDeclarations: Yes -BinPackArguments: false -BinPackParameters: false -BraceWrapping: - AfterClass: false - AfterControlStatement: false - AfterEnum: false - AfterFunction: false - AfterNamespace: false - AfterObjCDeclaration: false - AfterStruct: false - AfterUnion: false - AfterExternBlock: false - BeforeCatch: false - BeforeElse: false - IndentBraces: false - SplitEmptyFunction: true - SplitEmptyRecord: true - SplitEmptyNamespace: true -BreakBeforeBinaryOperators: None -BreakBeforeBraces: Allman -BreakBeforeInheritanceComma: false -BreakInheritanceList: BeforeColon -BreakBeforeTernaryOperators: true -BreakConstructorInitializersBeforeComma: false -BreakConstructorInitializers: BeforeColon -BreakAfterJavaFieldAnnotations: false -BreakStringLiterals: false -ColumnLimit: 0 -CommentPragmas: '^ IWYU pragma:' -CompactNamespaces: false -ConstructorInitializerAllOnOneLineOrOnePerLine: false -ConstructorInitializerIndentWidth: 2 -ContinuationIndentWidth: 2 -Cpp11BracedListStyle: true -DerivePointerAlignment: false -DisableFormat: false -ExperimentalAutoDetectBinPacking: false -FixNamespaceComments: true -ForEachMacros: - - foreach - - Q_FOREACH - - BOOST_FOREACH -IncludeBlocks: Preserve -IncludeCategories: - - Regex: '^"(llvm|llvm-c|clang|clang-c)/' - Priority: 2 - - Regex: '^(<|"(gtest|gmock|isl|json)/)' - Priority: 3 - - Regex: '.*' - Priority: 1 -IncludeIsMainRegex: '(Test)?$' -IndentCaseLabels: false -IndentPPDirectives: BeforeHash -IndentWidth: 2 -IndentWrappedFunctionNames: false -JavaScriptQuotes: Leave -JavaScriptWrapImports: true -KeepEmptyLinesAtTheStartOfBlocks: false -MacroBlockBegin: '' -MacroBlockEnd: '' -MaxEmptyLinesToKeep: 1 -NamespaceIndentation: None -ObjCBinPackProtocolList: Auto -ObjCBlockIndentWidth: 2 -ObjCSpaceAfterProperty: false -ObjCSpaceBeforeProtocolList: true -PenaltyBreakAssignment: 2 -PenaltyBreakBeforeFirstCallParameter: 19 -PenaltyBreakComment: 300 -PenaltyBreakFirstLessLess: 120 -PenaltyBreakString: 1000 -PenaltyBreakTemplateDeclaration: 10 -PenaltyExcessCharacter: 1000000 -PenaltyReturnTypeOnItsOwnLine: 60 -PointerAlignment: Right -ReflowComments: true -SortIncludes: true -SortUsingDeclarations: true -SpaceAfterCStyleCast: false -SpaceAfterTemplateKeyword: true -SpaceBeforeAssignmentOperators: true -SpaceBeforeCpp11BracedList: false -SpaceBeforeCtorInitializerColon: true -SpaceBeforeInheritanceColon: true -SpaceBeforeParens: ControlStatements -SpaceBeforeRangeBasedForLoopColon: true -SpaceInEmptyParentheses: false -SpacesBeforeTrailingComments: 1 -SpacesInAngles: false -SpacesInContainerLiterals: true -SpacesInCStyleCastParentheses: false -SpacesInParentheses: false -SpacesInSquareBrackets: false -Standard: Cpp11 -StatementMacros: - - Q_UNUSED - - QT_REQUIRE_VERSION -TabWidth: 2 -UseTab: Never -... diff --git a/quicknes/.gitignore b/quicknes/.gitignore deleted file mode 100644 index 4dcaec30840..00000000000 --- a/quicknes/.gitignore +++ /dev/null @@ -1,37 +0,0 @@ -run-clang-format - -# Things -.vscode - -# Prerequisites -*.d - -# Compiled Object files -*.slo -*.lo -*.o -*.obj - -# Precompiled Headers -*.gch -*.pch - -# Compiled Dynamic libraries -*.so -*.dylib -*.dll - -# Fortran module files -*.mod -*.smod - -# Compiled Static libraries -*.lai -*.la -*.a -*.lib - -# Executables -*.exe -*.out -*.app diff --git a/quicknes/.gitmodules b/quicknes/.gitmodules deleted file mode 100644 index 146089274c6..00000000000 --- a/quicknes/.gitmodules +++ /dev/null @@ -1,6 +0,0 @@ -[submodule "source/quickNES/QuickNES_Core"] - path = source/quickNES/core - url = https://github.com/SergioMartin86/QuickNES_Core.git -[submodule "source/jaffarCommon"] - path = extern/jaffarCommon - url = https://github.com/SergioMartin86/jaffarCommon.git diff --git a/quicknes/.run-clang-format.sh b/quicknes/.run-clang-format.sh deleted file mode 100644 index 68188ea428f..00000000000 --- a/quicknes/.run-clang-format.sh +++ /dev/null @@ -1,59 +0,0 @@ -#!/usr/bin/env bash -if [[ $# -ne 1 ]]; then - echo "Usage: $0 " - exit 1 -fi -task="${1}"; shift - -function check() -{ - if [ ! $? -eq 0 ]; then - echo "Error fixing style." - exit -1 - fi -} - -function check_syntax() -{ - # If run-clang-format is not installed, clone it - if [ ! -f run-clang-format/run-clang-format.py ]; then - - git clone https://github.com/Sarcasm/run-clang-format.git - if [ ! $? -eq 0 ]; then - echo "Error installing run-clang-format." - exit 1 - fi - fi - - python3 run-clang-format/run-clang-format.py --recursive source --extensions "cpp,hpp" - - if [ ! $? -eq 0 ]; then - echo "Error: C++ Code formatting in source is not normalized." - echo "Solution: Please run this program with the 'fix' argument" - exit -1 - fi -} - -function fix_syntax() -{ - src_files=`find source -type f -name "*.cpp" -o -name "*.hpp"` - echo $src_files | xargs -n6 -P2 clang-format -style=file -i "$@" - check -} - -############################################## -### Testing/fixing C++ Code Style -############################################## -command -v clang-format >/dev/null -if [ ! $? -eq 0 ]; then - echo "Error: please install clang-format on your system." - exit -1 -fi - -if [[ "${task}" == 'check' ]]; then - check_syntax -else - fix_syntax -fi - -exit 0 \ No newline at end of file diff --git a/quicknes/LICENSE b/quicknes/LICENSE deleted file mode 100644 index d159169d105..00000000000 --- a/quicknes/LICENSE +++ /dev/null @@ -1,339 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. diff --git a/quicknes/README.md b/quicknes/README.md deleted file mode 100644 index 3267d4ef274..00000000000 --- a/quicknes/README.md +++ /dev/null @@ -1,39 +0,0 @@ -quickerNES ------------ - -[![Build & Tests](https://github.com/SergioMartin86/quickerNES/actions/workflows/make.yml/badge.svg)](https://github.com/SergioMartin86/quickerNES/actions/workflows/make.yml) - -quickerNES is an attempt to modernizing [quickNES](https://github.com/kode54/QuickNES). The goals for this project are, in order of importance: - -- Improve overall emulation performance for modern (x86) CPUs (portability to other systems not guaranteed) -- Modernize the code base with best programming practices, including CI tests, benchmarks, and coverage analysis -- Add support for more mappers, controllers, and features supported by other emulators -- Improve accuracy, if possible - -The main aim is to improve the performance of headless re-recording for TASing and botting (See: [JaffarPlus](https://github.com/SergioMartin86/jaffarPlus)) purposes. However, if this work can help regular play emulation, then much better. - -Improvements -------------- - -- Optimizations made in the CPU emulation core, including: - + Forced alignment at the start of a page to prevent crossing cache line boundaries - + Simplifying the 6502 CPU instruction fetching and decoding - + Multiple branch optimizations - + Assuming little endiannes to reduce unnecessary conversion operations (not portable to big endian systems) - + Minimize compiled code size to reduce pressure on L1i cache -- Added support for FourScore controller -- General code reorganization (make it header only to help compiler optimizations) - -Credits ---------- - -- quickNES was originally by Shay Green (a.k.a. [Blaarg](http://www.slack.net/~ant/)) under the GNU GPLv2 license. The source code is still located [here](https://github.com/kode54/QuickNES) -- The code was later improved and maintained by Christopher Snowhill (a.k.a. [kode54](https://kode54.net/)) -- I could trace further contributions (e.g., new mappers) by retrowertz, CaH4e3, some adaptations from the [FCEUX emulator](https://github.com/TASEmulators/fceux) (see mapper021) -- The latest version of the code is maintained by Libretro's community [here](https://github.com/libretro/QuickNES_Core) -- For the interactive player, this project drew some code from [HeadlessQuickNES (HQN)](https://github.com/Bindernews/HeadlessQuickNes) by Drew (Binder News) -- We use some of the [NES test rom set](https://github.com/christopherpow/nes-test-roms) made by multiple authors and gathered by Christopher Pow et al. -- We also use some movies from the [TASVideos](tasvideos.org) website for testing. These movies are copied into this repository with authorization under the Creative Commons Attribution 2.0 license. - -All base code for this project was found under open source licenses, which I preserved in their corresponding files/folders. Any non-credited work is unintentional and shall be immediately rectfied. - diff --git a/quicknes/core b/quicknes/core index b6d45edd9a8..ac1fde2036c 160000 --- a/quicknes/core +++ b/quicknes/core @@ -1 +1 @@ -Subproject commit b6d45edd9a87d926a004d67bae88487dc7cfd12a +Subproject commit ac1fde2036c3e4a2544a3f56196c33a17b60c90d diff --git a/quicknes/extern/hqn/.gitignore b/quicknes/extern/hqn/.gitignore deleted file mode 100644 index 4cb7be1c265..00000000000 --- a/quicknes/extern/hqn/.gitignore +++ /dev/null @@ -1,13 +0,0 @@ -LuaJIT/ -SDL2/ -bin/ -build/ -*.o -*.obj -*.a -*.lib -*.so -*.so.* -*.dll -*.exe -hqnes diff --git a/quicknes/extern/hqn/LICENSE b/quicknes/extern/hqn/LICENSE deleted file mode 100644 index 75dbd7d9ed9..00000000000 --- a/quicknes/extern/hqn/LICENSE +++ /dev/null @@ -1,24 +0,0 @@ -Slightly modified version of HeadlessQuickNES (https://github.com/Bindernews/HeadlessQuickNes). -Modified by Sergio Martin based on the original HQN by: - -The MIT License (MIT) - -Copyright (c) 2016 Drew - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/quicknes/extern/hqn/hqn.cpp b/quicknes/extern/hqn/hqn.cpp deleted file mode 100644 index 061a94e4339..00000000000 --- a/quicknes/extern/hqn/hqn.cpp +++ /dev/null @@ -1,125 +0,0 @@ -#include -#include -#include "hqn.h" - -namespace hqn -{ - -// Function to initalize the video palette -int32_t *_initF_VideoPalette() -{ - static int32_t VideoPalette[512]; - const emulator_t::rgb_t *palette = emulator_t::nes_colors; - for (int i = 0; i < 512; i++) - { - VideoPalette[i] = palette[i].red << 16 | palette[i].green << 8 - | palette[i].blue | 0xff000000; - } - return VideoPalette; -} - -// Initialize the video palette -const int32_t *HQNState::NES_VIDEO_PALETTE = _initF_VideoPalette(); - -// Constructor -HQNState::HQNState() -{ - m_emu = new emulator_t(); - joypad[0] = 0x00; - joypad[1] = 0x00; - - m_listener = nullptr; - m_romData = nullptr; - m_romSize = 0; - - m_emu->set_sample_rate(44100); - - m_prevFrame = 0; - m_msPerFrame = 0; - m_initialFrame = SDL_GetTicks(); -} - -// Destructor -HQNState::~HQNState() -{ -} - -error_t HQNState::setSampleRate(int rate) -{ - const char *ret = m_emu->set_sample_rate(rate); - if (!ret) - m_emu->set_equalizer(emulator_t::nes_eq); - return ret; -} - - -error_t HQNState::saveState(void *dest, size_t size, size_t *size_out) -{ - return 0; -} - -error_t HQNState::saveStateSize(size_t *size) const -{ - return 0; -} - -error_t HQNState::loadState(const char *data, size_t size) -{ - return 0; -} - -// Advance the emulator -error_t HQNState::advanceFrame(bool sleep) -{ - Uint32 ticks; - ticks = SDL_GetTicks(); - Uint32 wantTicks = m_prevFrame + m_msPerFrame; - if (wantTicks > ticks) - { - SDL_Delay(wantTicks - ticks); - } - // m_frameTime = wantTicks - m_prevFrame; - // error_t result = m_emu->emulate_frame(joypad[0], joypad[1]); - if (m_listener) - m_listener->onAdvanceFrame(this); - ticks = SDL_GetTicks(); - m_frameTime = ticks - m_prevFrame; - m_prevFrame = ticks; - return 0; -} - -void HQNState::setFramerate(int fps) -{ - if (fps == 0) - { - m_msPerFrame = 0; - } - else - { - m_msPerFrame = (long)(1000.0 / fps); - } -} - -int HQNState::getFramerate() const -{ - if (m_msPerFrame) - { - return (int)(1000.0 / m_msPerFrame); - } - else - { - return 0; - } -} - -double HQNState::getFPS() const -{ - double ft = m_frameTime ? m_frameTime : 1; - double fps = 1000.0 / ft; - // round to 2 decimal places - fps = std::floor(fps * 100) / 100; - return fps; -} - - -} // end namespace hqn diff --git a/quicknes/extern/hqn/hqn.h b/quicknes/extern/hqn/hqn.h deleted file mode 100644 index 11ce4eca6ef..00000000000 --- a/quicknes/extern/hqn/hqn.h +++ /dev/null @@ -1,188 +0,0 @@ -#ifndef __HQN_H__ -#define __HQN_H__ - -#include -#include -#include - -#define BLIT_SIZE 65536 - -// Creating emulator instance - -namespace hqn -{ - -typedef const char *error_t; - -class HQNState; - -class HQNListener -{ -public: - HQNListener() = default; - virtual ~HQNListener() = default; - - virtual void onLoadROM(HQNState *state, const char *filename) = 0; - virtual void onAdvanceFrame(HQNState *state) = 0; - virtual void onLoadState(HQNState *state) = 0; -}; - -/* -State which is maintained by the emulator driver. - -This should normally be obtained using hqn_get_state() if you are in a lua -function. -*/ -class HQNState -{ -public: - - /* A reference to the emulator instance. */ - emulator_t *m_emu; - - static const int32_t *NES_VIDEO_PALETTE; - - /** - * Constructor. - */ - HQNState(); - ~HQNState(); - - void setEmulatorPointer(void* const emuPtr) { m_emu = (emulator_t*)emuPtr; } - - /* - The joypad data for the two joypads available to an NES. - This is directly available because I'm lazy. - */ - uint32_t joypad[2]; - - /* Get the emulator this state uses. */ - inline emulator_t *emu() const - { return m_emu; } - - - /* - Advance the emulator by one frame. If sleep is true and there is a frame - limit set advanceFrame() will sleep in order to limit the framerate. - Returns NULL or error string. - */ - error_t advanceFrame(bool sleep=true); - - /* - Save the game state. This can be restored at any time. - */ - error_t saveState(void *dest, size_t size, size_t *size_out); - - /* - Get the size (bytes) of a savestate. - Use this to allocate enough space for the saveState method. - */ - error_t saveStateSize(size_t *size) const; - - /* - Load the emulator state from data. - This should be data produced by saveState(). - */ - error_t loadState(const char *data, size_t size); - - - error_t setSampleRate(int rate); - - /** - * Set a limit to the framerate. - * 0 means no limit. - */ - void setFramerate(int fps); - - /** - * Get the current framerate limit. - */ - int getFramerate() const; - - /** - * Get the calculated frames per second. - */ - double getFPS() const; - - inline HQNListener *getListener() const - { return m_listener; } - - inline void setListener(HQNListener *l) - { m_listener = l; } - - /** - * Get the state of the keyboard. Use this to update the keyboard state. - */ - inline uint8_t *getKeyboard() - { return m_keyboard; } - -private: - /* ROM file stored in memory because reasons */ - uint8_t *m_romData; - size_t m_romSize; - /* Minimum milliseconds between each frame. */ - uint32_t m_msPerFrame; - /* time value of previous frame. */ - uint32_t m_prevFrame; - /* The listener */ - HQNListener *m_listener; - /* Keyboard state */ - uint8_t m_keyboard[256]; - /* Number of frames we've processed */ - uint32_t m_frames; - /* How long it took to process the previous frame */ - uint32_t m_frameTime; - uint32_t m_initialFrame; -}; - -/* -Print the usage message. -@param filename used to specify the name of the exe file, may be NULL. -*/ -void printUsage(const char *filename); - -} // end namespace hqn - -// Copied from bizinterface.cpp in BizHawk/quicknes -inline void saveBlit(const void *ePtr, int32_t *dest, const int32_t *colors, int cropleft, int croptop, int cropright, int cropbottom) -{ - // what is the point of the 256 color bitmap and the dynamic color allocation to it? - // why not just render directly to a 512 color bitmap with static palette positions? -// emulator_t *e = m_emu; // e was a parameter but since this is now part of a class, it's just in here -// const int srcpitch = e->frame().pitch; -// const unsigned char *src = e->frame().pixels; -// const unsigned char *const srcend = src + (e->image_height - cropbottom) * srcpitch; -// -// const short *lut = e->frame().palette; -// -// const int rowlen = 256 - cropleft - cropright; -// -// src += cropleft; -// src += croptop * srcpitch; -// -// for (; src < srcend; src += srcpitch) -// { -// for (int i = 0; i < rowlen; i++) -// { -// *dest++ = colors[lut[src[i]]]; -// } -// } - - const emulator_t *e = (emulator_t*) ePtr; - const unsigned char *in_pixels = e->frame().pixels; - if (in_pixels == NULL) return; - int32_t *out_pixels = dest; - - for (unsigned h = 0; h < emulator_t::image_height; h++, in_pixels += e->frame().pitch, out_pixels += emulator_t::image_width) - for (unsigned w = 0; w < emulator_t::image_width; w++) - { - unsigned col = e->frame().palette[in_pixels[w]]; - const emulator_t::rgb_t& rgb = e->nes_colors[col]; - unsigned r = rgb.red; - unsigned g = rgb.green; - unsigned b = rgb.blue; - out_pixels[w] = (r << 16) | (g << 8) | (b << 0); - } -} - -#endif /* __HQN_H__ */ diff --git a/quicknes/extern/hqn/hqn_gui_controller.cpp b/quicknes/extern/hqn/hqn_gui_controller.cpp deleted file mode 100644 index d323d624dc0..00000000000 --- a/quicknes/extern/hqn/hqn_gui_controller.cpp +++ /dev/null @@ -1,334 +0,0 @@ -#include "hqn_gui_controller.h" -#include -#include -#include - -#define DEFAULT_WIDTH 256 -#define DEFAULT_HEIGHT 240 - -namespace hqn -{ - -const char *DEFAULT_WINDOW_TITLE = "HeadlessQuickNES"; - - -const SDL_Rect NES_BLIT_RECT = { 0, 0, DEFAULT_WIDTH, DEFAULT_HEIGHT }; - -// Determine the letterboxing required to display something on screen. -// The original code is basically magic. -// aspectW/H and windowW/H are the aspect ratio and window size, they are -// inputs. The view* parameters are the outputs and correspond to the -// calculated area in the window where the view should be. -void determineLetterbox(double aspectW, double aspectH, double windowW, - double windowH, int &viewX, int &viewY, int &viewW, int &viewH) -{ - double scale = std::min(windowW / aspectW, windowH / aspectH); - viewW = (int)(aspectW * scale); - viewH = (int)(aspectH * scale); - viewX = (int)(windowW - viewW) / 2; - viewY = (int)(windowH - viewH) / 2; -} - -/* --- Returns: scale, scissorX, scissorY, scissorW, scissorH, offsetX, offsetY -function xl.calculateViewport(sizes, winW, winH, scaleInterval, screenFlex ) - local gameW,gameH = sizes.w, sizes.h - local screenW,screenH = winW + screenFlex, winH + screenFlex - local scale = math.min(screenW / gameW, screenH / gameH) - scale = math.floor(scale * scaleInterval) / scaleInterval - local scissorW, scissorH = gameW * scale, gameH * scale - local scissorX, scissorY = (winW - scissorW) / 2, (winH - scissorH) / 2 - local offsetX, offsetY = scissorX / scale, scissorY / scale - return scale, scissorX, scissorY, scissorW, scissorH, offsetX, offsetY -end -*/ - -GUIController::GUIController(HQNState &state) -:m_state(state) -{ - m_tex = nullptr; - m_texOverlay = nullptr; - m_renderer = nullptr; - m_window = nullptr; - m_overlay = nullptr; - m_closeOp = CLOSE_QUIT; - m_isFullscreen = false; -} - -GUIController::~GUIController() -{ - if (m_tex) - SDL_DestroyTexture(m_tex); - if (m_texOverlay) - SDL_DestroyTexture(m_texOverlay); - if (m_renderer) - SDL_DestroyRenderer(m_renderer); - if (m_window) - SDL_DestroyWindow(m_window); - m_state.setListener(nullptr); -} - -GUIController *GUIController::create(HQNState &state, SDL_Window* window) -{ - GUIController *self = new GUIController(state); - if (!self->init(window)) - { - delete self; - return nullptr; - } - else - { - return self; - } -} - -bool GUIController::init(SDL_Window* window) -{ - m_window = window; - if (!(m_renderer = SDL_CreateRenderer(m_window, -1, SDL_RENDERER_ACCELERATED))) - return false; - if (!(m_tex = SDL_CreateTexture(m_renderer, SDL_PIXELFORMAT_ARGB8888, - SDL_TEXTUREACCESS_STREAMING, 256, 256))) - return false; - // Set the clear color now rather than later - SDL_SetRenderDrawColor(m_renderer, 0, 0, 0, 255); - // Default the scale to 1 - if (!setScale(1)) - return false; - return true; -} - -bool GUIController::setScale(int scale) -{ - if (scale < 1 || scale > 5) - return false; - if (m_isFullscreen) - setFullscreen(false, false); // reset to windowed and don't bother changing the overlay - int winW = DEFAULT_WIDTH * scale; - int winH = DEFAULT_HEIGHT * scale; - - // Change the window size - SDL_SetWindowSize(m_window, winW, winH); - - if (!onResize(winW, winH, true)) - return false; - - // update the overlay destination - m_overlayDest = { 0, 0, winW, winH }; - m_nesDest = { 0, 0, winW, winH }; - - // Update internal scale variable - m_scale = scale; - return true; -} - -int GUIController::getScale() const -{ return m_scale; } - -void GUIController::setFullscreen(bool full, bool adjustOverlay) -{ - m_isFullscreen = full; - SDL_SetWindowFullscreen(m_window, full ? SDL_WINDOW_FULLSCREEN_DESKTOP : 0); - int w, h; - SDL_GetWindowSize(m_window, &w, &h); - onResize((size_t)w, (size_t)h, adjustOverlay); -} - -bool GUIController::isFullscreen() const -{ - return m_isFullscreen; -} - -bool GUIController::onResize(size_t w, size_t h, bool adjustOverlay) -{ - // first calculate letterboxing - int viewX, viewY, viewW, viewH; - determineLetterbox(DEFAULT_WIDTH, DEFAULT_HEIGHT, w, h, - viewX, viewY, viewW, viewH); - // make sure images are put in the right places - m_overlayDest = { viewX, viewY, viewW, viewH }; - m_nesDest = { viewX, viewY, viewW, viewH }; - if (adjustOverlay && !resizeOverlay(viewW, viewH)) - return false; - return true; -} - -bool GUIController::resizeOverlay(size_t w, size_t h) -{ - - - // destroy the overlay and corresponding texture - if (m_overlay) - { - // first check if the overlay is already the correct size - if (m_overlay->getWidth() == (int)w - && m_overlay->getHeight() == (int)h) - return true; - else - delete m_overlay; - } - if (m_texOverlay) - SDL_DestroyTexture(m_texOverlay); - // Now re-create them - m_overlay = new Surface(w, h); - if (!(m_texOverlay = SDL_CreateTexture(m_renderer, SDL_PIXELFORMAT_ARGB8888, - SDL_TEXTUREACCESS_STREAMING, w, h))) - return false; - SDL_SetTextureBlendMode(m_texOverlay, SDL_BLENDMODE_BLEND); - return true; -} - -void GUIController::update(bool readNES) -{ - void *nesPixels = nullptr; - int pitch = 0; - - if (SDL_LockTexture(m_tex, nullptr, &nesPixels, &pitch) < 0) return; - - SDL_UnlockTexture(m_tex); - - // render to screen - SDL_RenderClear(m_renderer); - SDL_RenderCopy(m_renderer, m_tex, &NES_BLIT_RECT, &m_nesDest); - SDL_RenderPresent(m_renderer); - // Process any outstanding events - processEvents(); -} - -void GUIController::update_blit(const int32_t* blit, SDL_Surface* base, SDL_Surface* button_a, SDL_Surface* button_b, SDL_Surface* button_select, SDL_Surface* button_start, SDL_Surface* button_up, SDL_Surface* button_down, SDL_Surface* button_left, SDL_Surface* button_right) -{ - void *nesPixels = nullptr; - int pitch = 0; - - if (SDL_LockTexture(m_tex, nullptr, &nesPixels, &pitch) < 0) return; - - memcpy(nesPixels, blit, sizeof(int32_t) * BLIT_SIZE); - SDL_UnlockTexture(m_tex); - - const SDL_Rect OVERLAY_BLIT_RECT_SRC = { 0, 0, 169, 53 }; - const SDL_Rect OVERLAY_BLIT_RECT_DST = { 343, 425, 169, 53 }; - - // render to screen - SDL_RenderClear(m_renderer); - SDL_RenderCopy(m_renderer, m_tex, &NES_BLIT_RECT, &m_nesDest); - - if (base != NULL) - { - auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, base); - SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); - SDL_DestroyTexture(overlayTex); - } - - if (button_a != NULL) - { - auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_a); - SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); - SDL_DestroyTexture(overlayTex); - } - - if (button_b != NULL) - { - auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_b); - SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); - SDL_DestroyTexture(overlayTex); - } - - if (button_select != NULL) - { - auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_select); - SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); - SDL_DestroyTexture(overlayTex); - } - - if (button_start != NULL) - { - auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_start); - SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); - SDL_DestroyTexture(overlayTex); - } - - if (button_up != NULL) - { - auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_up); - SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); - SDL_DestroyTexture(overlayTex); - } - - if (button_down != NULL) - { - auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_down); - SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); - SDL_DestroyTexture(overlayTex); - } - - if (button_left != NULL) - { - auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_left); - SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); - SDL_DestroyTexture(overlayTex); - } - - if (button_right != NULL) - { - auto overlayTex = SDL_CreateTextureFromSurface(m_renderer, button_right); - SDL_RenderCopy(m_renderer, overlayTex, &OVERLAY_BLIT_RECT_SRC, &OVERLAY_BLIT_RECT_DST); - SDL_DestroyTexture(overlayTex); - } - - SDL_RenderPresent(m_renderer); - - // Process any outstanding events - processEvents(); -} - -void GUIController::onAdvanceFrame(HQNState *state) -{ - update(true); -} - -void GUIController::setTitle(const char *title) -{ - SDL_SetWindowTitle(m_window, title); -} - -void GUIController::setCloseOperation(CloseOperation closeop) -{ - m_closeOp = closeop; -} - -GUIController::CloseOperation GUIController::getCloseOperation() const -{ - return m_closeOp; -} - -void GUIController::processEvents() -{ - bool quit = false; - SDL_Event event; - while (SDL_PollEvent(&event)) - { - switch(event.type) - { - case SDL_QUIT: - quit = true; - break; - } - } - if (quit) - { - if (m_closeOp & CLOSE_QUIT) - { - exit(0); - } - if (m_closeOp & CLOSE_DELETE) - { - m_state.setListener(nullptr); - delete this; - } - } -} - -void GUIController::onLoadROM(HQNState *state, const char *filename) {} // unimportant -void GUIController::onLoadState(HQNState *state) {} // also unimportant - -} diff --git a/quicknes/extern/hqn/hqn_gui_controller.h b/quicknes/extern/hqn/hqn_gui_controller.h deleted file mode 100644 index e312bc826a3..00000000000 --- a/quicknes/extern/hqn/hqn_gui_controller.h +++ /dev/null @@ -1,160 +0,0 @@ -#ifndef __HQN_GUI_CONTROLLER__ -#define __HQN_GUI_CONTROLLER__ - -#include "hqn.h" -#include "hqn_surface.h" -#include -#include -#include - -namespace hqn -{ - - extern const char *DEFAULT_WINDOW_TITLE; - -class GUIController : public HQNListener -{ -public: - - enum CloseOperation - { - // Do nothing when the window is closed - CLOSE_NONE = 0, - // Quit the program when the gui is closed - CLOSE_QUIT = (1 << 0), - // Call delete on the GUIController when the gui is closed. Also set - // the correlated state's listener to null. - CLOSE_DELETE = (1 << 1), - }; - - virtual ~GUIController(); - - /** - * Create a new GUI controller. Returns a GUI Controller or nullptr - * if an error occured during initialization. - */ - static GUIController *create(HQNState &state, SDL_Window* window); - - /** - * Set the window title. - */ - void setTitle(const char *title); - - /** Set the size of the window. */ - void setSize(size_t width, size_t height); - - void setPosition(size_t x, size_t y); - - /** Get the window width. */ - size_t getWidth() const; - - /** Get the window height. */ - size_t getHeight() const; - - /** - * Set if the window is fullscreen or not. This will do letterboxing - * to maintain the correct aspect ratio. - * - * If adjust overlay is true it will change the size of the overlay to - * match the new screen size, otherwise the overlay will stay the same. - */ - void setFullscreen(bool full, bool adjustOverlay); - - /** - * Return true if the window is fullscreen. - */ - bool isFullscreen() const; - - /** Get the pointer to the window. Use this to change settings. */ - SDL_Window *ptr(); - - /** - * Set the gui scale. Can be 1 - 5. - * Returns true if it succeeds, false otherwise. - */ - bool setScale(int scale); - - int getScale() const; - - /** - * Redraw the screen and process window events without updating the - * emulator. This can be used when drawing on the overlay. - * - * @param readNES should update() also redraw the nes screen (true) or - * trust that it didn't change (false). - */ - void update(bool readNES); - - /** - * Reference to the drawing surface. Use this to draw things on - * top of the NES display. - */ - inline Surface &getOverlay() - { return *m_overlay; } - - /** - * Set what happens when the window is closed. - * This should be a bitwise-or of values from CloseOperation. - * The default is CLOSEOP_QUIT. - */ - void setCloseOperation(CloseOperation ops); - CloseOperation getCloseOperation() const; - void update_blit(const int32_t* blit, SDL_Surface* base, SDL_Surface* button_a, SDL_Surface* button_b, SDL_Surface* button_select, SDL_Surface* button_start, SDL_Surface* button_up, SDL_Surface* button_down, SDL_Surface* button_left, SDL_Surface* button_right); - - // Methods overriden from superclass. - virtual void onLoadROM(HQNState *state, const char *filename); - virtual void onAdvanceFrame(HQNState *state); - virtual void onLoadState(HQNState *state); - -protected: - GUIController(HQNState &state); - - /** - * Called in create(). If this fails the GUI cannot be created. - */ - bool init(SDL_Window* window); - -private: - /** - * Process SDL events. Will exit the program (by calling endItAll()) - * if an SDL_QUIT message is recived. - */ - void processEvents(); - - /** Resize the internal overlay. */ - bool resizeOverlay(size_t w, size_t h); - - /** Who you gonna call? onResize! Returns false if resizeOverlay fails. */ - bool onResize(size_t w, size_t h, bool adjustOverlay); - - // Pointer to the state we're listening to - HQNState &m_state; - // Window pointer - SDL_Window *m_window; - // Renderer - SDL_Renderer *m_renderer; - // Pixel buffer - int32_t m_pixels[256 * 240]; - // SDL Textures - SDL_Texture *m_tex; - // Overlay texture - SDL_Texture *m_texOverlay; - // Destination rect for the texture - SDL_Rect m_nesDest; - // Destination rect for the overlay - SDL_Rect m_overlayDest; - // Overlay surface which will be drawn on top of the NES display - Surface *m_overlay; - // Current scale. Can be 1, 2, 3, 4, 5 - int m_scale; - // Should the emulator quit - bool m_quit; - // Are we currently fullscreen? - bool m_isFullscreen; - // What happens when the X button is pressed? - CloseOperation m_closeOp; -}; - -} - -#endif //__HQN_GUI_CONTROLLER__ diff --git a/quicknes/extern/hqn/hqn_surface.cpp b/quicknes/extern/hqn/hqn_surface.cpp deleted file mode 100644 index 22c413dc870..00000000000 --- a/quicknes/extern/hqn/hqn_surface.cpp +++ /dev/null @@ -1,302 +0,0 @@ -#include -#include -#include -#include -#include -#include "hqn_surface.h" -#include - -namespace hqn -{ - -// basically inlined functions for bounds checking -// Note that when #include'in windows.h you need to #define NOMINMAX becase -// windows.h breaks std::min and std::max by #defining min and max. ugh -#define boundLeft(x) std::max((int)(x), 0) -#define boundRight(x) std::min((int)(x), (int)m_width - 1) -#define boundTop(y) std::max((int)(y), 0) -#define boundBottom(y) std::min((int)(y), (int)m_height - 1) - -// const float pi = 3.14159265359; -const float pi = 3.14159265359f; - -// Color masks for building the SDL_Surface. -// They're constant because why not? -const Color MASK_R { 0xff, 0, 0, 0 }; -const Color MASK_G { 0, 0xff, 0, 0 }; -const Color MASK_B { 0, 0, 0xff, 0 }; -const Color MASK_A { 0, 0, 0, 0xff }; - - -// Copied from http://forum.devmaster.net/t/fast-and-accurate-sine-cosine/9648 -float fastSin(float x) -{ - const float B = 4/pi; - const float C = -4/(pi*pi); - - float y = B * x + C * x * abs(x); - - // const float Q = 0.775; - const float P = 0.225f; - - y = P * (y * abs(y) - y) + y; // Q * y + P * y * abs(y) - return y; -} - -float fastCos(float x) -{ - return fastSin(x - pi / 2); -} - -Surface::Surface(size_t w, size_t h) -{ - m_pixels = new Color[w * h]; - // initialize all pixels to transparent black - memset(m_pixels, 0, sizeof(Color) * w * h); - // set default colors - m_width = (int)w; - m_height = (int)h; - setBlendMode(HQN_BLENDMODE_BLEND); - - // Create an SDL Surface we can blit to - m_surface = SDL_CreateRGBSurfaceFrom(m_pixels, w, h, 32, w * sizeof(Color), - MASK_R.bits, MASK_G.bits, MASK_B.bits, MASK_A.bits); -} - -Surface::~Surface() -{ - SDL_FreeSurface(m_surface); - m_surface = nullptr; - delete[] m_pixels; -} - -void Surface::drawRect(int x, int y, size_t w, size_t h, Color color) -{ - int x2 = x + w; - int y2 = y + h; - - int x1Bound = boundLeft(x); - int y1Bound = boundTop(y) + 1; - int x2Bound = boundRight(x2) - 1; - int y2Bound = boundBottom(y2); - // draw vertical lines - if (x >= 0) - { - for (int yy = y1Bound; yy < y2Bound; yy++) - rawset(x, yy, color); - } - if (x2 < (int)m_width) - for (int yy = y1Bound; yy < y2Bound; yy++) - rawset(x2, yy, color); - // draw horizontal lines - if (y >= 0) - for (int xx = x1Bound; xx < x2Bound; xx++) - rawset(xx, y, color); - if (y2 < (int)m_height) - for (int xx = x1Bound; xx < x2Bound; xx++) - rawset(xx, y2, color); -} - -void Surface::fillRect(int x, int y, size_t w, size_t h, Color fg, Color bg) -{ - // draw the outline - drawRect(x, y, w, h, fg); - // now fill in the middle - int x2 = boundRight(x + w - 1); - int y2 = boundBottom(y + h - 1); - - x = boundLeft(x); - y = boundTop(y); - for (int yy = y + 1; yy < y2; yy++) - for (int xx = x + 1; xx < x2; xx++) - rawset(xx, yy, bg); -} - - -#define SWAP(a, b, temp) temp = a; a = b; b = temp -void Surface::fastLine(int x1, int y1, int x2, int y2, Color color) -{ - int temp; - // Make sure x1 <= x2 - if (x1 > x2) - { - SWAP(x1, x2, temp); - SWAP(y1, y2, temp); - } - // If any of the points are outside the surface then don't draw - if (x1 < 0 || y1 < 0 || y1 >= m_height - || x2 >= m_width || y2 < 0 || y2 >= m_height) - return; - - // special case - if (x1 == x2) - { - // safety checks - if (y1 > y2) - { - SWAP(y1, y2, temp); - } - for (int y = y1; y <= y2; y++) - rawset(x1, y, color); - // that's all folks - } - else - { - const int deltaX = x2 - x1; - const int deltaY = y2 - y1; - // absolute value of the slope of the line - const float deltaErr = std::abs((float)deltaY / deltaX); - // calculate the sign of delta Y - const int signDY = deltaY ? deltaY / abs(deltaY) : 0; - float error = 0; - int y = y1; - for (int x = x1; x < x2; x++) - { - rawset(x, y, color); - error += deltaErr; - while (error >= 0.5) - { - rawset(x, y, color); - y += signDY; - error -= 1.0f; - } - } - } -} - -void Surface::clear(Color color) { - int dataSize = m_width * m_height; - for (int i = 0; i < dataSize; i++) - { - m_pixels[i] = color; - } -} - -void Surface::safeLine(int x1, int y1, int x2, int y2, Color color) -{ - // can be used a lot - int temp; - // Make sure x1 <= x2 - if (x1 > x2) - { - SWAP(x1, x2, temp); - SWAP(y1, y2, temp); - } - // Special case - if (x1 == x2) - { - if (y1 > y2) - { - SWAP(y1, y2, temp); - } - int y1Bound = boundTop(y1); - int y2Bound = boundBottom(y2); - for (int y = y1Bound; y < y2Bound; y++) - rawset(x1, y, color); - // that's all folks - } - else - { - // Prep the variables - // Remember y = mx + b - const int deltaX = x2 - x1; - const int deltaY = y2 - y1; - const float slope = (float)deltaY / deltaX; - const float deltaErr = std::abs(slope); - const int signDY = deltaY ? deltaY / std::abs(deltaY) : 0; - - // Ensure the line is inside the bounds - if (x1 < 0 || y1 < 0 || y2 < 0) - { - } - float error = 0; - int y = y1; - for (int x = x1; x < x2; x++) - { - rawset(x, y, color); - error += deltaErr; - while (error >= 0.5) - { - // safe setPixel instead of rawset - setPixel(x, y, color); - y += signDY; - error -= 1.0f; - } - } - } -} - -void Surface::setPixel(int x, int y, Color color) -{ - if (x < 0 || y < 0 || x >= (int)m_width || y >= (int)m_height) - { - return; - } - else - { - rawset(x, y, color); - } -} - -void Surface::setBlendMode(BlendMode mode) -{ - switch(mode) - { - case HQN_BLENDMODE_NONE: - m_blendFunc = &blendNone; - break; - case HQN_BLENDMODE_BLEND: - m_blendFunc = &blendBlend; - break; - case HQN_BLENDMODE_ADD: - m_blendFunc = &blendAdd; - break; - case HQN_BLENDMODE_MOD: - m_blendFunc = &blendMod; - break; - default: - // skip setting m_blend - return; - } - m_blend = mode; -} - -BlendMode Surface::getBlendMode() const -{ - return m_blend; -} - - -#define BYTE(exp) (uint8_t)((exp) / 255) -Color Surface::blendBlend(Color src, Color dst) -{ - const uint8_t invA = 255 - src.a; - dst.r = BYTE(src.r * src.a + dst.r * invA); - dst.g = BYTE(src.g * src.a + dst.g * invA); - dst.b = BYTE(src.b * src.a + dst.b * invA); - dst.a = (uint8_t)(src.a + (dst.a * invA)); - return dst; -} - -Color Surface::blendNone(Color src, Color dst) -{ - return src; -} - -Color Surface::blendAdd(Color src, Color dst) -{ - dst.r = BYTE(src.r * src.a + dst.r); - dst.g = BYTE(src.g * src.a + dst.g); - dst.b = BYTE(src.g * src.a + dst.b); - return dst; -} - -Color Surface::blendMod(Color src, Color dst) -{ - dst.r = BYTE(src.r * dst.r); - dst.g = BYTE(src.g * dst.g); - dst.b = BYTE(src.b * dst.b); - return dst; -} - -} diff --git a/quicknes/extern/hqn/hqn_surface.h b/quicknes/extern/hqn/hqn_surface.h deleted file mode 100644 index 5e995839069..00000000000 --- a/quicknes/extern/hqn/hqn_surface.h +++ /dev/null @@ -1,129 +0,0 @@ -#ifndef __HQN_SURFACE_H__ -#define __HQN_SURFACE_H__ - -#include -#include "hqn.h" -#include - -namespace hqn -{ - -extern const float pi; - -float fastSin(float x); -float fastCos(float x); - -struct Color -{ - union - { - struct { uint8_t r, g, b, a; }; - uint32_t bits; - }; -}; - -enum BlendMode -{ - HQN_BLENDMODE_NONE, - HQN_BLENDMODE_BLEND, - HQN_BLENDMODE_ADD, - HQN_BLENDMODE_MOD, -}; - -/** - * A surface which provides drawing operations. - * The format is always RGBA. - */ -class Surface -{ -public: - #define HQN_DEFAULT_PTSIZE 12 - - typedef Color (*BlendFunction)(Color src, Color dst); - - Surface(size_t width, size_t height); - ~Surface(); - - inline int getWidth() const - { return m_width; } - inline int getHeight() const - { return m_height; } - - void drawRect(int x, int y, size_t w, size_t h, Color color); - void fillRect(int x, int y, size_t w, size_t h, Color fg, Color bg); - - void drawCircle(int x, int y, size_t radius, Color color); - void fillCircle(int x, int y, size_t radius, Color fg, Color bg); - - void drawOval(int x, int y, size_t w, size_t h, Color color); - void fillOval(int x, int y, size_t w, size_t h, Color fg, Color bg); - - /** - * Draw a line. If the line goes outside the edges of the screen it will - * not be drawn. - */ - void fastLine(int x1, int y1, int x2, int y2, Color color); - - /** - * Slower than fastLine but will still draw lines which are partially - * offscreen. Note that safeLine is likely significantly slower than - * fastLine because it checks if each pixel is in bounds. - */ - void safeLine(int x1, int y1, int x2, int y2, Color color); - - - /** - * Set all pixels in the surface to the given color. - */ - void clear(Color color); - - void setPixel(int x, int y, Color color); - int32_t getPixel(int x, int y); - - /** - * Get a reference to the pixels. - */ - inline Color *getPixels() const - { return m_pixels; } - - inline size_t getDataSize() const - { return m_width * m_height * 4; } - - void setBlendMode(BlendMode mode); - BlendMode getBlendMode() const; - -private: - - ////////////////// - // Private Data // - ////////////////// - - // RGBA formatted pixels - Color *m_pixels; - SDL_Surface *m_surface; - int m_width; - int m_height; - BlendMode m_blend; - BlendFunction m_blendFunc; - - // Set the pixel directly. Performs blending. - // Inlined because it's small and more efficient to inline it. - inline void rawset(int x, int y, Color src) - { - // Yay for no branching - Color *destPtr = &m_pixels[x + y * m_width]; - *destPtr = m_blendFunc(src, *destPtr); - } - - void line(int x1, int y1, int x2, int y2, Color color); - - // Blend functions - static Color blendNone(Color, Color); - static Color blendBlend(Color, Color); - static Color blendAdd(Color, Color); - static Color blendMod(Color, Color); -}; - -} - -#endif diff --git a/quicknes/extern/hqn/meson.build b/quicknes/extern/hqn/meson.build deleted file mode 100644 index f1b730b5c3c..00000000000 --- a/quicknes/extern/hqn/meson.build +++ /dev/null @@ -1,16 +0,0 @@ -project('hqn','c','cpp', - version: '1.0.0', - license: 'GPL-3.0-only', - default_options : ['cpp_std=c++20', 'default_library=shared', 'buildtype=release'] -) - -hqnSrc = [ - 'hqn.cpp', - 'hqn_gui_controller.cpp', - 'hqn_surface.cpp', -] - -hqnDependency = declare_dependency( - sources : hqnSrc, - include_directories : '.' - ) \ No newline at end of file diff --git a/quicknes/meson.build b/quicknes/meson.build deleted file mode 100644 index dbb9e59c8c0..00000000000 --- a/quicknes/meson.build +++ /dev/null @@ -1,60 +0,0 @@ -project('quickerNES','c','cpp', - version: '1.0.0', - license: 'GPL-3.0-only', - default_options : ['cpp_std=c++20', 'default_library=shared', 'buildtype=release'], - subproject_dir : 'extern' -) - -# Loading dependencies -subdir('source') - -# Grabbing hqn dependency - -hqnSubproject = subproject('hqn') -hqnDependency = hqnSubproject.get_variable('hqnDependency') - -# Do not build any targets if this is a subproject -if meson.is_subproject() == false - -# Common application flags -commonCompileArgs = [ '-Wfatal-errors', '-Wall'] - -# Grabbing jaffarCommon dependency - -jaffarCommonSubproject = subproject('jaffarCommon') -jaffarCommonDependency = jaffarCommonSubproject.get_variable('jaffarCommonDependency') - -# Building playback tool - if get_option('buildPlayer') == true - executable('player', - 'source/player.cpp', - cpp_args : [ commonCompileArgs, '-DNCURSES' ], - dependencies : [ jaffarCommonDependency, quickerNESDependency, toolDependency, dependency('sdl2'), dependency('SDL2_image'), hqnDependency ], - link_args : [ '-lncurses' ] - ) - endif - - # Building tester tool for QuickerNES - - quickerNESTester = executable('quickerNESTester', - 'source/tester.cpp', - cpp_args : [ commonCompileArgs, '-Werror' ], - dependencies : [ jaffarCommonDependency, quickerNESDependency, toolDependency ] - ) - - # Building tester tool for the original QuickNES - - if get_option('buildQuickNES') == true - quickNESTester = executable('quickNESTester', - 'source/tester.cpp', - cpp_args : [ commonCompileArgs, '-w', '-DDISABLE_AUTO_FILE', '-D__LIBRETRO__', '-DNDEBUG', '-DBLARGG_NONPORTABLE' ], - dependencies : [ jaffarCommonDependency, quickNESDependency, toolDependency ] - ) - endif - - # Building tests - if get_option('buildQuickNES') == true - subdir('tests') - endif - -endif # If not subproject \ No newline at end of file diff --git a/quicknes/meson_options.txt b/quicknes/meson_options.txt deleted file mode 100644 index a519dca1090..00000000000 --- a/quicknes/meson_options.txt +++ /dev/null @@ -1,34 +0,0 @@ -option('buildPlayer', - type : 'boolean', - value : false, - description : 'Build playback tool', - yield: true -) - -option('buildQuickNES', - type : 'boolean', - value : true, - description : 'Build quickNES core', - yield: true -) - -option('buildTests', - type : 'boolean', - value : true, - description : 'Build tests', - yield: true -) - -option('onlyOpenSource', - type : 'boolean', - value : false, - description : 'Test using only open source games (for cloud CI)', - yield: true -) - -option('enableArkanoidInputs', - type : 'boolean', - value : false, - description : 'Build tests', - yield: true -) \ No newline at end of file diff --git a/quicknes/overlay/base.png b/quicknes/overlay/base.png deleted file mode 100644 index fcc3a51915f53d53904f16dea4ef0566d5712346..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3811 zcmV<94jl1`P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGmbN~PnbOGLGA9w%&4tPmKK~#8N?VWj0 zQ`a8He}r8`Q5GL4_^PZcFDQyMsMAbXUNX>JM%3aGrioCJ|l{j^wCXH=v|j~-=@GBVB0 z#~*)8r%s)cUZksbWl+VvI(k%J$7{r)aQCDRzHKRa{77CS)7o*ENEff)LI;l>A@b?K zYeZ60K?#GOr3Euy;uSKj9b+PuBn4HY%qE|rYZMjMg(8Ck#FfwxY8Tprl=-=|a@#I` zCg<%Ka**0B(bDW|GkiKnjG1k*N9{L`D^q?ZYDiDIGz^Hn#OA#$A%3X zXv&l+77hlk?zy3-tE-v)TFTc?2*|SNdQc-epGQISYc&oo>&mMAhb*1N? zdydx-rKYCR{rmUnz4zW@uhY}h*`to`-MdqCbTrl0*3y9k2k6e7JFITluwlH%KO2Wx z(w4&a-+xcHZr$Rqj8j!r#RQs`mPY&c@24Y2j*yp^7rSt+5h#Gbzx?t`I(+yruOV`G zcV}aO>({T-x8HtCw{PEOVyvvJq^ztg*7okZ@6x49mnbMGh`kS8eQTsuuQ)*jxN0F1 z9l5!=Oh^#S<;$1p{Q2|LzI}W4TnFm1v$LtXx|-Jz?c2AHiSFvvtF&|HPF_nicI;SM zw{9JO)dVcGKCsZR*0W~KqBq}slaxv&yO=)s-~*aCaUv~Ux|I6&@6UU;K3c6vA&gHy z{gjR!JH{*|Ear_HH)#9z?bOiFK+BgeX9ex&&Yh!Gt5z|g4jD3pP0<+{88mtFWGXBy zWaooBuyW-}CbShRR;v;^HVLCx`V1 zWo2b-YS#DZ;qp(LHjUPFLQ|HGwPvf}XBjyRzeep(TY64B>3vyqVnG+*lnfHvHn}pMRdd z{`za$y?ZySmjbvSXV0FcnwlCm=KJrz&s(GeuGH$)tDkUnY@yYPbl$vqq);d*DJh8t z3~0(~7z0zaPB@s-Uw{2|HXXw{A_~{X+%%519Syt`X z$9viaf)HJv)5ph$N=iydtyZ(32I(C`>!)uyAsh%56c-m$aBwh<88e1iMpz4d%!w2q zSWHX|vznGbno9rN5D;7dM*yE1fg%1cQUV`;#*7)%yLWH9r~D=pVT9B@2S|PV(BlPv zON8-9Yw^E-k17jt=%g8)`}_IP-HI{_2ne!i33ck!sq7I`Xh1*!dmbMjPvggrXU|cu zvtkgWzO~Z{6ky{GrY~5TN=>D?T#AP}^UnKNfH3vMW8jIRShTvSvPEnK*e^}~gM z_xkzgpYtBlfOH&u#tRoN(5tV$YSfC`3Iffdq9XQpyzs+E0C>-^aP8W)<2BL%7Y9}jZVoOs1d9kDF|$YkL|Ix|%F<~7!5`d;!Gj00*XFQl z?SApvO>{6jk0QH--n4M0<5#Bs=|H5g=sF7y_W}zH5Qr2^nl$N&3k#VMWJN4t+ltephx~~+AkeI= ztgxX&hnB5hzy1~y(I{)zt}RBL;G}oS%gZa`-9^#(@UPZJMmp}^z00QjE?um$8zwn< z@+6y`kaE)%SZVmBn7M30(&!#jJS?aX^_G43;fEcCsp|3kDol?ds1vMc>45_Wx>Q$J zt9g@5GXq~2J}**ZnD!9_BGQ+FPd@nsvn7AkM4vu=C@d_@<^W1kk-`VX6rY@&e4kf6 z!JIjB8qi0nRN8h~$=J=NO`GV@p+jr~%ig_vNiZI~#eQ&JthyP3Kn)8PwqV&O4Gp2B z|3$e`Q6A{Fp2v4pI{ zkz?2vIJIz*ez$!Om23ap2+|Vq^Y)^Y7bfvn=D~-YpPx^iJ9p+a_JQahsU+;?(&5N4 z94^w#%*+d?PoI7|EiLV~;5@U`lOcjQZwdZS@H5Xmb1^P1t{1O1i!CBe-FuKK>KZ5~ z{~T#5q`m5!o4`)NG~&NeG-vdm`BYQjLq;%!{G=3M53awz{}Up0)ELG@DydJ3JSfsk zsi~J1SrVik!=#vO0f~C#L6K%!zI=J95I{Z9SyWh12sAr8 zJ7~m+5jO=Nq$@kf0j%7%lXA{qAvYn4tqbo*kv^{2j>KDA5-z0h_94w5xuhvpQDu*A zyxw}WTCIBDzI{O|m8zS5{#p=IM{Gw74GnD=J9ccbJ)euC#*kE`fG6sUkY+k@;)H%O zKNuDi0*#4@k;a)ZL3vd*X(}tp%d-vj@b#dim_EFvWwN!Vl8RL~_$%uvEG)b#ST!b` z*|TRW6A}^vy}i9Vp{=&Iw&eKntAfdnqednEbRE`#?J`V*;)bxcIEgjPvS1bYR2Jr~9oM!Xp&E*p&Oo-5l2jICd z`}GytD$pk*BO|P$qT)Jl7KNk7uqaYhO#^Ms%&}N9@|66DCVYK;!v+i(&>Imv3W6j< zGmm48oy)MO@99>(Z2z!YE0}&^-GpG)&E4JIof#?%UaFx+ zgWH$&aZxC!LqH(;1$U;&3ByEhEcxwZ`B%A)$igMY*Ob{W@(NwTAfIH_Kzh`?>6kq9kB5i zw=54GI@DxAJNlu&yI}DqOqjsWWSU;FaSk6t4BfkT_dsqMIZ9q-k*usN6^;oH4;O+B z%QVLrl8LnTcWLitbQB}|MN-^^$<#M4o;n7JbEDAjsiz}p-rTuQ+=60^gy^R!ZlWz? zM2H?k41s}x-LT4oBzi+bgT>oH1&dy_V#SIm93v*`2F)>s$qgoA(QOFm*|VqB8x9=x zg=LG@qzO^{MRKnwq29s=pA;i*gN(DXH8Yo#Dm9H7GL+^|HNP9maPvo1Rh0^>JV>G= zM~M^=YcK%f5stZEQ&SW8)?05~_w)1nH|oV~Fp+W$hi@>EaXzqsf@MeuX;^T$sell+~j^R{n2v&%YfJc7Q&CRU=5jFxCQ~seX`$_E?!`O6h zw@88R#MC>A*NDTXzLo|ijG+b7q)+63vEv|Rr>`TAhYzS;;fBAoMS}Ma8Y1IpNO%aP zOtH=(~!lXB7LyY$^urSK-IuM_@6>)w|$ z!M^Rp-IM%06qGzJf!CS_AF`uv?a<-KF&rjR8Rwx@-H0b6^LJoOq;d*M#_5qoD&zDR zo$lq|7M1zCz{V59-xkGPl=81M%f;ym(<9gBV@oRk-o1=7q5pgLk3}jYNn{1`ISV`@iy0V%N~n9IAd|DYRfopX?I*OW!B!ET6i!*2^Pf_VGfWhE3fw7$ZN=Geehai@R6tb?J(`Zn%BLt>$t>QNQ zS+`Y!-W*)K`J;s3I^OtVvjF!cKZL~=)Q7x3cNn{1`ISV`@iy0V%N$K&8ec4o|{>(_I`5MYnR=k{$^&1e=YiC7rfC*bGTNc_V)L` zYPOImW|otk{!31>Mm!{`%ATMGflSNo{_!g=59@;vv1X&No9Y_>pESVRHrP`9{Q%}z6qD!_aEjRCfobr zic}$rJc@Vs?>shZ?`)+@M;=)|FRUt^mi#(>iTw}Rke%I5c4h7RyX{MF`Bz^2uyyy1 zdsptLO?>wJ;?0UK4u9TwWx*B7m$*|Hf4P5^%l-3j#k~FM-vjqvQse)uxO&UUUg0N# onpn_T{?Ck|b37H-z23+0BJ8>1->cr2fN{y->FVdQ&MBb@00Xq+fB*mh diff --git a/quicknes/overlay/button_down.png b/quicknes/overlay/button_down.png deleted file mode 100644 index 541fcfdea63f14cda649699f551c6bb770c709df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^D}mUQgBc{U-dYt%F%}28J29*~C-V}>VM%xNb!1@J z*w6hZkrl{i3-AeX{m;MwWVVP~y#Z28B|(0{{~4ZcH}C@TI14-?iy0V%NVM%xNb!1@J z*w6hZkrl{i3-AeX{m;MwWVVP~y#Z28B|(0{{~4ZcH}C@TI14-?iy0V%N2R=QtON-ru7fEJV%4u{jYzVcG}{tB^1W) i`g$<)JQkSyjPYftQtPdiPq=~hFnGH9xvXVM%xNb!1@J z*w6hZkrl{i3-AeX{m;MwWVVP~y#Z28B|(0{{~4ZcH}C@TI14-?iy0V%NH!Sd4n%psOr3qJ-^FIXI!{F)a=d#Wzp$Pyif>%WV diff --git a/quicknes/overlay/button_select.png b/quicknes/overlay/button_select.png deleted file mode 100644 index 9b93816e5cfd243d59cf9b03e3888fde25fa5f96..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^D}mUQgBc{U-dYt%F%}28J29*~C-V}>VM%xNb!1@J z*w6hZkrl{i3-AeX{m;MwWVVP~y#Z28B|(0{{~4ZcH}C@TI14-?iy0V%Ndwpq_*Is<^{**X<6&dNn{1`ISV`@iy0V%N4OZ_O85iL{~_r$5a!*pL!8EwyP=`)!`c-=0?IKbN+3RnPVd`sCs@ z&*P-9W~Gv<|B@%2Q*0(qQYS~yE~0EwYE@0t^5<_~-q!p4rSK@9T71lVkG)%~w~?j{E*xLjA?N{qZ_9|9>-Qh^1%e>}CE(_XSUVU@Q3w7<3Gtu6{1-oD!M< DVM%xNb!1@J z*w6hZkrl{i3-AeX{m;MwWVVP~y#Z28B|(0{{~4ZcH}C@TI14-?iy0V%NAvY&PiW)K9CML}1G0SB>My87-$K)b8&qq@4PZ@{6tj=rm^tM5hy#KmI; zmGJ;kPyx?X-YB}kb^4T1l9ycZz%cmpF91|Ve689V2Xc2T+ zqO4wcV9XaY`JzJ2;S<{>NFNe@AdSM3M#K(%5XMl@rsuOtLhTVdP{!kv83dV9qFB&| zJk|H?geev#ih8{<>k?!%Mm<3mG8XZLqyzJz2ER2%X~Ly&#NhW^T@fko2RTfZ!&!aV zAJ5oAkQ)kEEC?af#7tIY5!VsElnI9|reqRSb1vLk@uDR?sdE{vs6k4kd_jvnpthwg zF;CEE)f>!Sj>H|loX;N4E2T7y1POxT2$f2!A&87tR{*?;ik)#I0Xkht(9&#CuJ9y1 z+OoyQSuoCz^A?{G#(gQymcX4#vIJPDYu zs`Z<6VAxx6XHYd|G7{k|<(5KVxMax#mY@^Kn=zuG(3XKrS);OG1+I`&SnxFMBvg4> zB@#^OMIp6b z1)4JztOF;4PPsu3loD7*4LL)0HbBb(h;@~`NxTfvtUIr) zsJuLsX6)sBj84Z92FwR=wO+ycs3@*sj46A`>&a^flx7%{g^HT#gxaP|%IqX2_q)CN zAn#K^B_yFNp!u8(wm>1hO~$58j#3Cz0*r^%Bp74a4x3@DVkJ_r1Ih9c7&fNldQCQy zk0uI1yUP*Ks7)wRD5OJaVPxEukrxzdAB(bi7zi_T5ph+djH?n?1Q?^)!==4oAgUz| z3J_9+DjI2`f}tiosVbXed7_}RVs^x1l(R}8?1K|D%Ec;Kb2u%H!6`PJ)fdwhC2X`I zkUXS|$}JH($`qZ25M5@#T#6tn4s8VtTT>1dgz$hVonlQHT0_bU4ht0XDp-Z4=)nB| zL7^}NOCc$2j~X4cCuk2iVzfu^4a6AEER0)FdC9cejRdXg6j#bK8ZR8RIf5Z$5)BDz zTS{8N2nfY+m^_dm0AE&{A@p3rp!BIqfJPg0TeDEQqzFZFezjFrwj$AFG0LW7aw8fq&JLK!unWc_hJwk(=rZ9F!KIu|v(2t?>D90=%>|ViW0rSo z6Cp-Nc|c`43ORMudwBoRwk&-wg82E+;u5_4vqh#$@x@SN0`2^W1@(5Fv^ zSv5}P0Us5S*~(GcVspw<4vU4erlXjuNTxLwompm;s-003k1-~VR7+;`x_Dgb3zQ5# zQW^*CrcB-#DfkL*L!(|rAZYEB*L6s=CIk+p0tm_lboAjVBBFQyxt^CMHM_~ z*8;GYV)QA*kHNZV!T``Nvzlbm(ugWmwS0wV<|Z6N4!!dQ@jEIL<&;GH0p^W+N! zli5qVV{j#-0zE*~q1Kn8B{<;MlXP5db%fzeA(br3DhZ@Sg-Otv^%yEepI7e5mGp5g zLPV7bM5^HJJ_XGK%8((h!wq3TRU)AvY*1PNJK@R(bMms0a+OpSDCj}LCOfK*Ci1~T z#tuRDlt+!&Ku9HZm36F@Qy797xKNSH2v#48n=k_eAX+~u^>}P)KcmvqSTbT)XU(KV zrSZglTts03!vHDw5FWy(_3<_&S2V{7FjGODvRF}v!wO6*&&n!Vxr0R=0mQEl$j#9N z4<*A6vsH$xD5=N6Ya)e6h4Gc)a3~6fz@#h>7)>g|prBRquqLY!a+TC9YzJtJ4`vdw zR0{Grf~j0Fp~Sror8!^Ju&D~Gp>-Aj;mJe_BeejSQp8b@(WOgk+&~s_X+1?dT_{>D zP|+O-f*@-u_;f`#5f-*gkIY-jutsGp=k%ZoF|R>MR8%az|$(PJDCsW8DR&qCg=>VAsk62<@c+NT3;zsQG^XjM5ggV zJgbna&=QQ$F;^xQPpb61lE}xnxJk_#69CO9*iewqg^FRksJ2;^`3wYS%h8h6jer^l zS0)h|T~v{rRvQJwQH{bMH$YmspK&0`veJTuj67HI!Keq+S}p339kbZEfRlCb7P%cV zDKxYzjg#d#0R<@=V`mU!(2vIt4&pC7EG-hPw zWoJcYlBxU{gqf4YdV)Mo(Hj)b_F1qs^#e}XQXak*O^fE_v`LK+Jm-bh=5 zfCpFmF*T(0nOs~>FNIwmohE@IE@#Y@H0XSI!ETXdeHp1wo${er&dB0=)`{5tcCuK~ zd6ii(sCMF38z=-@9th=&v0z2!aBJC$(velg3AU0i6iY6*((28G^cdxVDLv^afnl8o z75verQR~WRNLGoNOJuo71{K~ISp-wLWH}v+=JR@;gEEm&%IZ^vA}(La?lv(xy9>4B zpeC#`+TaRp!%N1L-WkW#YNdQ4`p%0Vg06*2@Jw9sihmVt})dS>R6<3)+ z17=L=(jRf>Q+BC4gJmoUzuLz$yjPWG znQ*G8RVvcFknq`bA?i$2C|*kzq}dFNWidyZ;W!Oh%+L`xF7;9t#--6B+5pJ~l5kO~ zp^c;=6Gz-m*kG_04W(j1uP)IgG74JDRu|40O{53a#azycI!2__P&7;z{U$4jqfw2` zWhdNuskX=`Tn?SmQz_WPIg8q33CGGD@8SVn*k?ejQY?oigu@4v=k@NG%V4p%aJ$}D z3PU~%s#5Wzr~=1nV{?{A4$at z2UYg6Ns1ZEjd8)ZvJ}~H>LylSy{I*ux}r6my^>v; z&r-aL%HgCiCtHq6XKU(eYHDjGf9MJA6fbkmcs3`h(%5(jR?Z5dqfTpZKytbbv8fbA zIG6ScK>smi82iw&I?P^ zU(fS+Su`Zj78i}(uSZ8VUZDo`Xctc1mg@xgf4a`6)}!sb zV_W1pweXck$VM&lmgZcUqsF!V_Wo5{a7(YN`4Y-DB7{1&$);)5wWk(r|E&H z6_Bck+B1m4N2Swhnk8=bYUHVtJ}(`aJj3+P}}E)!js##N|Cx zz9F7V<6JfIS2q-nXE}<`#i?wsY@Vlag6dyo0^K{!#iu%|8%>{6^;6r;X~}MgYI>^s z)4v!G=rJ~Oc39CzFYEaRc4``;JtU2dLwmAL4PK?^0#vi*)xsN1LT2lc$D4(QL|lXF zVhj~3O)UcHPV~cshD2PSs=#oe(sZprx&>N=hD2Pus=x@L(sZ3bx&=lG4T-p}Re|e; zN)sTEZh;$whD2QRs=%LwO4BHTbPGs@hD7v-ssJcdn#4`0TR<)}B%-fW1r$Q1Nhy$S z0hQ2@h<;QRPz#kNjX=5uv_hj^w9o%-ZN&YjS44;d(#_Si_FM^{aJ(>_Vq^iB<c4>T>ABF~#NhXR9mjH|HE(8nVL4fu!oQ1kQ*is1vrUa~#)2rCGjgNU=mxbPcgA z7K&)8hlKH(MhlhtW`X>Bj}aZej=|H^g{P!m;)W?`+$S!42O*MCp3O64FP6iJc&^-3 zHHC{MDT#P2sQXVjAW0+_4e7b~)c~w6w`hwq3*K;}V3Xe6R%;p~v?Y?0^=}G!_kVc5 z>SWc-+SXRnD58mvL=4tyM2{0&EdmjJ>6|6MN#uwT+$@xan?-_A;z_kSv~XINtPzG5 zhZk5i5;3}~h>+M4!~6n7qsS3MzF8;@CV|vBDY_ePc~3ks8C3DCLPa8Gg$wX(B1g;+ z%|dCg3#1+u|Ce%hf=hb>ipir2=n^UtF^gOP2#XvsqcjVp!7Y%BeB4>IB|Xu^OjAWe zg^EN>ITxT|B1cR=%|dDL3Z%}+7MZhnFZ9F{qq2$@5GoQe?k>O!iX1UpH4CL7B#?S6 zhx6U)F762^CbBBv1fe1kGuj1!6Ge`g-I|5caEsV7oSog1J;B7JR|UgGAu;=102UEB zVkT@BN&_Lb^k>25^#H3EQ`i48-3gM_bXPCtpMRCG#B9+hWXotSrdBq^@GMfjHZ+nH zP4PTM3hX9{L`-Sk+XW&%l3rr?)JQ}kJpUnQbICYCSJC>Cn*<`7wA&yOF>I?mF-p(l zi6L0!i4k`mPmHE2PYj;(cw%f+d15G>#}oa$$`jrCJf7&XRi5af=kY`jtnx&MJC`Ti z;p&9W>eHaS<}Zz>s=dE`d~E6})4+{^NhA8V+}SlPawu}+Ju{`P@ZMv?GO3N1@6@X6 z8b6!*=f(l(y;CPFvtBlGVyxxffde1B`CSAVI&AQzL+>3pGWOJyH(RH2iw2sXzWKU( z>)R*3TRn47cK5ukJ5Q8`{r1IAyWUx~>xn&U=9U$c_5JUhW<4|wZ0^%o+cgz@m+Q0t z$nl$pA8iI2CdfiVF6r7q=(UBQ`-6pgEi^lN^L)w2PWbA+UDI#V-`zQS$dmFBvl`nE zJ69ZS&xDSx+PD9tHLS1HFn;yN_vK$reE;$2c*i0~7y0wIw`_ench`^gU&+5}{VI9? z>uZQk&2t{}FNZ!N5C37@?k#=xkJ&!>z=|ouCtlY2Dtn><=kHvq|Kz~hEvokqE;_QP zZKAyV4buOa_@UDB$2YIKa!SXbr4RRS+q&XU^X}WUz`BQ@*LiT$maU6^sEaj*j=O><6HDl@+ zVBB2em4kZ!abWutc|}^=@satmEtA=gM@`5MY@fb$Df!AK$T*&sfJaJ%!bMJ5SM@C**a`36=9-sA6 zW!v{_o3C0*9R6V4!3CK+revoY?+!OS@m4n^V_o{rqpApZwPB%5DAyn=}Wu{bR;2 zlXpIJwBC25ec9{lzdF2f)%Awm(fHL%vgy(zZDSWR`#yc=qt4DrpO0A5`V0DDZu;93 zJmmX-pK(e16>Y=jqu&;5`zJegy!g?spGsbf>c&{V4>QIg?OJ!cjK1f<>KC@IJ91ef zyMJ@nZ!a%By6KKhs&N}iuwT)I)OzWmmrhi6u(_ka3s(jwVC<33z^%a7}?KR#h+|JHf)Z1?SS ze(n3IL%n8u#{%V7frH6+i+lby^mh3*lWtf(>9dV{^Y({VO^PzkJsWmB|M!miUfHYG zHTXWrzp0z`VBZDK#~#|;vukR>zA)ydh`YFqxJ2k zS(?ewS>F zfJZm~u>H{J6E8ooXQC`LUir#<3Fps;cE0!hccU-)VaVKT+tc4Xx_8{`vkztFpZIG` z9w*<_w9n}^X{ON>z1yyaI_=@kw{d)0%LAxgE_8uOY_+Ucr)4RKlLqDvkb+o=V zduV&>CIQb;n%|**X4pDqhx^@L?ay64p=-tq-@R=4d`$$Nbz<>OcDeVZ)UpWbz3J%9 zbKY6g*SI;~Z=IXo)6jyWSHw1V+|?sF_b+w!I(gBpjxOZXUU+r`shQAY1Nm@y-x{#7 zZtcapro6eVVL+#1fNpK?0jIZ`oI?`;EVgho|cEM&+_e zOLx3{{y=n(f!^=v`^L?EYGse^n1Y||z2N#@ch+rtaoONA2sJfNemQs7&f9)_c*?uO zRgWz)w{MHh9^yh5+7e3J%+}}M6FR#!5Z~H8y0Curga2m8nxXw`*IwLta>i5jue7bb zZ~v!jw{(wKv*bAaQu}YewHGfK>dg3Ot`*gn-grWNy#39A=MPDoqh(V~bN{-v{l4wQ z)B0L``ru^^vz`!7V^b$5f4+S#d))O;6ca}4F{`uHH(sjk|Hks?&L8hQt9Gl{@brZ$ zo(7X1t7`h_iTL?OJy+8=ep5qo;_>r`EcQ_G4s&9w|gXfiZe|hbQ(Q~E0ESqh<13p~*dH9FN z+~|WV#V-}&GqpEE+-9A2{v1B800o z?0Iz6da(cTBS=U56yRApwXJdUw)HF44-x(kKJ&_NIyFYrC(fwyXP22m3c5_TDq_odXBqVU87s_z>-n>QXMbu p(meXs7mt(&fBe?4&T+}BcK`a~pd~s-HGZe|>G#%bS-q(5e*@V)JH!A0 diff --git a/quicknes/source/inputParser.hpp b/quicknes/source/inputParser.hpp deleted file mode 100644 index d680b5dbe21..00000000000 --- a/quicknes/source/inputParser.hpp +++ /dev/null @@ -1,353 +0,0 @@ -#pragma once - -// Base controller class -// by eien86 - -#include -#include -#include -#include -#include - -namespace jaffar -{ - -typedef uint32_t port_t; - -struct input_t -{ - bool power = false; - bool reset = false; - port_t port1 = 0; - port_t port2 = 0; - port_t arkanoidLatch = 0; - uint8_t arkanoidFire = 0; -}; - -class InputParser -{ - public: - enum controller_t - { - none, - joypad, - fourscore1, - fourscore2, - arkanoidNES, - arkanoidFamicom - }; - - controller_t _controller1Type; - controller_t _controller2Type; - - InputParser(const nlohmann::json &config) - { - // Parsing controller 1 type - { - bool isTypeRecognized = false; - const auto controller1Type = jaffarCommon::json::getString(config, "Controller 1 Type"); - if (controller1Type == "None") - { - _controller1Type = controller_t::none; - isTypeRecognized = true; - } - if (controller1Type == "Joypad") - { - _controller1Type = controller_t::joypad; - isTypeRecognized = true; - } - if (controller1Type == "FourScore1") - { - _controller1Type = controller_t::fourscore1; - isTypeRecognized = true; - } - if (controller1Type == "FourScore2") - { - _controller1Type = controller_t::fourscore2; - isTypeRecognized = true; - } - - #ifdef _QUICKERNES_SUPPORT_ARKANOID_INPUTS - if (controller1Type == "ArkanoidNES") - { - _controller1Type = controller_t::arkanoidNES; - isTypeRecognized = true; - } - if (controller1Type == "ArkanoidFamicom") - { - _controller1Type = controller_t::arkanoidFamicom; - isTypeRecognized = true; - } - #endif - - if (isTypeRecognized == false) JAFFAR_THROW_LOGIC("Controller 1 type not recognized: '%s'\n", controller1Type.c_str()); - } - - // Parsing controller 2 type - { - bool isTypeRecognized = false; - const auto controller2Type = jaffarCommon::json::getString(config, "Controller 2 Type"); - if (controller2Type == "None") - { - _controller2Type = controller_t::none; - isTypeRecognized = true; - } - if (controller2Type == "Joypad") - { - _controller2Type = controller_t::joypad; - isTypeRecognized = true; - } - if (controller2Type == "FourScore1") - { - _controller2Type = controller_t::fourscore1; - isTypeRecognized = true; - } - if (controller2Type == "FourScore2") - { - _controller2Type = controller_t::fourscore2; - isTypeRecognized = true; - } - if (isTypeRecognized == false) JAFFAR_THROW_LOGIC("Controller 2 type not recognized: '%s'\n", controller2Type.c_str()); - } - } - - inline input_t parseInputString(const std::string &inputString) const - { - // Storage for the input - input_t input; - - // Converting input into a stream for parsing - std::istringstream ss(inputString); - - // Start separator - if (ss.get() != '|') reportBadInputString(inputString); - - // Parsing console inputs - parseConsoleInputs(input.reset, input.power, ss, inputString); - - // Parsing controller 1 inputs - if (_controller1Type == arkanoidNES) parseArkanoidNESInput(input, ss, inputString); - if (_controller1Type == arkanoidFamicom) parseArkanoidFamicomInput(input, ss, inputString); - if (_controller1Type == joypad || _controller1Type == fourscore1) parseControllerInputs(_controller1Type, input.port1, ss, inputString); - - // Parsing controller 2 inputs - if (_controller2Type == joypad || _controller2Type == fourscore2) parseControllerInputs(_controller2Type, input.port2, ss, inputString); - - // End separator - if (ss.get() != '|') reportBadInputString(inputString); - - // If its not the end of the stream, then extra values remain and its invalid - ss.get(); - if (ss.eof() == false) reportBadInputString(inputString); - - return input; - } - - private: - static inline void reportBadInputString(const std::string &inputString) - { - JAFFAR_THROW_LOGIC("Could not decode input string: '%s'\n", inputString.c_str()); - } - - static void parseJoyPadInput(uint8_t &code, std::istringstream &ss, const std::string &inputString) - { - // Currently read character - char c; - - // Cleaning code - code = 0; - - // Up - c = ss.get(); - if (c != '.' && c != 'U') reportBadInputString(inputString); - if (c == 'U') code |= 0b00010000; - - // Down - c = ss.get(); - if (c != '.' && c != 'D') reportBadInputString(inputString); - if (c == 'D') code |= 0b00100000; - - // Left - c = ss.get(); - if (c != '.' && c != 'L') reportBadInputString(inputString); - if (c == 'L') code |= 0b01000000; - - // Right - c = ss.get(); - if (c != '.' && c != 'R') reportBadInputString(inputString); - if (c == 'R') code |= 0b10000000; - - // Start - c = ss.get(); - if (c != '.' && c != 'S') reportBadInputString(inputString); - if (c == 'S') code |= 0b00001000; - - // Select - c = ss.get(); - if (c != '.' && c != 's') reportBadInputString(inputString); - if (c == 's') code |= 0b00000100; - - // B - c = ss.get(); - if (c != '.' && c != 'B') reportBadInputString(inputString); - if (c == 'B') code |= 0b00000010; - - // A - c = ss.get(); - if (c != '.' && c != 'A') reportBadInputString(inputString); - if (c == 'A') code |= 0b00000001; - } - - static inline void parseArkanoidInput(input_t& input, std::istringstream& ss, const std::string& inputString) - { - uint8_t potentiometer = 0; - uint8_t fire = 0; - - // Controller separator - if (ss.get() != '|') reportBadInputString(inputString); - - if (ss.get() != ' ') reportBadInputString(inputString); - if (ss.get() != ' ') reportBadInputString(inputString); - - char c = ss.get(); // Hundreds - if (c != ' ' && c < 48 && c > 57) reportBadInputString(inputString); - if (c != ' ') potentiometer += 100 * ( (uint8_t)c - 48 ); - - c = ss.get(); // Tenths - if (c != ' ' && c < 48 && c > 57) reportBadInputString(inputString); - if (c != ' ') potentiometer += 10 * ( (uint8_t)c - 48 ); - - c = ss.get(); // Units - if (c != ' ' && c < 48 && c > 57) reportBadInputString(inputString); - if (c != ' ') potentiometer += (uint8_t)c - 48; - - // Comma - if (ss.get() != ',') reportBadInputString(inputString); - - // Fire - - c = ss.get(); - if (c != '.' && c != 'F') reportBadInputString(inputString); - if (c == 'F') fire = 1; - - // Fire is encoded in port 1 - input.arkanoidFire = fire; - - // Potentiometer is encoded in port 2 - MSB and adding one bit for signalling the presence of the potentiometer, subtracted from 173 - uint8_t subtracter = 171 - potentiometer; - - input.arkanoidLatch = 0; - if ((subtracter & 128) > 0) input.arkanoidLatch += 1; - if ((subtracter & 64) > 0) input.arkanoidLatch += 2; - if ((subtracter & 32) > 0) input.arkanoidLatch += 4; - if ((subtracter & 16) > 0) input.arkanoidLatch += 8; - if ((subtracter & 8) > 0) input.arkanoidLatch += 16; - if ((subtracter & 4) > 0) input.arkanoidLatch += 32; - if ((subtracter & 2) > 0) input.arkanoidLatch += 64; - if ((subtracter & 1) > 0) input.arkanoidLatch += 128; - } - - static void parseControllerInputs(const controller_t type, port_t &port, std::istringstream &ss, const std::string &inputString) - { - // If no controller assigned then, its port is all zeroes. - if (type == controller_t::none) - { - port = 0; - return; - } - - // Controller separator - if (ss.get() != '|') reportBadInputString(inputString); - - // If normal joypad, parse its code now - if (type == controller_t::joypad) - { - // Storage for joypad's code - uint8_t code = 0; - - // Parsing joypad code - parseJoyPadInput(code, ss, inputString); - - // Pushing input code into the port - port = code; - - // Adding joypad signature - // Per https://www.nesdev.org/wiki/Standard_controller, the joypad reports 1s after the first 8 bits - port |= ~0xFF; - } - - // If its fourscore, its like two joypads separated by a | - if (type == controller_t::fourscore1 || type == controller_t::fourscore2) - { - // Storage for joypad's code - uint8_t code1 = 0; - uint8_t code2 = 0; - - // Parsing joypad code1 - parseJoyPadInput(code1, ss, inputString); - - // Separator - if (ss.get() != '|') reportBadInputString(inputString); - - // Parsing joypad code1 - parseJoyPadInput(code2, ss, inputString); - - // Creating code - port = code1; - port |= (uint32_t)0 | code2 << 8; - if (type == controller_t::fourscore1) port |= (uint32_t)0 | 1 << 19; - if (type == controller_t::fourscore2) port |= (uint32_t)0 | 1 << 18; - port |= (uint32_t)0 | 1 << 24; - port |= (uint32_t)0 | 1 << 25; - port |= (uint32_t)0 | 1 << 26; - port |= (uint32_t)0 | 1 << 27; - port |= (uint32_t)0 | 1 << 28; - port |= (uint32_t)0 | 1 << 29; - port |= (uint32_t)0 | 1 << 30; - port |= (uint32_t)0 | 1 << 31; - } - } - - static inline void parseArkanoidNESInput(input_t& input, std::istringstream& ss, const std::string& inputString) - { - // Simply parse the arkanoid controller input - parseArkanoidInput(input, ss, inputString); - } - - static inline void parseArkanoidFamicomInput(input_t& input, std::istringstream& ss, const std::string& inputString) - { - // Parsing joypad controller - parseControllerInputs(controller_t::joypad, input.port1, ss, inputString); - - // Controller separator - if (ss.get() != '|') reportBadInputString(inputString); - - // Advancing 7 positions (this input is not supported) - for (size_t i = 0; i < 7; i++) if (ss.get() != '.') reportBadInputString(inputString); - - // Then, parse the arkanoid controller input - parseArkanoidInput(input, ss, inputString); - } - - - static void parseConsoleInputs(bool &reset, bool &power, std::istringstream &ss, const std::string &inputString) - { - // Currently read character - char c; - - // Power trigger - c = ss.get(); - if (c != '.' && c != 'P') reportBadInputString(inputString); - if (c == 'P') power = true; - if (c == '.') power = false; - - // Reset trigger - c = ss.get(); - if (c != '.' && c != 'r') reportBadInputString(inputString); - if (c == 'r') reset = true; - if (c == '.') reset = false; - } - -}; // class InputParser - -} // namespace jaffar \ No newline at end of file diff --git a/quicknes/source/meson.build b/quicknes/source/meson.build deleted file mode 100644 index cf5591dd318..00000000000 --- a/quicknes/source/meson.build +++ /dev/null @@ -1,12 +0,0 @@ -# Getting core configurations -if get_option('buildQuickNES') == true -subdir('quickNES') -endif - -subdir('quickerNES') - -# Tool Configuration - - toolDependency = declare_dependency( - include_directories : include_directories(['.']), - ) diff --git a/quicknes/source/nesInstanceBase.hpp b/quicknes/source/nesInstanceBase.hpp deleted file mode 100644 index f8d8e27476b..00000000000 --- a/quicknes/source/nesInstanceBase.hpp +++ /dev/null @@ -1,89 +0,0 @@ -#pragma once - -#include "inputParser.hpp" -#include "jaffarCommon/logger.hpp" -#include "jaffarCommon/serializers/contiguous.hpp" -#include "jaffarCommon/serializers/differential.hpp" -#include "jaffarCommon/deserializers/base.hpp" - -// Size of image generated in graphics buffer -static const uint16_t image_width = 256; -static const uint16_t image_height = 240; - -class NESInstanceBase -{ - public: - NESInstanceBase(const nlohmann::json &config) - { - _inputParser = std::make_unique(config); - } - - virtual ~NESInstanceBase() = default; - - virtual void advanceState(const jaffar::input_t &input) = 0; - - inline void enableRendering() { _doRendering = true; }; - inline void disableRendering() { _doRendering = false; }; - - inline bool loadROM(const uint8_t *romData, const size_t romSize) - { - // Actually loading rom file - auto status = loadROMImpl(romData, romSize); - - // Detecting full state size - _stateSize = getFullStateSize(); - - // Returning status - return status; - } - - void enableStateBlock(const std::string &block) - { - // Calling implementation - enableStateBlockImpl(block); - - // Recalculating State size - _stateSize = getFullStateSize(); - } - - void disableStateBlock(const std::string &block) - { - // Calling implementation - disableStateBlockImpl(block); - - // Recalculating State Size - _stateSize = getFullStateSize(); - } - - virtual size_t getFullStateSize() const = 0; - virtual size_t getDifferentialStateSize() const = 0; - inline jaffar::InputParser *getInputParser() const { return _inputParser.get(); } - - // Virtual functions - - virtual uint8_t *getLowMem() const = 0; - virtual size_t getLowMemSize() const = 0; - - virtual void serializeState(jaffarCommon::serializer::Base &serializer) const = 0; - virtual void deserializeState(jaffarCommon::deserializer::Base &deserializer) = 0; - - virtual void doSoftReset() = 0; - virtual void doHardReset() = 0; - virtual std::string getCoreName() const = 0; - virtual void *getInternalEmulatorPointer() = 0; - virtual void setNTABBlockSize(const size_t size) {}; - - protected: - virtual void enableStateBlockImpl(const std::string &block) = 0; - virtual void disableStateBlockImpl(const std::string &block) = 0; - virtual bool loadROMImpl(const uint8_t *romData, const size_t romSize) = 0; - - // Storage for the light state size - size_t _stateSize; - - // Flag to determine whether to enable/disable rendering - bool _doRendering = true; - - // Input parser instance - std::unique_ptr _inputParser; -}; diff --git a/quicknes/source/playbackInstance.hpp b/quicknes/source/playbackInstance.hpp deleted file mode 100644 index 365f8fdb8cc..00000000000 --- a/quicknes/source/playbackInstance.hpp +++ /dev/null @@ -1,274 +0,0 @@ -#pragma once - -#include "nesInstance.hpp" -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#define _INVERSE_FRAME_RATE 16667 - -struct stepData_t -{ - std::string inputString; - jaffar::input_t decodedInput; - uint8_t *stateData; - jaffarCommon::hash::hash_t hash; -}; - -class PlaybackInstance -{ - static const uint16_t image_width = 256; - static const uint16_t image_height = 240; - - public: - void addStep(const std::string &inputString, const jaffar::input_t decodedInput) - { - stepData_t step; - step.inputString = inputString; - step.decodedInput = decodedInput; - step.stateData = (uint8_t *)malloc(_emu->getFullStateSize()); - - jaffarCommon::serializer::Contiguous serializer(step.stateData); - _emu->serializeState(serializer); - step.hash = jaffarCommon::hash::calculateMetroHash(_emu->getLowMem(), _emu->getLowMemSize()); - - // Adding the step into the sequence - _stepSequence.push_back(step); - } - - // Initializes the playback module instance - PlaybackInstance(NESInstance *emu, const std::string &overlayPath = "") : _emu(emu) - { - // Loading overlay, if provided - if (overlayPath != "") - { - // Using overlay - _useOverlay = true; - - // Loading overlay images - std::string imagePath; - - imagePath = _overlayPath + std::string("/base.png"); - _overlayBaseSurface = IMG_Load(imagePath.c_str()); - if (_overlayBaseSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); - - imagePath = _overlayPath + std::string("/button_a.png"); - _overlayButtonASurface = IMG_Load(imagePath.c_str()); - if (_overlayButtonASurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); - - imagePath = _overlayPath + std::string("/button_b.png"); - _overlayButtonBSurface = IMG_Load(imagePath.c_str()); - if (_overlayButtonBSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); - - imagePath = _overlayPath + std::string("/button_select.png"); - _overlayButtonSelectSurface = IMG_Load(imagePath.c_str()); - if (_overlayButtonSelectSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); - - imagePath = _overlayPath + std::string("/button_start.png"); - _overlayButtonStartSurface = IMG_Load(imagePath.c_str()); - if (_overlayButtonStartSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); - - imagePath = _overlayPath + std::string("/button_left.png"); - _overlayButtonLeftSurface = IMG_Load(imagePath.c_str()); - if (_overlayButtonLeftSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); - - imagePath = _overlayPath + std::string("/button_right.png"); - _overlayButtonRightSurface = IMG_Load(imagePath.c_str()); - if (_overlayButtonRightSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); - - imagePath = _overlayPath + std::string("/button_up.png"); - _overlayButtonUpSurface = IMG_Load(imagePath.c_str()); - if (_overlayButtonUpSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); - - imagePath = _overlayPath + std::string("/button_down.png"); - _overlayButtonDownSurface = IMG_Load(imagePath.c_str()); - if (_overlayButtonDownSurface == NULL) JAFFAR_THROW_LOGIC("[Error] Could not load image: %s, Reason: %s\n", imagePath.c_str(), SDL_GetError()); - } - } - - void initialize(const std::vector &sequence) - { - // Getting input decoder - auto inputParser = _emu->getInputParser(); - - // Building sequence information - for (const auto &input : sequence) - { - // Getting decoded input - const auto decodedInput = inputParser->parseInputString(input); - - // Adding new step - addStep(input, decodedInput); - - // Advance state based on the input received - _emu->advanceState(decodedInput); - } - - // Adding last step with no input - addStep("", jaffar::input_t()); - } - - void enableRendering(SDL_Window *window) - { - // Allocating video buffer - _video_buffer = (uint8_t *)malloc(image_width * image_height); - - // Setting video buffer - ((emulator_t *)_emu->getInternalEmulatorPointer())->set_pixels(_video_buffer, image_width + 8); - - // Loading Emulator instance HQN - _hqnState.setEmulatorPointer(_emu->getInternalEmulatorPointer()); - static uint8_t video_buffer[image_width * image_height]; - _hqnState.m_emu->set_pixels(video_buffer, image_width + 8); - - // Enabling emulation rendering - _emu->enableRendering(); - - // Creating HQN GUI - _hqnGUI = hqn::GUIController::create(_hqnState, window); - _hqnGUI->setScale(1); - } - - // Function to render frame - void renderFrame(const size_t stepId) - { - // Checking the required step id does not exceed contents of the sequence - if (stepId > _stepSequence.size()) JAFFAR_THROW_LOGIC("[Error] Attempting to render a step larger than the step sequence"); - - // Getting step information - const auto &step = _stepSequence[stepId]; - - // Pointer to overlay images (NULL if unused) - SDL_Surface *overlayButtonASurface = NULL; - SDL_Surface *overlayButtonBSurface = NULL; - SDL_Surface *overlayButtonSelectSurface = NULL; - SDL_Surface *overlayButtonStartSurface = NULL; - SDL_Surface *overlayButtonLeftSurface = NULL; - SDL_Surface *overlayButtonRightSurface = NULL; - SDL_Surface *overlayButtonUpSurface = NULL; - SDL_Surface *overlayButtonDownSurface = NULL; - - // Load correct overlay images, if using overlay - if (_useOverlay == true) - { - if (step.inputString.find("A") != std::string::npos) overlayButtonASurface = _overlayButtonASurface; - if (step.inputString.find("B") != std::string::npos) overlayButtonBSurface = _overlayButtonBSurface; - if (step.inputString.find("S") != std::string::npos) overlayButtonSelectSurface = _overlayButtonSelectSurface; - if (step.inputString.find("T") != std::string::npos) overlayButtonStartSurface = _overlayButtonStartSurface; - if (step.inputString.find("L") != std::string::npos) overlayButtonLeftSurface = _overlayButtonLeftSurface; - if (step.inputString.find("R") != std::string::npos) overlayButtonRightSurface = _overlayButtonRightSurface; - if (step.inputString.find("U") != std::string::npos) overlayButtonUpSurface = _overlayButtonUpSurface; - if (step.inputString.find("D") != std::string::npos) overlayButtonDownSurface = _overlayButtonDownSurface; - } - - // Since we do not store the blit information (too much memory), we need to load the previous frame and re-run the input - - // If its the first step, then simply reset - if (stepId == 0) _emu->doHardReset(); - - // Else we load the previous frame - if (stepId > 0) - { - const auto stateData = getStateData(stepId - 1); - jaffarCommon::deserializer::Contiguous deserializer(stateData); - _emu->deserializeState(deserializer); - _emu->advanceState(getDecodedInput(stepId - 1)); - } - - // Updating image - int32_t curBlit[BLIT_SIZE]; - saveBlit(_emu->getInternalEmulatorPointer(), curBlit, hqn::HQNState::NES_VIDEO_PALETTE, 0, 0, 0, 0); - _hqnGUI->update_blit(curBlit, _overlayBaseSurface, overlayButtonASurface, overlayButtonBSurface, overlayButtonSelectSurface, overlayButtonStartSurface, overlayButtonLeftSurface, overlayButtonRightSurface, overlayButtonUpSurface, overlayButtonDownSurface); - } - - size_t getSequenceLength() const - { - return _stepSequence.size(); - } - - const std::string getInputString(const size_t stepId) const - { - // Checking the required step id does not exceed contents of the sequence - if (stepId > _stepSequence.size()) JAFFAR_THROW_LOGIC("[Error] Attempting to render a step larger than the step sequence"); - - // Getting step information - const auto &step = _stepSequence[stepId]; - - // Returning step input - return step.inputString; - } - - const jaffar::input_t getDecodedInput(const size_t stepId) const - { - // Checking the required step id does not exceed contents of the sequence - if (stepId > _stepSequence.size()) JAFFAR_THROW_LOGIC("[Error] Attempting to render a step larger than the step sequence"); - - // Getting step information - const auto &step = _stepSequence[stepId]; - - // Returning step input - return step.decodedInput; - } - - const uint8_t *getStateData(const size_t stepId) const - { - // Checking the required step id does not exceed contents of the sequence - if (stepId > _stepSequence.size()) JAFFAR_THROW_LOGIC("[Error] Attempting to render a step larger than the step sequence"); - - // Getting step information - const auto &step = _stepSequence[stepId]; - - // Returning step input - return step.stateData; - } - - const jaffarCommon::hash::hash_t getStateHash(const size_t stepId) const - { - // Checking the required step id does not exceed contents of the sequence - if (stepId > _stepSequence.size()) JAFFAR_THROW_LOGIC("[Error] Attempting to render a step larger than the step sequence"); - - // Getting step information - const auto &step = _stepSequence[stepId]; - - // Returning step input - return step.hash; - } - - - private: - // Internal sequence information - std::vector _stepSequence; - - // Storage for the HQN state - hqn::HQNState _hqnState; - - // Storage for the HQN GUI controller - hqn::GUIController *_hqnGUI; - - // Pointer to the contained emulator instance - NESInstance *const _emu; - - // Flag to store whether to use the button overlay - bool _useOverlay = false; - - // Video buffer - uint8_t *_video_buffer; - - // Overlay info - std::string _overlayPath; - SDL_Surface *_overlayBaseSurface = NULL; - SDL_Surface *_overlayButtonASurface; - SDL_Surface *_overlayButtonBSurface; - SDL_Surface *_overlayButtonSelectSurface; - SDL_Surface *_overlayButtonStartSurface; - SDL_Surface *_overlayButtonLeftSurface; - SDL_Surface *_overlayButtonRightSurface; - SDL_Surface *_overlayButtonUpSurface; - SDL_Surface *_overlayButtonDownSurface; -}; diff --git a/quicknes/source/player.cpp b/quicknes/source/player.cpp deleted file mode 100644 index 9d124afc34e..00000000000 --- a/quicknes/source/player.cpp +++ /dev/null @@ -1,241 +0,0 @@ -#include "argparse/argparse.hpp" -#include "jaffarCommon/deserializers/contiguous.hpp" -#include "jaffarCommon/file.hpp" -#include "jaffarCommon/logger.hpp" -#include "jaffarCommon/serializers/contiguous.hpp" -#include "jaffarCommon/string.hpp" -#include "nesInstance.hpp" -#include "playbackInstance.hpp" -#include - -SDL_Window *launchOutputWindow() -{ - // Opening rendering window - SDL_SetMainReady(); - - // We can only call SDL_InitSubSystem once - if (!SDL_WasInit(SDL_INIT_VIDEO)) - if (SDL_InitSubSystem(SDL_INIT_VIDEO) != 0) JAFFAR_THROW_LOGIC("Failed to initialize video: %s", SDL_GetError()); - - auto window = SDL_CreateWindow("JaffarPlus", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 100, 100, SDL_WINDOW_RESIZABLE); - if (window == nullptr) JAFFAR_THROW_LOGIC("Coult not open SDL window"); - - return window; -} - -void closeOutputWindow(SDL_Window *window) { SDL_DestroyWindow(window); } - -int main(int argc, char *argv[]) -{ - // Parsing command line arguments - argparse::ArgumentParser program("player", "1.0"); - - program.add_argument("romFile") - .help("Path to the rom file to run.") - .required(); - - program.add_argument("sequenceFile") - .help("Path to the input sequence file (.sol) to reproduce.") - .required(); - - program.add_argument("stateFile") - .help("(Optional) Path to the initial state file to load.") - .default_value(std::string("")); - - program.add_argument("--reproduce") - .help("Plays the entire sequence without interruptions and exit at the end.") - .default_value(false) - .implicit_value(true); - - program.add_argument("--disableRender") - .help("Do not render game window.") - .default_value(false) - .implicit_value(true); - - program.add_argument("--controller1") - .help("Specifies the controller 1 type.") - .default_value(std::string("Joypad")); - - program.add_argument("--controller2") - .help("Specifies the controller 2 type.") - .default_value(std::string("None")); - - // Try to parse arguments - try - { - program.parse_args(argc, argv); - } - catch (const std::runtime_error &err) - { - JAFFAR_THROW_LOGIC("%s\n%s", err.what(), program.help().str().c_str()); - } - - // Getting ROM file path - std::string romFilePath = program.get("romFile"); - - // Getting sequence file path - std::string sequenceFilePath = program.get("sequenceFile"); - - // If initial state file is specified, load it - std::string stateFilePath = program.get("stateFile"); - - // Getting reproduce flag - bool isReproduce = program.get("--reproduce"); - - // Getting reproduce flag - bool disableRender = program.get("--disableRender"); - - // Getting controller 1 Type - std::string controller1Type = program.get("--controller1"); - - // Getting controller 2 Type - std::string controller2Type = program.get("--controller2"); - - // Loading sequence file - std::string inputSequence; - auto status = jaffarCommon::file::loadStringFromFile(inputSequence, sequenceFilePath.c_str()); - if (status == false) JAFFAR_THROW_LOGIC("[ERROR] Could not find or read from sequence file: %s\n", sequenceFilePath.c_str()); - - // Building sequence information - const auto sequence = jaffarCommon::string::split(inputSequence, '\n'); - - // Initializing terminal - jaffarCommon::logger::initializeTerminal(); - - // Printing provided parameters - jaffarCommon::logger::log("[] Rom File Path: '%s'\n", romFilePath.c_str()); - jaffarCommon::logger::log("[] Sequence File Path: '%s'\n", sequenceFilePath.c_str()); - jaffarCommon::logger::log("[] Sequence Length: %lu\n", sequence.size()); - jaffarCommon::logger::log("[] State File Path: '%s'\n", stateFilePath.empty() ? "" : stateFilePath.c_str()); - jaffarCommon::logger::log("[] Generating Sequence...\n"); - - jaffarCommon::logger::refreshTerminal(); - - // Creating emulator instance - nlohmann::json emulatorConfig; - emulatorConfig["Controller 1 Type"] = controller1Type; - emulatorConfig["Controller 2 Type"] = controller2Type; - NESInstance e(emulatorConfig); - - // Loading ROM File - std::string romFileData; - if (jaffarCommon::file::loadStringFromFile(romFileData, romFilePath) == false) JAFFAR_THROW_LOGIC("Could not rom file: %s\n", romFilePath.c_str()); - e.loadROM((uint8_t *)romFileData.data(), romFileData.size()); - - // If an initial state is provided, load it now - if (stateFilePath != "") - { - std::string stateFileData; - if (jaffarCommon::file::loadStringFromFile(stateFileData, stateFilePath) == false) JAFFAR_THROW_LOGIC("Could not initial state file: %s\n", stateFilePath.c_str()); - jaffarCommon::deserializer::Contiguous deserializer(stateFileData.data()); - e.deserializeState(deserializer); - } - - // Creating playback instance - auto p = PlaybackInstance(&e); - - // If render is enabled then, create window now - SDL_Window *window = nullptr; - if (disableRender == false) - { - window = launchOutputWindow(); - p.enableRendering(window); - } - - // Initializing playback instance - p.initialize(sequence); - - // Getting state size - auto stateSize = e.getFullStateSize(); - - // Flag to continue running playback - bool continueRunning = true; - - // Variable for current step in view - ssize_t sequenceLength = p.getSequenceLength(); - ssize_t currentStep = 0; - - // Flag to display frame information - bool showFrameInfo = true; - - // Interactive section - while (continueRunning) - { - // Updating display - if (disableRender == false) p.renderFrame(currentStep); - - // Getting input - const auto &inputString = p.getInputString(currentStep); - - // Getting state hash - const auto hash = p.getStateHash(currentStep); - - // Getting state data - const auto stateData = p.getStateData(currentStep); - - // Printing data and commands - if (showFrameInfo) - { - jaffarCommon::logger::clearTerminal(); - - jaffarCommon::logger::log("[] ----------------------------------------------------------------\n"); - jaffarCommon::logger::log("[] Current Step #: %lu / %lu\n", currentStep + 1, sequenceLength); - jaffarCommon::logger::log("[] Input: %s\n", inputString.c_str()); - jaffarCommon::logger::log("[] State Hash: 0x%lX%lX\n", hash.first, hash.second); - jaffarCommon::logger::log("[] Paddle X: %u\n", e.getLowMem()[0x11A]); - - // Only print commands if not in reproduce mode - if (isReproduce == false) jaffarCommon::logger::log("[] Commands: n: -1 m: +1 | h: -10 | j: +10 | y: -100 | u: +100 | k: -1000 | i: +1000 | s: quicksave | p: play | q: quit\n"); - - jaffarCommon::logger::refreshTerminal(); - } - - // Resetting show frame info flag - showFrameInfo = true; - - // Get command - auto command = jaffarCommon::logger::waitForKeyPress(); - - // Advance/Rewind commands - if (command == 'n') currentStep = currentStep - 1; - if (command == 'm') currentStep = currentStep + 1; - if (command == 'h') currentStep = currentStep - 10; - if (command == 'j') currentStep = currentStep + 10; - if (command == 'y') currentStep = currentStep - 100; - if (command == 'u') currentStep = currentStep + 100; - if (command == 'k') currentStep = currentStep - 1000; - if (command == 'i') currentStep = currentStep + 1000; - - // Correct current step if requested more than possible - if (currentStep < 0) currentStep = 0; - if (currentStep >= sequenceLength) currentStep = sequenceLength - 1; - - // Quicksave creation command - if (command == 's') - { - // Storing state file - std::string saveFileName = "quicksave.state"; - - std::string saveData; - saveData.resize(stateSize); - memcpy(saveData.data(), stateData, stateSize); - if (jaffarCommon::file::saveStringToFile(saveData, saveFileName.c_str()) == false) JAFFAR_THROW_LOGIC("[ERROR] Could not save state file: %s\n", saveFileName.c_str()); - jaffarCommon::logger::log("[] Saved state to %s\n", saveFileName.c_str()); - - // Do no show frame info again after this action - showFrameInfo = false; - } - - // Start playback from current point - if (command == 'p') isReproduce = true; - - // Start playback from current point - if (command == 'q') continueRunning = false; - } - - // If render is enabled then, close window now - if (disableRender == false) closeOutputWindow(window); - - // Ending ncurses window - jaffarCommon::logger::finalizeTerminal(); -} diff --git a/quicknes/source/quickNES/meson.build b/quicknes/source/quickNES/meson.build deleted file mode 100644 index bba4cf40205..00000000000 --- a/quicknes/source/quickNES/meson.build +++ /dev/null @@ -1,80 +0,0 @@ -# quickNES Core sources - -quickNESSrc = [ - 'core/nes_emu/abstract_file.cpp', - 'core/nes_emu/apu_state.cpp', - 'core/nes_emu/Blip_Buffer.cpp', - 'core/nes_emu/Effects_Buffer.cpp', - 'core/nes_emu/Mapper_Fme7.cpp', - 'core/nes_emu/Mapper_Mmc5.cpp', - 'core/nes_emu/Mapper_Namco106.cpp', - 'core/nes_emu/Mapper_Vrc6.cpp', - 'core/nes_emu/misc_mappers.cpp', - 'core/nes_emu/Mapper_15.cpp', - 'core/nes_emu/Mapper_60.cpp', - 'core/nes_emu/Multi_Buffer.cpp', - 'core/nes_emu/Nes_Apu.cpp', - 'core/nes_emu/Nes_Buffer.cpp', - 'core/nes_emu/Nes_Cart.cpp', - 'core/nes_emu/Nes_Core.cpp', - 'core/nes_emu/Nes_Cpu.cpp', - 'core/nes_emu/nes_data.cpp', - 'core/nes_emu/Nes_Effects_Buffer.cpp', - 'core/nes_emu/Nes_Emu.cpp', - 'core/nes_emu/Nes_File.cpp', - 'core/nes_emu/Nes_Fme7_Apu.cpp', - 'core/nes_emu/Nes_Mapper.cpp', - 'core/nes_emu/nes_mappers.cpp', - 'core/nes_emu/Nes_Mmc1.cpp', - 'core/nes_emu/Nes_Mmc3.cpp', - 'core/nes_emu/Mapper_70.cpp', - 'core/nes_emu/Mapper_Misc.cpp', - 'core/nes_emu/Mapper_Unrom512.cpp', - 'core/nes_emu/Mapper_Vrc1.cpp', - 'core/nes_emu/Mapper_Vrc3.cpp', - 'core/nes_emu/Mapper_Vrc2_4.cpp', - 'core/nes_emu/Mapper_Vrc7.cpp', - 'core/nes_emu/Nes_Vrc7.cpp', - 'core/nes_emu/emu2413.cpp', - 'core/nes_emu/emu2413_state.cpp', - 'core/nes_emu/Nes_Namco_Apu.cpp', - 'core/nes_emu/Mmc24.cpp', - 'core/nes_emu/Nes_Oscs.cpp', - 'core/nes_emu/Nes_Ppu.cpp', - 'core/nes_emu/Nes_Ppu_Impl.cpp', - 'core/nes_emu/Nes_Ppu_Rendering.cpp', - 'core/nes_emu/Nes_State.cpp', - 'core/nes_emu/nes_util.cpp', - 'core/nes_emu/Nes_Vrc6_Apu.cpp', - 'core/nes_emu/Data_Reader.cpp', - 'core/nes_emu/Mappers.cpp', - 'core/nes_emu/Mapper_74x161x162x32.cpp', - 'core/nes_emu/Mapper_180.cpp', - 'core/nes_emu/Mapper_193.cpp', - 'core/nes_emu/Mapper_240.cpp', - 'core/nes_emu/Mapper_241.cpp', - 'core/nes_emu/Mapper_244.cpp', - 'core/nes_emu/Mapper_246.cpp', - 'core/nes_emu/Mapper_AveNina.cpp', - 'core/nes_emu/Mapper_IremG101.cpp', - 'core/nes_emu/Mapper_IremTamS1.cpp', - 'core/nes_emu/Mapper_JalecoJF11.cpp', - 'core/nes_emu/Mapper_Namco54xx.cpp', - 'core/nes_emu/Mapper_Sunsoft1.cpp', - 'core/nes_emu/Mapper_Sunsoft2.cpp', - 'core/nes_emu/Mapper_TaitoX1005.cpp', - 'core/nes_emu/Mapper_TaitoTC0190.cpp', - 'core/nes_emu/Mapper_Un1rom.cpp', - 'core/nes_emu/nes_ntsc.cpp' -] - -# quickNES Core Configuration - - quickNESDependency = declare_dependency( - compile_args : [ ], - include_directories : include_directories(['.', 'core/nes_emu']), - sources : [ quickNESSrc ], - dependencies : [ - dependency('sdl2'), - ] - ) diff --git a/quicknes/source/quickNES/nesInstance.hpp b/quicknes/source/quickNES/nesInstance.hpp deleted file mode 100644 index 2bd1babf655..00000000000 --- a/quicknes/source/quickNES/nesInstance.hpp +++ /dev/null @@ -1,85 +0,0 @@ -#pragma once - -#include "../nesInstanceBase.hpp" -#include "core/nes_emu/Nes_Emu.h" -#include "core/nes_emu/Nes_State.h" -#include "jaffarCommon/deserializers/base.hpp" -#include "jaffarCommon/serializers/base.hpp" - -#define _DUMMY_SIZE 65536 - -typedef Nes_Emu emulator_t; - -extern void register_misc_mappers(); -extern void register_extra_mappers(); -extern void register_mapper_70(); - -class NESInstance final : public NESInstanceBase -{ - public: - NESInstance(const nlohmann::json &config) : NESInstanceBase(config) - { - // If running the original QuickNES, register extra mappers now - register_misc_mappers(); - register_extra_mappers(); - register_mapper_70(); - } - - uint8_t *getLowMem() const override { return _nes.low_mem(); }; - size_t getLowMemSize() const override { return 0x800; }; - - void serializeState(jaffarCommon::serializer::Base &serializer) const override - { - Mem_Writer w(serializer.getOutputDataBuffer(), _stateSize, 0); - Auto_File_Writer a(w); - _nes.save_state(a); - } - - void deserializeState(jaffarCommon::deserializer::Base &deserializer) override - { - Mem_File_Reader r(deserializer.getInputDataBuffer(), _stateSize); - Auto_File_Reader a(r); - _nes.load_state(a); - } - - inline size_t getFullStateSize() const override - { - uint8_t *data = (uint8_t *)malloc(_DUMMY_SIZE); - Mem_Writer w(data, _DUMMY_SIZE); - Auto_File_Writer a(w); - _nes.save_state(a); - free(data); - return w.size(); - } - - inline size_t getDifferentialStateSize() const override { return getFullStateSize(); } - - std::string getCoreName() const override { return "QuickNES"; } - void doSoftReset() override { _nes.reset(false); } - void doHardReset() override { _nes.reset(true); } - - void *getInternalEmulatorPointer() override { return &_nes; } - - void advanceState(const jaffar::input_t &input) override - { - if (_doRendering == true) _nes.emulate_frame(input.port1, input.port2); - if (_doRendering == false) _nes.emulate_skip_frame(input.port1, input.port2); - } - - protected: - bool loadROMImpl(const uint8_t *romData, const size_t romSize) override - { - // Loading rom data - Mem_File_Reader romReader(romData, (int)romSize); - Auto_File_Reader romFile(romReader); - auto result = _nes.load_ines(romFile); - return result == 0; - } - - void enableStateBlockImpl(const std::string &block) override {}; - void disableStateBlockImpl(const std::string &block) override {}; - - private: - // Emulator instance - emulator_t _nes; -}; diff --git a/quicknes/source/quickerNES/core/apu/NESEffectsBuffer.cpp b/quicknes/source/quickerNES/core/apu/NESEffectsBuffer.cpp deleted file mode 100644 index 83955c5e716..00000000000 --- a/quicknes/source/quickerNES/core/apu/NESEffectsBuffer.cpp +++ /dev/null @@ -1,85 +0,0 @@ - -// Nes_Emu 0.7.0. http://www.slack.net/~ant/libs/ - -#include "NESEffectsBuffer.hpp" -#include "apu.hpp" - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -Nes_Effects_Buffer::Nes_Effects_Buffer() : Effects_Buffer(true) // nes never uses stereo channels -{ - config_t c; - c.effects_enabled = false; - config(c); -} - -Nes_Effects_Buffer::~Nes_Effects_Buffer() {} - -void Nes_Effects_Buffer::enable_nonlinearity(bool b) -{ - if (b) clear(); - Apu *apu = nonlin.enable(b, channel(2).center); - apu->osc_output(0, channel(0).center); - apu->osc_output(1, channel(1).center); -} - -void Nes_Effects_Buffer::config(const config_t &in) -{ - config_t c = in; - if (!c.effects_enabled) - { - // effects must always be enabled to keep separate buffers, so - // set parameters to be equivalent to disabled - c.pan_1 = 0; - c.pan_2 = 0; - c.echo_level = 0; - c.reverb_level = 0; - c.effects_enabled = true; - } - Effects_Buffer::config(c); -} - -const char *Nes_Effects_Buffer::set_sample_rate(long rate, int msec) -{ - enable_nonlinearity(nonlin.enabled); // reapply - return Effects_Buffer::set_sample_rate(rate, msec); -} - -void Nes_Effects_Buffer::clear() -{ - nonlin.clear(); - Effects_Buffer::clear(); -} - -Nes_Effects_Buffer::channel_t Nes_Effects_Buffer::channel(int i) -{ - return Effects_Buffer::channel((2 <= i && i <= 4) ? 2 : i & 1); -} - -long Nes_Effects_Buffer::read_samples(blip_sample_t *out, long count) -{ - count = 2 * nonlin.make_nonlinear(*channel(2).center, count / 2); - return Effects_Buffer::read_samples(out, count); -} - -void Nes_Effects_Buffer::SaveAudioBufferState() -{ -} - -void Nes_Effects_Buffer::RestoreAudioBufferState() -{ -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/NESEffectsBuffer.hpp b/quicknes/source/quickerNES/core/apu/NESEffectsBuffer.hpp deleted file mode 100644 index 1eeff75e533..00000000000 --- a/quicknes/source/quickerNES/core/apu/NESEffectsBuffer.hpp +++ /dev/null @@ -1,41 +0,0 @@ -#pragma once - -// Effects_Buffer with non-linear sound -// Nes_Emu 0.7.0 - -#include "buffer.hpp" -#include "effectsBuffer.hpp" - -namespace quickerNES -{ - -// Effects_Buffer uses several buffers and outputs stereo sample pairs. -class Nes_Effects_Buffer : public Effects_Buffer -{ - public: - Nes_Effects_Buffer(); - ~Nes_Effects_Buffer(); - - // Setup APU for use with buffer, including setting its output to this buffer. - // If you're using Nes_Emu, this is automatically called for you. - void set_apu(Apu *apu) { nonlin.set_apu(apu); } - - // Enable/disable non-linear output - void enable_nonlinearity(bool = true); - - // See Effects_Buffer.h for reference - const char *set_sample_rate(long rate, int msec = blip_default_length); - void config(const config_t &); - void clear(); - channel_t channel(int); - long read_samples(blip_sample_t *, long); - - void SaveAudioBufferState(); - void RestoreAudioBufferState(); - - private: - Nonlinearizer nonlin; - friend Multi_Buffer *set_apu(Nes_Effects_Buffer *, Apu *); -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/apu.cpp b/quicknes/source/quickerNES/core/apu/apu.cpp deleted file mode 100644 index bd72f34bff6..00000000000 --- a/quicknes/source/quickerNES/core/apu/apu.cpp +++ /dev/null @@ -1,375 +0,0 @@ -// Snd_Emu 0.1.7. http://www.slack.net/~ant/ - -#include "apu.hpp" - -/* Copyright (C) 2003-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -int const amp_range = 15; - -Apu::Apu() : square1(&square_synth), - square2(&square_synth) -{ - dmc.apu = this; - dmc.prg_reader = 0; - irq_notifier_ = 0; - - oscs[0] = &square1; - oscs[1] = &square2; - oscs[2] = ▵ - oscs[3] = &noise; - oscs[4] = &dmc; - - output(0); - volume(1.0); - reset(false); -} - -Apu::~Apu() -{ -} - -void Apu::treble_eq(const blip_eq_t &eq) -{ - square_synth.treble_eq(eq); - triangle.synth.treble_eq(eq); - noise.synth.treble_eq(eq); - dmc.synth.treble_eq(eq); -} - -void Apu::enable_nonlinear(double v) -{ - dmc.nonlinear = true; - square_synth.volume(1.3 * 0.25751258 / 0.742467605 * 0.25 / amp_range * v); - - const double tnd = 0.48 / 202 * nonlinear_tnd_gain(); - triangle.synth.volume(3.0 * tnd); - noise.synth.volume(2.0 * tnd); - dmc.synth.volume(tnd); - - square1.last_amp = 0; - square2.last_amp = 0; - triangle.last_amp = 0; - noise.last_amp = 0; - dmc.last_amp = 0; -} - -void Apu::volume(double v) -{ - dmc.nonlinear = false; - square_synth.volume(0.1128 / amp_range * v); - triangle.synth.volume(0.12765 / amp_range * v); - noise.synth.volume(0.0741 / amp_range * v); - dmc.synth.volume(0.42545 / 127 * v); -} - -void Apu::output(Blip_Buffer *buffer) -{ - for (int i = 0; i < osc_count; i++) - osc_output(i, buffer); -} - -void Apu::reset(bool pal_mode, int initial_dmc_dac) -{ - // to do: time pal frame periods exactly - frame_period = pal_mode ? 8314 : 7458; - dmc.pal_mode = pal_mode; - - square1.reset(); - square2.reset(); - triangle.reset(); - noise.reset(); - dmc.reset(); - - last_time = 0; - last_dmc_time = 0; - osc_enables = 0; - irq_flag = false; - earliest_irq_ = no_irq; - frame_delay = 1; - write_register(0, 0x4017, 0x00); - write_register(0, 0x4015, 0x00); - - for (nes_addr_t addr = start_addr; addr <= 0x4013; addr++) - write_register(0, addr, (addr & 3) ? 0x00 : 0x10); - - dmc.dac = initial_dmc_dac; - if (!dmc.nonlinear) - triangle.last_amp = 15; - // if ( !dmc.nonlinear ) // to do: remove? - // dmc.last_amp = initial_dmc_dac; // prevent output transition -} - -void Apu::irq_changed() -{ - nes_time_t new_irq = dmc.next_irq; - if (dmc.irq_flag | irq_flag) - { - new_irq = 0; - } - else if (new_irq > next_irq) - { - new_irq = next_irq; - } - - if (new_irq != earliest_irq_) - { - earliest_irq_ = new_irq; - if (irq_notifier_) - irq_notifier_(irq_data); - } -} - -// frames - -void Apu::run_until(nes_time_t end_time) -{ - if (end_time > next_dmc_read_time()) - { - nes_time_t start = last_dmc_time; - last_dmc_time = end_time; - dmc.run(start, end_time); - } -} - -void Apu::run_until_(nes_time_t end_time) -{ - if (end_time == last_time) - return; - - if (last_dmc_time < end_time) - { - nes_time_t start = last_dmc_time; - last_dmc_time = end_time; - dmc.run(start, end_time); - } - - while (true) - { - // earlier of next frame time or end time - nes_time_t time = last_time + frame_delay; - if (time > end_time) - time = end_time; - frame_delay -= time - last_time; - - // run oscs to present - square1.run(last_time, time); - square2.run(last_time, time); - triangle.run(last_time, time); - noise.run(last_time, time); - last_time = time; - - if (time == end_time) - break; // no more frames to run - - // take frame-specific actions - frame_delay = frame_period; - switch (frame++) - { - case 0: - if (!(frame_mode & 0xc0)) - { - next_irq = time + frame_period * 4 + 1; - irq_flag = true; - } - // fall through - case 2: - // clock length and sweep on frames 0 and 2 - square1.clock_length(0x20); - square2.clock_length(0x20); - noise.clock_length(0x20); - triangle.clock_length(0x80); // different bit for halt flag on triangle - - square1.clock_sweep(-1); - square2.clock_sweep(0); - break; - - case 1: - // frame 1 is slightly shorter - frame_delay -= 2; - break; - - case 3: - frame = 0; - - // frame 3 is almost twice as long in mode 1 - if (frame_mode & 0x80) - frame_delay += frame_period - 6; - break; - } - - // clock envelopes and linear counter every frame - triangle.clock_linear_counter(); - square1.clock_envelope(); - square2.clock_envelope(); - noise.clock_envelope(); - } -} - -template -inline void zero_apu_osc(T *osc, nes_time_t time) -{ - Blip_Buffer *output = osc->output; - int last_amp = osc->last_amp; - osc->last_amp = 0; - if (output && last_amp) - osc->synth.offset(time, -last_amp, output); -} - -void Apu::end_frame(nes_time_t end_time) -{ - if (end_time > last_time) - run_until_(end_time); - - if (dmc.nonlinear) - { - zero_apu_osc(&square1, last_time); - zero_apu_osc(&square2, last_time); - zero_apu_osc(&triangle, last_time); - zero_apu_osc(&noise, last_time); - zero_apu_osc(&dmc, last_time); - } - - // make times relative to new frame - last_time -= end_time; - last_dmc_time -= end_time; - - if (next_irq != no_irq) - { - next_irq -= end_time; - } - if (dmc.next_irq != no_irq) - { - dmc.next_irq -= end_time; - } - if (earliest_irq_ != no_irq) - { - earliest_irq_ -= end_time; - if (earliest_irq_ < 0) - earliest_irq_ = 0; - } -} - -// registers - -static const unsigned char length_table[0x20] = { - 0x0A, 0xFE, 0x14, 0x02, 0x28, 0x04, 0x50, 0x06, 0xA0, 0x08, 0x3C, 0x0A, 0x0E, 0x0C, 0x1A, 0x0E, 0x0C, 0x10, 0x18, 0x12, 0x30, 0x14, 0x60, 0x16, 0xC0, 0x18, 0x48, 0x1A, 0x10, 0x1C, 0x20, 0x1E}; - -void Apu::write_register(nes_time_t time, nes_addr_t addr, int data) -{ - // Ignore addresses outside range - if (addr < start_addr || end_addr < addr) - return; - - run_until_(time); - - if (addr < 0x4014) - { - // Write to channel - int osc_index = (addr - start_addr) >> 2; - Osc *osc = oscs[osc_index]; - - int reg = addr & 3; - osc->regs[reg] = data; - osc->reg_written[reg] = true; - - if (osc_index == 4) - { - // handle DMC specially - dmc.write_register(reg, data); - } - else if (reg == 3) - { - // load length counter - if ((osc_enables >> osc_index) & 1) - osc->length_counter = length_table[(data >> 3) & 0x1f]; - - // reset square phase - if (osc_index < 2) - ((Square *)osc)->phase = Square::phase_range - 1; - } - } - else if (addr == 0x4015) - { - // Channel enables - for (int i = osc_count; i--;) - if (!((data >> i) & 1)) - oscs[i]->length_counter = 0; - - bool recalc_irq = dmc.irq_flag; - dmc.irq_flag = false; - - int old_enables = osc_enables; - osc_enables = data; - if (!(data & 0x10)) - { - dmc.next_irq = no_irq; - recalc_irq = true; - } - else if (!(old_enables & 0x10)) - { - dmc.start(); // dmc just enabled - } - - if (recalc_irq) - irq_changed(); - } - else if (addr == 0x4017) - { - // Frame mode - frame_mode = data; - - bool irq_enabled = !(data & 0x40); - irq_flag &= irq_enabled; - next_irq = no_irq; - - // mode 1 - frame_delay = (frame_delay & 1); - frame = 0; - - if (!(data & 0x80)) - { - // mode 0 - frame = 1; - frame_delay += frame_period; - if (irq_enabled) - next_irq = time + frame_delay + frame_period * 3; - } - - irq_changed(); - } -} - -int Apu::read_status(nes_time_t time) -{ - run_until_(time - 1); - - int result = (dmc.irq_flag << 7) | (irq_flag << 6); - - for (int i = 0; i < osc_count; i++) - if (oscs[i]->length_counter) - result |= 1 << i; - - run_until_(time); - - if (irq_flag) - { - irq_flag = false; - irq_changed(); - } - - return result; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/apu.hpp b/quicknes/source/quickerNES/core/apu/apu.hpp deleted file mode 100644 index c93791f8a0a..00000000000 --- a/quicknes/source/quickerNES/core/apu/apu.hpp +++ /dev/null @@ -1,363 +0,0 @@ -#pragma once - -// NES 2A03 APU sound chip emulator -// Snd_Emu 0.1.7 - -#include "oscs.hpp" -#include -#include - -namespace quickerNES -{ - -class Apu -{ - public: - typedef uint8_t env_t[3]; - /*struct env_t { - uint8_t delay; - uint8_t env; - uint8_t written; - };*/ - - struct apu_t - { - uint8_t w40xx[0x14]; // $4000-$4013 - uint8_t w4015; // enables - uint8_t w4017; // mode - uint16_t frame_delay; - uint8_t frame_step; - uint8_t irq_flag; - }; - - struct square_t - { - uint16_t delay; - env_t env; - uint8_t length_counter; - uint8_t phase; - uint8_t swp_delay; - uint8_t swp_reset; - uint8_t unused2[1]; - }; - - struct triangle_t - { - uint16_t delay; - uint8_t length_counter; - uint8_t phase; - uint8_t linear_counter; - uint8_t linear_mode; - }; - - struct noise_t - { - uint16_t delay; - env_t env; - uint8_t length_counter; - uint16_t shift_reg; - }; - - struct dmc_t - { - uint16_t delay; - uint16_t remain; - uint16_t addr; - uint8_t buf; - uint8_t bits_remain; - uint8_t bits; - uint8_t buf_full; - uint8_t silence; - uint8_t irq_flag; - }; - - struct apu_state_t - { - apu_t apu; - square_t square1; - square_t square2; - triangle_t triangle; - noise_t noise; - dmc_t dmc; - }; - static_assert(sizeof(apu_state_t) == 72); - - Apu(); - ~Apu(); - - // Set buffer to generate all sound into, or disable sound if NULL - void output(Blip_Buffer *); - - // Set memory reader callback used by DMC oscillator to fetch samples. - // When callback is invoked, 'user_data' is passed unchanged as the - // first parameter. - void dmc_reader(int (*callback)(void *user_data, nes_addr_t), void *user_data = nullptr); - - // All time values are the number of CPU clock cycles relative to the - // beginning of the current time frame. Before resetting the CPU clock - // count, call end_frame( last_cpu_time ). - - // Write to register (0x4000-0x4017, except 0x4014 and 0x4016) - static const uint16_t start_addr = 0x4000; - static const uint16_t end_addr = 0x4017; - void write_register(nes_time_t, nes_addr_t, int data); - - // Read from status register at 0x4015 - static const uint16_t status_addr = 0x4015; - int read_status(nes_time_t); - - // Run all oscillators up to specified time, end current time frame, then - // start a new time frame at time 0. Time frames have no effect on emulation - // and each can be whatever length is convenient. - void end_frame(nes_time_t); - - // Additional optional features (can be ignored without any problem) - - // Reset internal frame counter, registers, and all oscillators. - // Use PAL timing if pal_timing is true, otherwise use NTSC timing. - // Set the DMC oscillator's initial DAC value to initial_dmc_dac without - // any audible click. - void reset(bool pal_timing = false, int initial_dmc_dac = 0); - - // Save/load exact emulation state - void save_state(apu_state_t *out) const; - void load_state(apu_state_t const &); - - // Set overall volume (default is 1.0) - void volume(double); - - // Set treble equalization (see notes.txt) - void treble_eq(const blip_eq_t &); - - // Set sound output of specific oscillator to buffer. If buffer is NULL, - // the specified oscillator is muted and emulation accuracy is reduced. - // The oscillators are indexed as follows: 0) Square 1, 1) Square 2, - // 2) Triangle, 3) Noise, 4) DMC. - static const uint16_t osc_count = 5; - void osc_output(int index, Blip_Buffer *buffer); - - // Set IRQ time callback that is invoked when the time of earliest IRQ - // may have changed, or NULL to disable. When callback is invoked, - // 'user_data' is passed unchanged as the first parameter. - void irq_notifier(void (*callback)(void *user_data), void *user_data = nullptr); - - // Get time that APU-generated IRQ will occur if no further register reads - // or writes occur. If IRQ is already pending, returns irq_waiting. If no - // IRQ will occur, returns no_irq. - static const uint64_t no_irq = LONG_MAX / 2 + 1; - static const uint16_t irq_waiting = 0; - nes_time_t earliest_irq(nes_time_t) const; - - // Count number of DMC reads that would occur if 'run_until( t )' were executed. - // If last_read is not NULL, set *last_read to the earliest time that - // 'count_dmc_reads( time )' would result in the same result. - int count_dmc_reads(nes_time_t t, nes_time_t *last_read = nullptr) const; - - // Time when next DMC memory read will occur - nes_time_t next_dmc_read_time() const; - - // Run DMC until specified time, so that any DMC memory reads can be - // accounted for (i.e. inserting CPU wait states). - void run_until(nes_time_t); - - // End of public interface. - private: - friend class Nonlinearizer; - void enable_nonlinear(double volume); - static double nonlinear_tnd_gain() { return 0.75; } - - private: - friend struct Dmc; - - // noncopyable - Apu(const Apu &); - Apu &operator=(const Apu &); - - Osc *oscs[osc_count]; - Square square1; - Square square2; - Noise noise; - Triangle triangle; - Dmc dmc; - - nes_time_t last_time; // has been run until this time in current frame - nes_time_t last_dmc_time; - nes_time_t earliest_irq_; - nes_time_t next_irq; - int frame_period; - int frame_delay; // cycles until frame counter runs next - int frame; // current frame (0-3) - int osc_enables; - int frame_mode; - bool irq_flag; - void (*irq_notifier_)(void *user_data); - void *irq_data; - Square::Synth square_synth; // shared by squares - - void irq_changed(); - void state_restored(); - void run_until_(nes_time_t); - - // TODO: remove - friend class Core; -}; - -inline void Apu::osc_output(int osc, Blip_Buffer *buf) -{ - oscs[osc]->output = buf; -} - -inline nes_time_t Apu::earliest_irq(nes_time_t) const -{ - return earliest_irq_; -} - -inline void Apu::dmc_reader(int (*func)(void *, nes_addr_t), void *user_data) -{ - dmc.prg_reader_data = user_data; - dmc.prg_reader = func; -} - -inline void Apu::irq_notifier(void (*func)(void *user_data), void *user_data) -{ - irq_notifier_ = func; - irq_data = user_data; -} - -inline int Apu::count_dmc_reads(nes_time_t time, nes_time_t *last_read) const -{ - return dmc.count_reads(time, last_read); -} - -inline nes_time_t Dmc::next_read_time() const -{ - if (length_counter == 0) - return Apu::no_irq; // not reading - - return apu->last_dmc_time + delay + long(bits_remain - 1) * period; -} - -inline nes_time_t Apu::next_dmc_read_time() const { return dmc.next_read_time(); } - -template -struct apu_reflection -{ -#define REFLECT(apu, state) (mode ? void(apu = state) : void(state = apu)) - - static void reflect_env(Apu::env_t *state, Envelope &osc) - { - REFLECT((*state)[0], osc.env_delay); - REFLECT((*state)[1], osc.envelope); - REFLECT((*state)[2], osc.reg_written[3]); - } - - static void reflect_square(Apu::square_t &state, Square &osc) - { - reflect_env(&state.env, osc); - REFLECT(state.delay, osc.delay); - REFLECT(state.length_counter, osc.length_counter); - REFLECT(state.phase, osc.phase); - REFLECT(state.swp_delay, osc.sweep_delay); - REFLECT(state.swp_reset, osc.reg_written[1]); - } - - static void reflect_triangle(Apu::triangle_t &state, Triangle &osc) - { - REFLECT(state.delay, osc.delay); - REFLECT(state.length_counter, osc.length_counter); - REFLECT(state.linear_counter, osc.linear_counter); - REFLECT(state.phase, osc.phase); - REFLECT(state.linear_mode, osc.reg_written[3]); - } - - static void reflect_noise(Apu::noise_t &state, Noise &osc) - { - reflect_env(&state.env, osc); - REFLECT(state.delay, osc.delay); - REFLECT(state.length_counter, osc.length_counter); - REFLECT(state.shift_reg, osc.noise); - } - - static void reflect_dmc(Apu::dmc_t &state, Dmc &osc) - { - REFLECT(state.delay, osc.delay); - REFLECT(state.remain, osc.length_counter); - REFLECT(state.buf, osc.buf); - REFLECT(state.bits_remain, osc.bits_remain); - REFLECT(state.bits, osc.bits); - REFLECT(state.buf_full, osc.buf_full); - REFLECT(state.silence, osc.silence); - REFLECT(state.irq_flag, osc.irq_flag); - if (mode) - state.addr = osc.address | 0x8000; - else - osc.address = state.addr & 0x7fff; - } -}; - -inline void Apu::save_state(apu_state_t *state) const -{ - for (int i = 0; i < osc_count * 4; i++) - { - int index = i >> 2; - state->apu.w40xx[i] = oscs[index]->regs[i & 3]; - // if ( index < 4 ) - // state->length_counters [index] = oscs [index]->length_counter; - } - state->apu.w40xx[0x11] = dmc.dac; - - state->apu.w4015 = osc_enables; - state->apu.w4017 = frame_mode; - state->apu.frame_delay = frame_delay; - state->apu.frame_step = frame; - state->apu.irq_flag = irq_flag; - - typedef apu_reflection<1> refl; - Apu &apu = *(Apu *)this; // const_cast - refl::reflect_square(state->square1, apu.square1); - refl::reflect_square(state->square2, apu.square2); - refl::reflect_triangle(state->triangle, apu.triangle); - refl::reflect_noise(state->noise, apu.noise); - refl::reflect_dmc(state->dmc, apu.dmc); -} - -inline void Apu::load_state(apu_state_t const &state) -{ - reset(); - - write_register(0, 0x4017, state.apu.w4017); - write_register(0, 0x4015, state.apu.w4015); - osc_enables = state.apu.w4015; // DMC clears bit 4 - - for (int i = 0; i < osc_count * 4; i++) - { - int n = state.apu.w40xx[i]; - int index = i >> 2; - oscs[index]->regs[i & 3] = n; - write_register(0, 0x4000 + i, n); - // if ( index < 4 ) - // oscs [index]->length_counter = state.length_counters [index]; - } - - frame_delay = state.apu.frame_delay; - frame = state.apu.frame_step; - irq_flag = state.apu.irq_flag; - - typedef apu_reflection<0> refl; - apu_state_t &st = (apu_state_t &)state; // const_cast - refl::reflect_square(st.square1, square1); - refl::reflect_square(st.square2, square2); - refl::reflect_triangle(st.triangle, triangle); - refl::reflect_noise(st.noise, noise); - refl::reflect_dmc(st.dmc, dmc); - dmc.recalc_irq(); - - // force channels to have correct last_amp levels after load state - square1.run(last_time, last_time); - square2.run(last_time, last_time); - triangle.run(last_time, last_time); - noise.run(last_time, last_time); - dmc.run(last_time, last_time); -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/blipBuffer.cpp b/quicknes/source/quickerNES/core/apu/blipBuffer.cpp deleted file mode 100644 index 153c5f1b9fd..00000000000 --- a/quicknes/source/quickerNES/core/apu/blipBuffer.cpp +++ /dev/null @@ -1,422 +0,0 @@ - -// Blip_Buffer 0.4.0. http://www.slack.net/~ant/ - -#include "blipBuffer.hpp" -#include -#include -#include -#include - -/* Copyright (C) 2003-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -int const buffer_extra = blip_widest_impulse_ + 2; - -Blip_Buffer::Blip_Buffer() -{ - factor_ = LONG_MAX; - offset_ = 0; - buffer_ = 0; - buffer_size_ = 0; - sample_rate_ = 0; - reader_accum = 0; - bass_shift = 0; - clock_rate_ = 0; - bass_freq_ = 16; - length_ = 0; - - extra_length = length_; - extra_offset = offset_; - extra_reader_accum = reader_accum; - memset(extra_buffer, 0, sizeof(extra_buffer)); -} - -Blip_Buffer::~Blip_Buffer() -{ - if (buffer_) - free(buffer_); -} - -void Blip_Buffer::clear(int entire_buffer) -{ - offset_ = 0; - reader_accum = 0; - if (buffer_) - { - long count = (entire_buffer ? buffer_size_ : samples_avail()); - memset(buffer_, 0, (count + buffer_extra) * sizeof(buf_t_)); - } -} - -const char *Blip_Buffer::set_sample_rate(long new_rate, int msec) -{ - // start with maximum length that resampled time can represent - long new_size = (ULONG_MAX >> BLIP_BUFFER_ACCURACY) - buffer_extra - 64; - if (msec != blip_max_length) - { - long s = (new_rate * (msec + 1) + 999) / 1000; - if (s < new_size) - new_size = s; - } - - if (buffer_size_ != new_size) - { - void *p = realloc(buffer_, (new_size + buffer_extra) * sizeof *buffer_); - if (!p) - return "Out of memory"; - buffer_ = (buf_t_ *)p; - } - - buffer_size_ = new_size; - // update things based on the sample rate - sample_rate_ = new_rate; - length_ = new_size * 1000 / new_rate - 1; - if (clock_rate_) - clock_rate(clock_rate_); - bass_freq(bass_freq_); - - clear(); - - return 0; // success -} - -blip_resampled_time_t Blip_Buffer::clock_rate_factor(long clock_rate) const -{ - double ratio = (double)sample_rate_ / clock_rate; - long factor = (long)floor(ratio * (1L << BLIP_BUFFER_ACCURACY) + 0.5); - return (blip_resampled_time_t)factor; -} - -void Blip_Buffer::bass_freq(int freq) -{ - bass_freq_ = freq; - int shift = 31; - if (freq > 0) - { - shift = 13; - long f = (freq << 16) / sample_rate_; - while ((f >>= 1) && --shift) {} - } - bass_shift = shift; -} - -void Blip_Buffer::end_frame(blip_time_t t) -{ - offset_ += t * factor_; -} - -void Blip_Buffer::remove_silence(long count) -{ - offset_ -= (blip_resampled_time_t)count << BLIP_BUFFER_ACCURACY; -} - -long Blip_Buffer::count_samples(blip_time_t t) const -{ - unsigned long last_sample = resampled_time(t) >> BLIP_BUFFER_ACCURACY; - unsigned long first_sample = offset_ >> BLIP_BUFFER_ACCURACY; - return (long)(last_sample - first_sample); -} - -blip_time_t Blip_Buffer::count_clocks(long count) const -{ - if (count > buffer_size_) - count = buffer_size_; - blip_resampled_time_t time = (blip_resampled_time_t)count << BLIP_BUFFER_ACCURACY; - return (blip_time_t)((time - offset_ + factor_ - 1) / factor_); -} - -void Blip_Buffer::remove_samples(long count) -{ - if (count) - { - remove_silence(count); - - // copy remaining samples to beginning and clear old samples - long remain = samples_avail() + buffer_extra; - memmove(buffer_, buffer_ + count, remain * sizeof *buffer_); - memset(buffer_ + remain, 0, count * sizeof *buffer_); - } -} - -// Blip_Synth_ - -Blip_Synth_::Blip_Synth_(short *p, int w) : impulses(p), - width(w) -{ - volume_unit_ = 0.0; - kernel_unit = 0; - buf = 0; - last_amp = 0; - delta_factor = 0; -} - -// TODO: apparently this is defined elsewhere too -#define pi my_pi -static double const pi = 3.1415926535897932384626433832795029; - -static void gen_sinc(float *out, int count, double oversample, double treble, double cutoff) -{ - if (cutoff >= 0.999) - cutoff = 0.999; - - if (treble < -300.0) - treble = -300.0; - if (treble > 5.0) - treble = 5.0; - - double const maxh = 4096.0; - double const rolloff = pow(10.0, 1.0 / (maxh * 20.0) * treble / (1.0 - cutoff)); - double const pow_a_n = pow(rolloff, maxh - maxh * cutoff); - double const to_angle = pi / 2 / maxh / oversample; - for (int i = 0; i < count; i++) - { - double angle = ((i - count) * 2 + 1) * to_angle; - double c = rolloff * cos((maxh - 1.0) * angle) - cos(maxh * angle); - double cos_nc_angle = cos(maxh * cutoff * angle); - double cos_nc1_angle = cos((maxh * cutoff - 1.0) * angle); - double cos_angle = cos(angle); - - c = c * pow_a_n - rolloff * cos_nc1_angle + cos_nc_angle; - double d = 1.0 + rolloff * (rolloff - cos_angle - cos_angle); - double b = 2.0 - cos_angle - cos_angle; - double a = 1.0 - cos_angle - cos_nc_angle + cos_nc1_angle; - - out[i] = (float)((a * d + c * b) / (b * d)); // a / b + c / d - } -} - -void blip_eq_t::generate(float *out, int count) const -{ - // lower cutoff freq for narrow kernels with their wider transition band - // (8 points->1.49, 16 points->1.15) - double oversample = blip_res * 2.25 / count + 0.85; - double half_rate = sample_rate * 0.5; - if (cutoff_freq) - oversample = half_rate / cutoff_freq; - double cutoff = rolloff_freq * oversample / half_rate; - - gen_sinc(out, count, blip_res * oversample, treble, cutoff); - - // apply (half of) hamming window - double to_fraction = pi / (count - 1); - for (int i = count; i--;) - out[i] *= 0.54 - 0.46 * cos(i * to_fraction); -} - -void Blip_Synth_::adjust_impulse() -{ - // sum pairs for each phase and add error correction to end of first half - int const size = impulses_size(); - for (int p = blip_res; p-- >= blip_res / 2;) - { - int p2 = blip_res - 2 - p; - long error = kernel_unit; - for (int i = 1; i < size; i += blip_res) - { - error -= impulses[i + p]; - error -= impulses[i + p2]; - } - if (p == p2) - error /= 2; // phase = 0.5 impulse uses same half for both sides - impulses[size - blip_res + p] += error; - // printf( "error: %ld\n", error ); - } - - // for ( int i = blip_res; i--; printf( "\n" ) ) - // for ( int j = 0; j < width / 2; j++ ) - // printf( "%5ld,", impulses [j * blip_res + i + 1] ); -} - -void Blip_Synth_::treble_eq(blip_eq_t const &eq) -{ - float fimpulse[blip_res / 2 * (blip_widest_impulse_ - 1) + blip_res * 2]; - - int const half_size = blip_res / 2 * (width - 1); - eq.generate(&fimpulse[blip_res], half_size); - - int i; - - // need mirror slightly past center for calculation - for (i = blip_res; i--;) - fimpulse[blip_res + half_size + i] = fimpulse[blip_res + half_size - 1 - i]; - - // starts at 0 - for (i = 0; i < blip_res; i++) - fimpulse[i] = 0.0f; - - // find rescale factor - double total = 0.0; - for (i = 0; i < half_size; i++) - total += fimpulse[blip_res + i]; - - // double const base_unit = 44800.0 - 128 * 18; // allows treble up to +0 dB - // double const base_unit = 37888.0; // allows treble to +5 dB - double const base_unit = 32768.0; // necessary for blip_unscaled to work - double rescale = base_unit / 2 / total; - kernel_unit = (long)base_unit; - - // integrate, first difference, rescale, convert to int - double sum = 0.0; - double next = 0.0; - int const impulses_size = this->impulses_size(); - for (i = 0; i < impulses_size; i++) - { - impulses[i] = (short)floor((next - sum) * rescale + 0.5); - sum += fimpulse[i]; - next += fimpulse[i + blip_res]; - } - adjust_impulse(); - - // volume might require rescaling - double vol = volume_unit_; - if (vol) - { - volume_unit_ = 0.0; - volume_unit(vol); - } -} - -void Blip_Synth_::volume_unit(double new_unit) -{ - if (new_unit != volume_unit_) - { - // use default eq if it hasn't been set yet - if (!kernel_unit) - treble_eq(-8.0); - - volume_unit_ = new_unit; - double factor = new_unit * (1L << blip_sample_bits) / kernel_unit; - - if (factor > 0.0) - { - int shift = 0; - - // if unit is really small, might need to attenuate kernel - while (factor < 2.0) - { - shift++; - factor *= 2.0; - } - - if (shift) - { - kernel_unit >>= shift; - - // keep values positive to avoid round-towards-zero of sign-preserving - // right shift for negative values - long offset = 0x8000 + (1 << (shift - 1)); - long offset2 = 0x8000 >> shift; - for (int i = impulses_size(); i--;) - impulses[i] = (short)(((impulses[i] + offset) >> shift) - offset2); - adjust_impulse(); - } - } - delta_factor = (int)floor(factor + 0.5); - // printf( "delta_factor: %d, kernel_unit: %d\n", delta_factor, kernel_unit ); - } -} - -long Blip_Buffer::read_samples(blip_sample_t *out, long max_samples, int stereo) -{ - long count = samples_avail(); - if (count > max_samples) - count = max_samples; - - if (count) - { - int const sample_shift = blip_sample_bits - 16; - int const bass_shift = this->bass_shift; - long accum = reader_accum; - buf_t_ *in = buffer_; - - if (out != NULL) - { - if (!stereo) - { - for (long n = count; n--;) - { - long s = accum >> sample_shift; - accum -= accum >> bass_shift; - accum += *in++; - *out++ = (blip_sample_t)s; - - // clamp sample - if ((blip_sample_t)s != s) - out[-1] = (blip_sample_t)(0x7FFF - (s >> 24)); - } - } - else - { - for (long n = count; n--;) - { - long s = accum >> sample_shift; - accum -= accum >> bass_shift; - accum += *in++; - *out = (blip_sample_t)s; - out += 2; - - // clamp sample - if ((blip_sample_t)s != s) - out[-2] = (blip_sample_t)(0x7FFF - (s >> 24)); - } - } - } - else - { - // only run accumulator, do not output anything - for (long n = count; n--;) - { - accum -= accum >> bass_shift; - accum += *in++; - } - } - - reader_accum = accum; - remove_samples(count); - } - return count; -} - -void Blip_Buffer::mix_samples(blip_sample_t const *in, long count) -{ - buf_t_ *out = buffer_ + (offset_ >> BLIP_BUFFER_ACCURACY) + blip_widest_impulse_ / 2; - - int const sample_shift = blip_sample_bits - 16; - int prev = 0; - while (count--) - { - long s = (long)*in++ << sample_shift; - *out += s - prev; - prev = s; - ++out; - } - *out -= prev; -} - -void Blip_Buffer::SaveAudioBufferState() -{ - extra_length = length_; - extra_offset = offset_; - extra_reader_accum = reader_accum; - memcpy(extra_buffer, buffer_, sizeof(extra_buffer)); -} -void Blip_Buffer::RestoreAudioBufferState() -{ - length_ = extra_length; - offset_ = extra_offset; - reader_accum = extra_reader_accum; - memcpy(buffer_, extra_buffer, sizeof(extra_buffer)); -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/blipBuffer.hpp b/quicknes/source/quickerNES/core/apu/blipBuffer.hpp deleted file mode 100644 index d3682a7a109..00000000000 --- a/quicknes/source/quickerNES/core/apu/blipBuffer.hpp +++ /dev/null @@ -1,380 +0,0 @@ -#pragma once - -// Band-limited sound synthesis and buffering -// Blip_Buffer 0.4.0 - -namespace quickerNES -{ - -// Time unit at source clock rate -typedef long blip_time_t; - -// Output samples are 16-bit signed, with a range of -32768 to 32767 -typedef short blip_sample_t; -enum -{ - blip_sample_max = 32767 -}; - -class Blip_Buffer -{ - public: - // Set output sample rate and buffer length in milliseconds (1/1000 sec, defaults - // to 1/4 second), then clear buffer. Returns NULL on success, otherwise if there - // isn't enough memory, returns error without affecting current buffer setup. - const char *set_sample_rate(long samples_per_sec, int msec_length = 1000 / 4); - - // Set number of source time units per second - void clock_rate(long); - - // End current time frame of specified duration and make its samples available - // (along with any still-unread samples) for reading with read_samples(). Begins - // a new time frame at the end of the current frame. - void end_frame(blip_time_t time); - - // Read at most 'max_samples' out of buffer into 'dest', removing them from from - // the buffer. Returns number of samples actually read and removed. If stereo is - // true, increments 'dest' one extra time after writing each sample, to allow - // easy interleving of two channels into a stereo output buffer. - long read_samples(blip_sample_t *dest, long max_samples, int stereo = 0); - - // Additional optional features - - // Current output sample rate - long sample_rate() const; - - // Length of buffer, in milliseconds - int length() const; - - // Number of source time units per second - long clock_rate() const; - - // Set frequency high-pass filter frequency, where higher values reduce bass more - void bass_freq(int frequency); - - // Number of samples delay from synthesis to samples read out - int output_latency() const; - - // Remove all available samples and clear buffer to silence. If 'entire_buffer' is - // false, just clears out any samples waiting rather than the entire buffer. - void clear(int entire_buffer = 1); - - // Number of samples available for reading with read_samples() - long samples_avail() const; - - // Remove 'count' samples from those waiting to be read - void remove_samples(long count); - - // Experimental features - - // Number of raw samples that can be mixed within frame of specified duration. - long count_samples(blip_time_t duration) const; - - // Mix 'count' samples from 'buf' into buffer. - void mix_samples(blip_sample_t const *buf, long count); - - // Count number of clocks needed until 'count' samples will be available. - // If buffer can't even hold 'count' samples, returns number of clocks until - // buffer becomes full. - blip_time_t count_clocks(long count) const; - - // not documented yet - typedef unsigned long blip_resampled_time_t; - void remove_silence(long count); - blip_resampled_time_t resampled_duration(int t) const { return t * factor_; } - blip_resampled_time_t resampled_time(blip_time_t t) const { return t * factor_ + offset_; } - blip_resampled_time_t clock_rate_factor(long clock_rate) const; - - public: - Blip_Buffer(); - ~Blip_Buffer(); - - // Deprecated - typedef blip_resampled_time_t resampled_time_t; - const char *sample_rate(long r) { return set_sample_rate(r); } - const char *sample_rate(long r, int msec) { return set_sample_rate(r, msec); } - - private: - // noncopyable - Blip_Buffer(const Blip_Buffer &); - Blip_Buffer &operator=(const Blip_Buffer &); - - public: - typedef long buf_t_; - unsigned long factor_; - blip_resampled_time_t offset_; - buf_t_ *buffer_; - long buffer_size_; - - private: - long reader_accum; - int bass_shift; - long sample_rate_; - long clock_rate_; - int bass_freq_; - int length_; - friend class Blip_Reader; - - private: - // extra information necessary to load state to an exact sample - buf_t_ extra_buffer[32]; - int extra_length; - long extra_reader_accum; - blip_resampled_time_t extra_offset; - - public: - void SaveAudioBufferState(); - void RestoreAudioBufferState(); -}; - -#ifdef HAVE_CONFIG_H - #include "config.h" -#endif - -// Number of bits in resample ratio fraction. Higher values give a more accurate ratio -// but reduce maximum buffer size. -#ifndef BLIP_BUFFER_ACCURACY - #define BLIP_BUFFER_ACCURACY 16 -#endif - -// Number bits in phase offset. Fewer than 6 bits (64 phase offsets) results in -// noticeable broadband noise when synthesizing high frequency square waves. -// Affects size of Blip_Synth objects since they store the waveform directly. -#ifndef BLIP_PHASE_BITS - #define BLIP_PHASE_BITS 6 -#endif - -// Internal -typedef unsigned long blip_resampled_time_t; -int const blip_widest_impulse_ = 16; -int const blip_res = 1 << BLIP_PHASE_BITS; -class blip_eq_t; - -class Blip_Synth_ -{ - double volume_unit_; - short *const impulses; - int const width; - long kernel_unit; - int impulses_size() const { return blip_res / 2 * width + 1; } - void adjust_impulse(); - - public: - Blip_Buffer *buf; - int last_amp; - int delta_factor; - - Blip_Synth_(short *impulses, int width); - void treble_eq(blip_eq_t const &); - void volume_unit(double); -}; - -// Quality level. Start with blip_good_quality. -const int blip_med_quality = 8; -const int blip_good_quality = 12; -const int blip_high_quality = 16; - -// Range specifies the greatest expected change in amplitude. Calculate it -// by finding the difference between the maximum and minimum expected -// amplitudes (max - min). -template -class Blip_Synth -{ - public: - // Set overall volume of waveform - void volume(double v) { impl.volume_unit(v * (1.0 / (range < 0 ? -range : range))); } - - // Configure low-pass filter (see notes.txt) - void treble_eq(blip_eq_t const &eq) { impl.treble_eq(eq); } - - // Get/set Blip_Buffer used for output - Blip_Buffer *output() const { return impl.buf; } - void output(Blip_Buffer *b) - { - impl.buf = b; - impl.last_amp = 0; - } - - // Update amplitude of waveform at given time. Using this requires a separate - // Blip_Synth for each waveform. - void update(blip_time_t time, int amplitude); - - // Low-level interface - - // Add an amplitude transition of specified delta, optionally into specified buffer - // rather than the one set with output(). Delta can be positive or negative. - // The actual change in amplitude is delta * (volume / range) - void offset(blip_time_t, int delta, Blip_Buffer *) const; - void offset(blip_time_t t, int delta) const { offset(t, delta, impl.buf); } - - // Works directly in terms of fractional output samples. Contact author for more. - void offset_resampled(blip_resampled_time_t, int delta, Blip_Buffer *) const; - - // Same as offset(), except code is inlined for higher performance - void offset_inline(blip_time_t t, int delta, Blip_Buffer *buf) const - { - offset_resampled(t * buf->factor_ + buf->offset_, delta, buf); - } - void offset_inline(blip_time_t t, int delta) const - { - offset_resampled(t * impl.buf->factor_ + impl.buf->offset_, delta, impl.buf); - } - - public: - Blip_Synth() : impl(impulses, quality) {} - - private: - typedef short imp_t; - imp_t impulses[blip_res * (quality / 2) + 1]; - Blip_Synth_ impl; -}; - -// Low-pass equalization parameters -class blip_eq_t -{ - public: - // Logarithmic rolloff to treble dB at half sampling rate. Negative values reduce - // treble, small positive values (0 to 5.0) increase treble. - blip_eq_t(double treble_db = 0); - - // See notes.txt - blip_eq_t(double treble, long rolloff_freq, long sample_rate, long cutoff_freq = 0); - - private: - double treble; - long rolloff_freq; - long sample_rate; - long cutoff_freq; - void generate(float *out, int count) const; - friend class Blip_Synth_; -}; - -int const blip_sample_bits = 30; - -// Optimized inline sample reader for custom sample formats and mixing of Blip_Buffer samples -class Blip_Reader -{ - public: - // Begin reading samples from buffer. Returns value to pass to next() (can - // be ignored if default bass_freq is acceptable). - int begin(Blip_Buffer &); - - // Current sample - long read() const { return accum >> (blip_sample_bits - 16); } - - // Current raw sample in full internal resolution - long read_raw() const { return accum; } - - // Advance to next sample - void next(int bass_shift = 9) { accum += *buf++ - (accum >> bass_shift); } - - // End reading samples from buffer. The number of samples read must now be removed - // using Blip_Buffer::remove_samples(). - void end(Blip_Buffer &b) { b.reader_accum = accum; } - - private: - const Blip_Buffer::buf_t_ *buf; - long accum; -}; - -// End of public interface - -// Compatibility with older version -const long blip_unscaled = 65535; -const int blip_low_quality = blip_med_quality; -const int blip_best_quality = blip_high_quality; - -#define BLIP_FWD(i) \ - { \ - long t0 = i0 * delta + buf[fwd + i]; \ - long t1 = imp[blip_res * (i + 1)] * delta + buf[fwd + 1 + i]; \ - i0 = imp[blip_res * (i + 2)]; \ - buf[fwd + i] = t0; \ - buf[fwd + 1 + i] = t1; \ - } - -#define BLIP_REV(r) \ - { \ - long t0 = i0 * delta + buf[rev - r]; \ - long t1 = imp[blip_res * r] * delta + buf[rev + 1 - r]; \ - i0 = imp[blip_res * (r - 1)]; \ - buf[rev - r] = t0; \ - buf[rev + 1 - r] = t1; \ - } - -template -inline void Blip_Synth::offset_resampled(blip_resampled_time_t time, - int delta, - Blip_Buffer *blip_buf) const -{ - // Fails if time is beyond end of Blip_Buffer, due to a bug in caller code or the - // need for a longer buffer as set by set_sample_rate(). - delta *= impl.delta_factor; - int phase = (int)(time >> (BLIP_BUFFER_ACCURACY - BLIP_PHASE_BITS) & (blip_res - 1)); - imp_t const *imp = impulses + blip_res - phase; - long *buf = blip_buf->buffer_ + (time >> BLIP_BUFFER_ACCURACY); - long i0 = *imp; - - int const fwd = (blip_widest_impulse_ - quality) / 2; - int const rev = fwd + quality - 2; - - BLIP_FWD(0) - if (quality > 8) BLIP_FWD(2) - if (quality > 12) BLIP_FWD(4) - { - int const mid = quality / 2 - 1; - long t0 = i0 * delta + buf[fwd + mid - 1]; - long t1 = imp[blip_res * mid] * delta + buf[fwd + mid]; - imp = impulses + phase; - i0 = imp[blip_res * mid]; - buf[fwd + mid - 1] = t0; - buf[fwd + mid] = t1; - } - if (quality > 12) BLIP_REV(6) - if (quality > 8) BLIP_REV(4) - BLIP_REV(2) - - long t0 = i0 * delta + buf[rev]; - long t1 = *imp * delta + buf[rev + 1]; - buf[rev] = t0; - buf[rev + 1] = t1; -} - -#undef BLIP_FWD -#undef BLIP_REV - -template -void Blip_Synth::offset(blip_time_t t, int delta, Blip_Buffer *buf) const -{ - offset_resampled(t * buf->factor_ + buf->offset_, delta, buf); -} - -template -void Blip_Synth::update(blip_time_t t, int amp) -{ - int delta = amp - impl.last_amp; - impl.last_amp = amp; - offset_resampled(t * impl.buf->factor_ + impl.buf->offset_, delta, impl.buf); -} - -inline blip_eq_t::blip_eq_t(double t) : treble(t), rolloff_freq(0), sample_rate(44100), cutoff_freq(0) {} -inline blip_eq_t::blip_eq_t(double t, long rf, long sr, long cf) : treble(t), rolloff_freq(rf), sample_rate(sr), cutoff_freq(cf) {} - -inline int Blip_Buffer::length() const { return length_; } -inline long Blip_Buffer::samples_avail() const { return (long)(offset_ >> BLIP_BUFFER_ACCURACY); } -inline long Blip_Buffer::sample_rate() const { return sample_rate_; } -inline int Blip_Buffer::output_latency() const { return blip_widest_impulse_ / 2; } -inline long Blip_Buffer::clock_rate() const { return clock_rate_; } -inline void Blip_Buffer::clock_rate(long cps) { factor_ = clock_rate_factor(clock_rate_ = cps); } - -inline int Blip_Reader::begin(Blip_Buffer &blip_buf) -{ - buf = blip_buf.buffer_; - accum = blip_buf.reader_accum; - return blip_buf.bass_shift; -} - -int const blip_max_length = 0; -int const blip_default_length = 250; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/buffer.cpp b/quicknes/source/quickerNES/core/apu/buffer.cpp deleted file mode 100644 index 68a513ab431..00000000000 --- a/quicknes/source/quickerNES/core/apu/buffer.cpp +++ /dev/null @@ -1,230 +0,0 @@ -// Emu 0.7.0. http://www.slack.net/~ant/libs/ - -#include "buffer.hpp" -#include "apu.hpp" - -/* Library Copyright (C) 2003-2006 Shay Green. This library is free software; -you can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more -details. You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -// Buffer - -Buffer::Buffer() : Multi_Buffer(1) {} - -Buffer::~Buffer() {} - -void Buffer::enable_nonlinearity(bool b) -{ - if (b) - clear(); - - Apu *apu = nonlin.enable(b, &tnd); - apu->osc_output(0, &buf); - apu->osc_output(1, &buf); -} - -const char *Buffer::set_sample_rate(long rate, int msec) -{ - enable_nonlinearity(nonlin.enabled); // reapply - buf.set_sample_rate(rate, msec); - tnd.set_sample_rate(rate, msec); - return Multi_Buffer::set_sample_rate(buf.sample_rate(), buf.length()); -} - -void Buffer::clock_rate(long rate) -{ - buf.clock_rate(rate); - tnd.clock_rate(rate); -} - -void Buffer::bass_freq(int freq) -{ - buf.bass_freq(freq); - tnd.bass_freq(freq); -} - -void Buffer::clear() -{ - nonlin.clear(); - buf.clear(); - tnd.clear(); -} - -Buffer::channel_t Buffer::channel(int i) -{ - channel_t c; - c.center = &buf; - if (2 <= i && i <= 4) - c.center = &tnd; // only use for triangle, noise, and dmc - c.left = c.center; - c.right = c.center; - return c; -} - -void Buffer::end_frame(blip_time_t length, bool) -{ - buf.end_frame(length); - tnd.end_frame(length); -} - -long Buffer::samples_avail() const -{ - return buf.samples_avail(); -} - -long Buffer::read_samples(blip_sample_t *out, long count) -{ - count = nonlin.make_nonlinear(tnd, count); - if (count) - { - Blip_Reader lin; - Blip_Reader nonlin; - - int lin_bass = lin.begin(buf); - int nonlin_bass = nonlin.begin(tnd); - - if (out != 0) - { - for (int n = count; n--;) - { - int s = lin.read() + nonlin.read(); - lin.next(lin_bass); - nonlin.next(nonlin_bass); - *out++ = s; - - if ((int16_t)s != s) - out[-1] = 0x7FFF - (s >> 24); - } - } - else - { - // only run accumulators, do not output audio - for (int n = count; n--;) - { - lin.next(lin_bass); - nonlin.next(nonlin_bass); - } - } - - lin.end(buf); - nonlin.end(tnd); - - buf.remove_samples(count); - tnd.remove_samples(count); - } - - return count; -} - -void Buffer::SaveAudioBufferState() -{ - SaveAudioBufferStatePrivate(); - nonlin.SaveAudioBufferState(); - buf.SaveAudioBufferState(); - tnd.SaveAudioBufferState(); -} - -void Buffer::RestoreAudioBufferState() -{ - RestoreAudioBufferStatePrivate(); - nonlin.RestoreAudioBufferState(); - buf.RestoreAudioBufferState(); - tnd.RestoreAudioBufferState(); -} - -// Nonlinearizer - -Nonlinearizer::Nonlinearizer() -{ - apu = nullptr; - enabled = true; - - float const gain = 0x7fff * 1.3f; - // don't use entire range, so any overflow will stay within table - int const range = (int)((double)table_size * Apu::nonlinear_tnd_gain()); - for (int i = 0; i < table_size; i++) - { - int const offset = table_size - range; - int j = i - offset; - float n = 202.0f / (range - 1) * j; - float d = 0; - // Prevent division by zero - if (n) - d = gain * 163.67f / (24329.0f / n + 100.0f); - int out = (int)d; - table[j & (table_size - 1)] = out; - } - extra_accum = 0; - extra_prev = 0; -} - -Apu *Nonlinearizer::enable(bool b, Blip_Buffer *buf) -{ - apu->osc_output(2, buf); - apu->osc_output(3, buf); - apu->osc_output(4, buf); - enabled = b; - if (b) - apu->enable_nonlinear(1.0); - else - apu->volume(1.0); - return apu; -} - -#define ENTRY(s) table[(s) >> (blip_sample_bits - table_bits - 1) & (table_size - 1)] - -long Nonlinearizer::make_nonlinear(Blip_Buffer &buf, long count) -{ - long avail = buf.samples_avail(); - if (count > avail) - count = avail; - if (count && enabled) - { - Blip_Buffer::buf_t_ *p = buf.buffer_; - long accum = this->accum; - long prev = this->prev; - for (unsigned n = count; n; --n) - { - long entry = ENTRY(accum); - accum += *p; - *p++ = (entry - prev) << (blip_sample_bits - 16); - prev = entry; - } - - this->prev = prev; - this->accum = accum; - } - - return count; -} - -void Nonlinearizer::clear() -{ - accum = 0; - prev = ENTRY(86016000); // avoid thump due to APU's triangle dc bias - // TODO: still results in slight clicks and thumps -} - -void Nonlinearizer::SaveAudioBufferState() -{ - extra_accum = accum; - extra_prev = prev; -} - -void Nonlinearizer::RestoreAudioBufferState() -{ - accum = extra_accum; - prev = extra_prev; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/buffer.hpp b/quicknes/source/quickerNES/core/apu/buffer.hpp deleted file mode 100644 index 9a4b4a98346..00000000000 --- a/quicknes/source/quickerNES/core/apu/buffer.hpp +++ /dev/null @@ -1,82 +0,0 @@ -#pragma once - -// NES non-linear audio buffer -// Emu 0.7.0 - -#include "multiBuffer.hpp" -#include - -namespace quickerNES -{ - -class Apu; - -class Nonlinearizer -{ - private: - enum - { - table_bits = 11 - }; - enum - { - table_size = 1 << table_bits - }; - int16_t table[table_size]; - Apu *apu; - long accum; - long prev; - - long extra_accum; - long extra_prev; - - public: - Nonlinearizer(); - bool enabled; - void clear(); - void set_apu(Apu *a) { apu = a; } - Apu *enable(bool, Blip_Buffer *tnd); - long make_nonlinear(Blip_Buffer &buf, long count); - void SaveAudioBufferState(); - void RestoreAudioBufferState(); -}; - -class Buffer : public Multi_Buffer -{ - public: - Buffer(); - ~Buffer(); - - // Setup APU for use with buffer, including setting its output to this buffer. - // If you're using Emu, this is automatically called for you. - void set_apu(Apu *apu) { nonlin.set_apu(apu); } - - // Enable/disable non-linear output - void enable_nonlinearity(bool = true); - - // Blip_Buffer to output other sound chips to - Blip_Buffer *buffer() { return &buf; } - - // See Multi_Buffer.h - const char *set_sample_rate(long rate, int msec = blip_default_length); - - void clock_rate(long); - void bass_freq(int); - void clear(); - channel_t channel(int); - void end_frame(blip_time_t, bool unused = true); - long samples_avail() const; - long read_samples(blip_sample_t *, long); - - private: - Blip_Buffer buf; - Blip_Buffer tnd; - Nonlinearizer nonlin; - friend Multi_Buffer *set_apu(Buffer *, Apu *); - - public: - virtual void SaveAudioBufferState(); - virtual void RestoreAudioBufferState(); -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/effectsBuffer.cpp b/quicknes/source/quickerNES/core/apu/effectsBuffer.cpp deleted file mode 100644 index b60006b33d7..00000000000 --- a/quicknes/source/quickerNES/core/apu/effectsBuffer.cpp +++ /dev/null @@ -1,518 +0,0 @@ -// Game_Music_Emu 0.3.0. http://www.slack.net/~ant/ - -#include "effectsBuffer.hpp" -#include - -/* Copyright (C) 2003-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -typedef long fixed_t; - -#define TO_FIXED(f) fixed_t((f) * (1L << 15) + 0.5) -#define FMUL(x, y) (((x) * (y)) >> 15) - -const unsigned echo_size = 4096; -const unsigned echo_mask = echo_size - 1; -static_assert((echo_size & echo_mask) == 0); // must be power of 2 - -const unsigned reverb_size = 8192 * 2; -const unsigned reverb_mask = reverb_size - 1; -static_assert((reverb_size & reverb_mask) == 0); // must be power of 2 - -Effects_Buffer::config_t::config_t() -{ - pan_1 = -0.15f; - pan_2 = 0.15f; - reverb_delay = 88.0f; - reverb_level = 0.12f; - echo_delay = 61.0f; - echo_level = 0.10f; - delay_variance = 18.0f; - effects_enabled = false; -} - -void Effects_Buffer::set_depth(double d) -{ - float f = (float)d; - config_t c; - c.pan_1 = -0.6f * f; - c.pan_2 = 0.6f * f; - c.reverb_delay = 880 * 0.1f; - c.echo_delay = 610 * 0.1f; - if (f > 0.5) - f = 0.5; // TODO: more linear reduction of extreme reverb/echo - c.reverb_level = 0.5f * f; - c.echo_level = 0.30f * f; - c.delay_variance = 180 * 0.1f; - c.effects_enabled = (d > 0.0f); - config(c); -} - -Effects_Buffer::Effects_Buffer(bool center_only) : Multi_Buffer(2) -{ - buf_count = center_only ? max_buf_count - 4 : max_buf_count; - - echo_buf = NULL; - echo_pos = 0; - - reverb_buf = NULL; - reverb_pos = 0; - - stereo_remain = 0; - effect_remain = 0; - effects_enabled = false; - set_depth(0); -} - -Effects_Buffer::~Effects_Buffer() -{ - delete[] echo_buf; - delete[] reverb_buf; -} - -const char *Effects_Buffer::set_sample_rate(long rate, int msec) -{ - if (!echo_buf) - { - echo_buf = new blip_sample_t[echo_size]; - } - - if (!reverb_buf) - { - reverb_buf = new blip_sample_t[reverb_size]; - } - - for (int i = 0; i < buf_count; i++) bufs[i].set_sample_rate(rate, msec); - - config(config_); - clear(); - - return Multi_Buffer::set_sample_rate(bufs[0].sample_rate(), bufs[0].length()); -} - -void Effects_Buffer::clock_rate(long rate) -{ - for (int i = 0; i < buf_count; i++) - bufs[i].clock_rate(rate); -} - -void Effects_Buffer::bass_freq(int freq) -{ - for (int i = 0; i < buf_count; i++) - bufs[i].bass_freq(freq); -} - -void Effects_Buffer::clear() -{ - stereo_remain = 0; - effect_remain = 0; - if (echo_buf) - memset(echo_buf, 0, echo_size * sizeof *echo_buf); - if (reverb_buf) - memset(reverb_buf, 0, reverb_size * sizeof *reverb_buf); - for (int i = 0; i < buf_count; i++) - bufs[i].clear(); -} - -inline int pin_range(int n, int max, int min = 0) -{ - if (n < min) - return min; - if (n > max) - return max; - return n; -} - -void Effects_Buffer::config(const config_t &cfg) -{ - channels_changed(); - - // clear echo and reverb buffers - if (!config_.effects_enabled && cfg.effects_enabled && echo_buf) - { - memset(echo_buf, 0, echo_size * sizeof(blip_sample_t)); - memset(reverb_buf, 0, reverb_size * sizeof(blip_sample_t)); - } - - config_ = cfg; - - if (config_.effects_enabled) - { - // convert to internal format - - chans.pan_1_levels[0] = TO_FIXED(1) - TO_FIXED(config_.pan_1); - chans.pan_1_levels[1] = TO_FIXED(2) - chans.pan_1_levels[0]; - - chans.pan_2_levels[0] = TO_FIXED(1) - TO_FIXED(config_.pan_2); - chans.pan_2_levels[1] = TO_FIXED(2) - chans.pan_2_levels[0]; - - chans.reverb_level = TO_FIXED(config_.reverb_level); - chans.echo_level = TO_FIXED(config_.echo_level); - - int delay_offset = int(1.0 / 2000 * config_.delay_variance * sample_rate()); - - int reverb_sample_delay = int(1.0 / 1000 * config_.reverb_delay * sample_rate()); - chans.reverb_delay_l = pin_range(reverb_size - - (reverb_sample_delay - delay_offset) * 2, - reverb_size - 2, - 0); - chans.reverb_delay_r = pin_range(reverb_size + 1 - - (reverb_sample_delay + delay_offset) * 2, - reverb_size - 1, - 1); - - int echo_sample_delay = int(1.0 / 1000 * config_.echo_delay * sample_rate()); - chans.echo_delay_l = pin_range(echo_size - 1 - (echo_sample_delay - delay_offset), - echo_size - 1); - chans.echo_delay_r = pin_range(echo_size - 1 - (echo_sample_delay + delay_offset), - echo_size - 1); - - // set up outputs - for (unsigned i = 0; i < chan_count; i++) - { - channel_t &o = channels[i]; - if (i < 2) - { - o.center = &bufs[i]; - o.left = &bufs[3]; - o.right = &bufs[4]; - } - else - { - o.center = &bufs[2]; - o.left = &bufs[5]; - o.right = &bufs[6]; - } - } - } - else - { - // set up outputs - for (unsigned i = 0; i < chan_count; i++) - { - channel_t &o = channels[i]; - o.center = &bufs[0]; - o.left = &bufs[1]; - o.right = &bufs[2]; - } - } - - if (buf_count < max_buf_count) - { - for (unsigned i = 0; i < chan_count; i++) - { - channel_t &o = channels[i]; - o.left = o.center; - o.right = o.center; - } - } -} - -void Effects_Buffer::end_frame(blip_time_t clock_count, bool stereo) -{ - for (int i = 0; i < buf_count; i++) - bufs[i].end_frame(clock_count); - - if (stereo && buf_count == max_buf_count) - stereo_remain = bufs[0].samples_avail() + bufs[0].output_latency(); - - if (effects_enabled || config_.effects_enabled) - effect_remain = bufs[0].samples_avail() + bufs[0].output_latency(); - - effects_enabled = config_.effects_enabled; -} - -long Effects_Buffer::samples_avail() const -{ - return bufs[0].samples_avail() * 2; -} - -long Effects_Buffer::read_samples(blip_sample_t *out, long total_samples) -{ - long remain = bufs[0].samples_avail(); - if (remain > (total_samples >> 1)) - remain = (total_samples >> 1); - total_samples = remain; - while (remain) - { - int active_bufs = buf_count; - long count = remain; - - // optimizing mixing to skip any channels which had nothing added - if (effect_remain) - { - if (count > effect_remain) - count = effect_remain; - - if (stereo_remain) - { - mix_enhanced(out, count); - } - else - { - mix_mono_enhanced(out, count); - active_bufs = 3; - } - } - else if (stereo_remain) - { - mix_stereo(out, count); - active_bufs = 3; - } - else - { - mix_mono(out, count); - active_bufs = 1; - } - - out += count * 2; - remain -= count; - - stereo_remain -= count; - if (stereo_remain < 0) - stereo_remain = 0; - - effect_remain -= count; - if (effect_remain < 0) - effect_remain = 0; - - for (int i = 0; i < buf_count; i++) - { - if (i < active_bufs) - bufs[i].remove_samples(count); - else - bufs[i].remove_silence(count); // keep time synchronized - } - } - - return total_samples * 2; -} - -void Effects_Buffer::mix_mono(blip_sample_t *out, long count) -{ - Blip_Reader c; - int shift = c.begin(bufs[0]); - - // unrolled loop - for (long n = count >> 1; n--;) - { - long cs0 = c.read(); - c.next(shift); - - long cs1 = c.read(); - c.next(shift); - - if ((int16_t)cs0 != cs0) - cs0 = 0x7FFF - (cs0 >> 24); - ((uint32_t *)out)[0] = ((uint16_t)cs0) | (cs0 << 16); - - if ((int16_t)cs1 != cs1) - cs1 = 0x7FFF - (cs1 >> 24); - ((uint32_t *)out)[1] = ((uint16_t)cs1) | (cs1 << 16); - out += 4; - } - - if (count & 1) - { - int s = c.read(); - c.next(shift); - out[0] = s; - out[1] = s; - if ((int16_t)s != s) - { - s = 0x7FFF - (s >> 24); - out[0] = s; - out[1] = s; - } - } - - c.end(bufs[0]); -} - -void Effects_Buffer::mix_stereo(blip_sample_t *out, long count) -{ - Blip_Reader l; - l.begin(bufs[1]); - Blip_Reader r; - r.begin(bufs[2]); - Blip_Reader c; - int shift = c.begin(bufs[0]); - - while (count--) - { - int cs = c.read(); - c.next(shift); - int left = cs + l.read(); - int right = cs + r.read(); - l.next(shift); - r.next(shift); - - if ((int16_t)left != left) - left = 0x7FFF - (left >> 24); - - out[0] = left; - out[1] = right; - - out += 2; - - if ((int16_t)right != right) - out[-1] = 0x7FFF - (right >> 24); - } - - c.end(bufs[0]); - r.end(bufs[2]); - l.end(bufs[1]); -} - -void Effects_Buffer::mix_mono_enhanced(blip_sample_t *out, long count) -{ - Blip_Reader sq1; - sq1.begin(bufs[0]); - Blip_Reader sq2; - sq2.begin(bufs[1]); - Blip_Reader center; - int shift = center.begin(bufs[2]); - - int echo_pos = this->echo_pos; - int reverb_pos = this->reverb_pos; - - while (count--) - { - int sum1_s = sq1.read(); - int sum2_s = sq2.read(); - - sq1.next(shift); - sq2.next(shift); - - int new_reverb_l = FMUL(sum1_s, chans.pan_1_levels[0]) + - FMUL(sum2_s, chans.pan_2_levels[0]) + - reverb_buf[(reverb_pos + chans.reverb_delay_l) & reverb_mask]; - - int new_reverb_r = FMUL(sum1_s, chans.pan_1_levels[1]) + - FMUL(sum2_s, chans.pan_2_levels[1]) + - reverb_buf[(reverb_pos + chans.reverb_delay_r) & reverb_mask]; - - fixed_t reverb_level = chans.reverb_level; - reverb_buf[reverb_pos] = FMUL(new_reverb_l, reverb_level); - reverb_buf[reverb_pos + 1] = FMUL(new_reverb_r, reverb_level); - reverb_pos = (reverb_pos + 2) & reverb_mask; - - int sum3_s = center.read(); - center.next(shift); - - int left = new_reverb_l + sum3_s + FMUL(chans.echo_level, echo_buf[(echo_pos + chans.echo_delay_l) & echo_mask]); - int right = new_reverb_r + sum3_s + FMUL(chans.echo_level, echo_buf[(echo_pos + chans.echo_delay_r) & echo_mask]); - - echo_buf[echo_pos] = sum3_s; - echo_pos = (echo_pos + 1) & echo_mask; - - if ((int16_t)left != left) - left = 0x7FFF - (left >> 24); - - out[0] = left; - out[1] = right; - - out += 2; - - if ((int16_t)right != right) - out[-1] = 0x7FFF - (right >> 24); - } - this->reverb_pos = reverb_pos; - this->echo_pos = echo_pos; - - sq1.end(bufs[0]); - sq2.end(bufs[1]); - center.end(bufs[2]); -} - -void Effects_Buffer::mix_enhanced(blip_sample_t *out, long count) -{ - Blip_Reader l1; - l1.begin(bufs[3]); - Blip_Reader r1; - r1.begin(bufs[4]); - Blip_Reader l2; - l2.begin(bufs[5]); - Blip_Reader r2; - r2.begin(bufs[6]); - Blip_Reader sq1; - sq1.begin(bufs[0]); - Blip_Reader sq2; - sq2.begin(bufs[1]); - Blip_Reader center; - int shift = center.begin(bufs[2]); - - int echo_pos = this->echo_pos; - int reverb_pos = this->reverb_pos; - - while (count--) - { - int sum1_s = sq1.read(); - int sum2_s = sq2.read(); - - sq1.next(shift); - sq2.next(shift); - - int new_reverb_l = FMUL(sum1_s, chans.pan_1_levels[0]) + - FMUL(sum2_s, chans.pan_2_levels[0]) + l1.read() + - reverb_buf[(reverb_pos + chans.reverb_delay_l) & reverb_mask]; - - int new_reverb_r = FMUL(sum1_s, chans.pan_1_levels[1]) + - FMUL(sum2_s, chans.pan_2_levels[1]) + r1.read() + - reverb_buf[(reverb_pos + chans.reverb_delay_r) & reverb_mask]; - - l1.next(shift); - r1.next(shift); - - fixed_t reverb_level = chans.reverb_level; - reverb_buf[reverb_pos] = FMUL(new_reverb_l, reverb_level); - reverb_buf[reverb_pos + 1] = FMUL(new_reverb_r, reverb_level); - reverb_pos = (reverb_pos + 2) & reverb_mask; - - int sum3_s = center.read(); - center.next(shift); - - int left = new_reverb_l + sum3_s + l2.read() + FMUL(chans.echo_level, echo_buf[(echo_pos + chans.echo_delay_l) & echo_mask]); - int right = new_reverb_r + sum3_s + r2.read() + FMUL(chans.echo_level, echo_buf[(echo_pos + chans.echo_delay_r) & echo_mask]); - - l2.next(shift); - r2.next(shift); - - echo_buf[echo_pos] = sum3_s; - echo_pos = (echo_pos + 1) & echo_mask; - - if ((int16_t)left != left) - left = 0x7FFF - (left >> 24); - - out[0] = left; - out[1] = right; - - out += 2; - - if ((int16_t)right != right) - out[-1] = 0x7FFF - (right >> 24); - } - this->reverb_pos = reverb_pos; - this->echo_pos = echo_pos; - - sq1.end(bufs[0]); - sq2.end(bufs[1]); - center.end(bufs[2]); - l1.end(bufs[3]); - r1.end(bufs[4]); - l2.end(bufs[5]); - r2.end(bufs[6]); -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/effectsBuffer.hpp b/quicknes/source/quickerNES/core/apu/effectsBuffer.hpp deleted file mode 100644 index 46809a9a3cf..00000000000 --- a/quicknes/source/quickerNES/core/apu/effectsBuffer.hpp +++ /dev/null @@ -1,104 +0,0 @@ -#pragma once - -// Multi-channel effects buffer with panning, echo and reverb -// Game_Music_Emu 0.3.0 - -#include "multiBuffer.hpp" -#include - -namespace quickerNES -{ - -// Effects_Buffer uses several buffers and outputs stereo sample pairs. -class Effects_Buffer : public Multi_Buffer -{ - public: - // If center_only is true, only center buffers are created and - // less memory is used. - Effects_Buffer(bool center_only = false); - - // Channel Effect Center Pan - // --------------------------------- - // 0,5 reverb pan_1 - // 1,6 reverb pan_2 - // 2,7 echo - - // 3 echo - - // 4 echo - - - // Channel configuration - struct config_t - { - double pan_1; // -1.0 = left, 0.0 = center, 1.0 = right - double pan_2; - double echo_delay; // msec - double echo_level; // 0.0 to 1.0 - double reverb_delay; // msec - double delay_variance; // difference between left/right delays (msec) - double reverb_level; // 0.0 to 1.0 - bool effects_enabled; // if false, use optimized simple mixer - config_t(); - }; - - // Set configuration of buffer - virtual void config(const config_t &); - void set_depth(double); - - public: - ~Effects_Buffer(); - const char *set_sample_rate(long samples_per_sec, int msec = blip_default_length); - void clock_rate(long); - void bass_freq(int); - void clear(); - channel_t channel(int); - void end_frame(blip_time_t, bool was_stereo = true); - long read_samples(blip_sample_t *, long); - long samples_avail() const; - - private: - typedef long fixed_t; - - enum - { - max_buf_count = 7 - }; - Blip_Buffer bufs[max_buf_count]; - enum - { - chan_count = 5 - }; - channel_t channels[chan_count]; - config_t config_; - long stereo_remain; - long effect_remain; - int buf_count; - bool effects_enabled; - - blip_sample_t *reverb_buf; - blip_sample_t *echo_buf; - int reverb_pos; - int echo_pos; - - struct - { - fixed_t pan_1_levels[2]; - fixed_t pan_2_levels[2]; - int echo_delay_l; - int echo_delay_r; - fixed_t echo_level; - int reverb_delay_l; - int reverb_delay_r; - fixed_t reverb_level; - } chans; - - void mix_mono(blip_sample_t *, long); - void mix_stereo(blip_sample_t *, long); - void mix_enhanced(blip_sample_t *, long); - void mix_mono_enhanced(blip_sample_t *, long); -}; - -inline Effects_Buffer::channel_t Effects_Buffer::channel(int i) -{ - return channels[i % chan_count]; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/fme7/apu_fme7.cpp b/quicknes/source/quickerNES/core/apu/fme7/apu_fme7.cpp deleted file mode 100644 index 40159e0197c..00000000000 --- a/quicknes/source/quickerNES/core/apu/fme7/apu_fme7.cpp +++ /dev/null @@ -1,108 +0,0 @@ - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "apu_fme7.hpp" -#include - -/* Copyright (C) 2003-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -void Fme7_Apu::reset() -{ - last_time = 0; - - for (int i = 0; i < osc_count; i++) - oscs[i].last_amp = 0; - - fme7_apu_state_t *state = this; - memset(state, 0, sizeof *state); -} - -unsigned char Fme7_Apu::amp_table[16] = - { -#define ENTRY(n) (unsigned char)(n * +amp_range + 0.5) - ENTRY(0.0000), ENTRY(0.0078), ENTRY(0.0110), ENTRY(0.0156), ENTRY(0.0221), ENTRY(0.0312), ENTRY(0.0441), ENTRY(0.0624), ENTRY(0.0883), ENTRY(0.1249), ENTRY(0.1766), ENTRY(0.2498), ENTRY(0.3534), ENTRY(0.4998), ENTRY(0.7070), ENTRY(1.0000) -#undef ENTRY -}; - -void Fme7_Apu::run_until(blip_time_t end_time) -{ - for (int index = 0; index < osc_count; index++) - { - int mode = regs[7] >> index; - int vol_mode = regs[010 + index]; - int volume = amp_table[vol_mode & 0x0f]; - - if (!oscs[index].output) - continue; - - if ((mode & 001) | (vol_mode & 0x10)) - volume = 0; // noise and envelope aren't supported - - // period - int const period_factor = 16; - unsigned period = (regs[index * 2 + 1] & 0x0f) * 0x100 * period_factor + - regs[index * 2] * period_factor; - if (period < 50) // around 22 kHz - { - volume = 0; - if (!period) // on my AY-3-8910A, period doesn't have extra one added - period = period_factor; - } - - // current amplitude - int amp = volume; - if (!phases[index]) - amp = 0; - int delta = amp - oscs[index].last_amp; - if (delta) - { - oscs[index].last_amp = amp; - synth.offset(last_time, delta, oscs[index].output); - } - - blip_time_t time = last_time + delays[index]; - if (time < end_time) - { - Blip_Buffer *const osc_output = oscs[index].output; - int delta = amp * 2 - volume; - - if (volume) - { - do - { - delta = -delta; - synth.offset_inline(time, delta, osc_output); - time += period; - } while (time < end_time); - - oscs[index].last_amp = (delta + volume) >> 1; - phases[index] = (delta > 0); - } - else - { - // maintain phase when silent - int count = (end_time - time + period - 1) / period; - phases[index] ^= count & 1; - time += (long)count * period; - } - } - - delays[index] = time - end_time; - } - - last_time = end_time; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/fme7/apu_fme7.hpp b/quicknes/source/quickerNES/core/apu/fme7/apu_fme7.hpp deleted file mode 100644 index 440b4641c5e..00000000000 --- a/quicknes/source/quickerNES/core/apu/fme7/apu_fme7.hpp +++ /dev/null @@ -1,155 +0,0 @@ -#pragma once - -// Sunsoft FME-7 sound emulator -// Emu 0.7.0 - -#include "../blipBuffer.hpp" -#include - -namespace quickerNES -{ - -struct fme7_apu_state_t -{ - enum - { - reg_count = 14 - }; - uint8_t regs[reg_count]; - uint8_t phases[3]; // 0 or 1 - uint8_t latch; - uint16_t delays[3]; // a, b, c -}; -static_assert(sizeof(fme7_apu_state_t) == 24); - -class Fme7_Apu : private fme7_apu_state_t -{ - public: - Fme7_Apu(); - - // See Apu.h for reference - void reset(); - void volume(double); - void treble_eq(blip_eq_t const &); - void output(Blip_Buffer *); - enum - { - osc_count = 3 - }; - void osc_output(int index, Blip_Buffer *); - void end_frame(blip_time_t); - void save_state(fme7_apu_state_t *) const; - void load_state(fme7_apu_state_t const &); - - // Mask and addresses of registers - enum - { - addr_mask = 0xe000 - }; - enum - { - data_addr = 0xe000 - }; - enum - { - latch_addr = 0xc000 - }; - - // (addr & addr_mask) == latch_addr - void write_latch(int); - - // (addr & addr_mask) == data_addr - void write_data(blip_time_t, int data); - - // End of public interface - private: - // noncopyable - Fme7_Apu(const Fme7_Apu &); - Fme7_Apu &operator=(const Fme7_Apu &); - - static unsigned char amp_table[16]; - - struct - { - Blip_Buffer *output; - int last_amp; - } oscs[osc_count]; - blip_time_t last_time; - - enum - { - amp_range = 192 - }; // can be any value; this gives best error/quality tradeoff - Blip_Synth synth; - - void run_until(blip_time_t); -}; - -inline void Fme7_Apu::volume(double v) -{ - synth.volume(0.38 / +amp_range * v); // to do: fine-tune -} - -inline void Fme7_Apu::treble_eq(blip_eq_t const &eq) -{ - synth.treble_eq(eq); -} - -inline void Fme7_Apu::osc_output(int i, Blip_Buffer *buf) -{ - oscs[i].output = buf; -} - -inline void Fme7_Apu::output(Blip_Buffer *buf) -{ - for (int i = 0; i < osc_count; i++) - osc_output(i, buf); -} - -inline Fme7_Apu::Fme7_Apu() -{ - output(0); - volume(1.0); - reset(); -} - -inline void Fme7_Apu::write_latch(int data) { latch = data; } - -inline void Fme7_Apu::write_data(blip_time_t time, int data) -{ - if ((unsigned)latch >= reg_count) - { -#ifdef dprintf - dprintf("FME7 write to %02X (past end of sound registers)\n", (int)latch); -#endif - return; - } - - run_until(time); - regs[latch] = data; -} - -inline void Fme7_Apu::end_frame(blip_time_t time) -{ - if (time > last_time) - run_until(time); - - last_time -= time; -} - -inline void Fme7_Apu::save_state(fme7_apu_state_t *out) const -{ - *out = *this; -} - -inline void Fme7_Apu::load_state(fme7_apu_state_t const &in) -{ - reset(); - fme7_apu_state_t *state = this; - *state = in; - - // Run sound channels for 0 cycles for clean audio after loading state - run_until(last_time); -} - -} // namespace quickerNES diff --git a/quicknes/source/quickerNES/core/apu/multiBuffer.cpp b/quicknes/source/quickerNES/core/apu/multiBuffer.cpp deleted file mode 100644 index e40b910911c..00000000000 --- a/quicknes/source/quickerNES/core/apu/multiBuffer.cpp +++ /dev/null @@ -1,287 +0,0 @@ - -// Blip_Buffer 0.4.0. http://www.slack.net/~ant/ - -#include "multiBuffer.hpp" -#include - -/* Copyright (C) 2003-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -Multi_Buffer::Multi_Buffer(int spf) : samples_per_frame_(spf) -{ - length_ = 0; - sample_rate_ = 0; - channels_changed_count_ = 1; - channels_changed_count_save_ = 1; -} - -const char *Multi_Buffer::set_channel_count(int) -{ - return 0; -} - -void Multi_Buffer::SaveAudioBufferStatePrivate() -{ - channels_changed_count_save_ = channels_changed_count_; -} - -void Multi_Buffer::RestoreAudioBufferStatePrivate() -{ - channels_changed_count_ = channels_changed_count_save_; -} - -Mono_Buffer::Mono_Buffer() : Multi_Buffer(1) -{ -} - -Mono_Buffer::~Mono_Buffer() -{ -} - -const char *Mono_Buffer::set_sample_rate(long rate, int msec) -{ - buf.set_sample_rate(rate, msec); - return Multi_Buffer::set_sample_rate(buf.sample_rate(), buf.length()); -} - -void Mono_Buffer::SaveAudioBufferState() -{ - SaveAudioBufferStatePrivate(); - center()->SaveAudioBufferState(); -} - -void Mono_Buffer::RestoreAudioBufferState() -{ - RestoreAudioBufferStatePrivate(); - center()->RestoreAudioBufferState(); -} - -// Silent_Buffer - -Silent_Buffer::Silent_Buffer() : Multi_Buffer(1) // 0 channels would probably confuse -{ - chan.left = 0; - chan.center = 0; - chan.right = 0; -} - -void Silent_Buffer::SaveAudioBufferState() -{ - SaveAudioBufferStatePrivate(); -} - -void Silent_Buffer::RestoreAudioBufferState() -{ - RestoreAudioBufferStatePrivate(); -} - -// Mono_Buffer - -Mono_Buffer::channel_t Mono_Buffer::channel(int) -{ - channel_t ch; - ch.center = &buf; - ch.left = &buf; - ch.right = &buf; - return ch; -} - -void Mono_Buffer::end_frame(blip_time_t t, bool) -{ - buf.end_frame(t); -} - -// Stereo_Buffer - -Stereo_Buffer::Stereo_Buffer() : Multi_Buffer(2) -{ - chan.center = &bufs[0]; - chan.left = &bufs[1]; - chan.right = &bufs[2]; -} - -Stereo_Buffer::~Stereo_Buffer() -{ -} - -const char *Stereo_Buffer::set_sample_rate(long rate, int msec) -{ - for (int i = 0; i < buf_count; i++) bufs[i].set_sample_rate(rate, msec); - return Multi_Buffer::set_sample_rate(bufs[0].sample_rate(), bufs[0].length()); -} - -void Stereo_Buffer::clock_rate(long rate) -{ - for (int i = 0; i < buf_count; i++) - bufs[i].clock_rate(rate); -} - -void Stereo_Buffer::bass_freq(int bass) -{ - for (unsigned i = 0; i < buf_count; i++) - bufs[i].bass_freq(bass); -} - -void Stereo_Buffer::clear() -{ - stereo_added = false; - was_stereo = false; - for (int i = 0; i < buf_count; i++) - bufs[i].clear(); -} - -void Stereo_Buffer::end_frame(blip_time_t clock_count, bool stereo) -{ - for (unsigned i = 0; i < buf_count; i++) - bufs[i].end_frame(clock_count); - - stereo_added |= stereo; -} - -long Stereo_Buffer::read_samples(blip_sample_t *out, long count) -{ - count = (unsigned)count / 2; - - long avail = bufs[0].samples_avail(); - if (count > avail) - count = avail; - if (count) - { - if (stereo_added || was_stereo) - { - mix_stereo(out, count); - - bufs[0].remove_samples(count); - bufs[1].remove_samples(count); - bufs[2].remove_samples(count); - } - else - { - mix_mono(out, count); - - bufs[0].remove_samples(count); - - bufs[1].remove_silence(count); - bufs[2].remove_silence(count); - } - - // to do: this might miss opportunities for optimization - if (!bufs[0].samples_avail()) - { - was_stereo = stereo_added; - stereo_added = false; - } - } - - return count * 2; -} - -void Stereo_Buffer::mix_stereo(blip_sample_t *out, long count) -{ - Blip_Reader left; - Blip_Reader right; - Blip_Reader center; - - left.begin(bufs[1]); - right.begin(bufs[2]); - int bass = center.begin(bufs[0]); - - if (out != 0) - { - while (count--) - { - int c = center.read(); - long l = c + left.read(); - long r = c + right.read(); - center.next(bass); - out[0] = l; - out[1] = r; - out += 2; - - if ((int16_t)l != l) - out[-2] = 0x7FFF - (l >> 24); - - left.next(bass); - right.next(bass); - - if ((int16_t)r != r) - out[-1] = 0x7FFF - (r >> 24); - } - } - else - { - // only run accumulators, do not output any audio - while (count--) - { - center.next(bass); - left.next(bass); - right.next(bass); - } - } - - center.end(bufs[0]); - right.end(bufs[2]); - left.end(bufs[1]); -} - -void Stereo_Buffer::mix_mono(blip_sample_t *out, long count) -{ - Blip_Reader in; - int bass = in.begin(bufs[0]); - - if (out != 0) - { - while (count--) - { - long s = in.read(); - in.next(bass); - out[0] = s; - out[1] = s; - out += 2; - - if ((int16_t)s != s) - { - s = 0x7FFF - (s >> 24); - out[-2] = s; - out[-1] = s; - } - } - } - else - { - while (count--) - { - in.next(bass); - } - } - - in.end(bufs[0]); -} - -void Stereo_Buffer::SaveAudioBufferState() -{ - SaveAudioBufferStatePrivate(); - left()->SaveAudioBufferState(); - center()->SaveAudioBufferState(); - right()->SaveAudioBufferState(); -} -void Stereo_Buffer::RestoreAudioBufferState() -{ - RestoreAudioBufferStatePrivate(); - left()->RestoreAudioBufferState(); - center()->RestoreAudioBufferState(); - right()->RestoreAudioBufferState(); -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/multiBuffer.hpp b/quicknes/source/quickerNES/core/apu/multiBuffer.hpp deleted file mode 100644 index f673ebd7c99..00000000000 --- a/quicknes/source/quickerNES/core/apu/multiBuffer.hpp +++ /dev/null @@ -1,202 +0,0 @@ - -#pragma once - -// Multi-channel sound buffer interface, and basic mono and stereo buffers -// Blip_Buffer 0.4.0 - -#include "blipBuffer.hpp" - -namespace quickerNES -{ - -// Interface to one or more Blip_Buffers mapped to one or more channels -// consisting of left, center, and right buffers. -class Multi_Buffer -{ - public: - Multi_Buffer(int samples_per_frame); - virtual ~Multi_Buffer() {} - - // Set the number of channels available - virtual const char *set_channel_count(int); - - // Get indexed channel, from 0 to channel count - 1 - struct channel_t - { - Blip_Buffer *center; - Blip_Buffer *left; - Blip_Buffer *right; - }; - virtual channel_t channel(int index) = 0; - - // See Blip_Buffer.h - virtual const char *set_sample_rate(long rate, int msec = blip_default_length) = 0; - virtual void clock_rate(long) = 0; - virtual void bass_freq(int) = 0; - virtual void clear() = 0; - long sample_rate() const; - - // Length of buffer, in milliseconds - int length() const; - - // See Blip_Buffer.h. For optimal operation, pass false for 'added_stereo' - // if nothing was added to the left and right buffers of any channel for - // this time frame. - virtual void end_frame(blip_time_t, bool added_stereo = true) = 0; - - // Number of samples per output frame (1 = mono, 2 = stereo) - int samples_per_frame() const; - - // Count of changes to channel configuration. Incremented whenever - // a change is made to any of the Blip_Buffers for any channel. - unsigned channels_changed_count() { return channels_changed_count_; } - - // See Blip_Buffer.h - virtual long read_samples(blip_sample_t *, long) = 0; - virtual long samples_avail() const = 0; - - protected: - void channels_changed() { channels_changed_count_++; } - - private: - // noncopyable - Multi_Buffer(const Multi_Buffer &); - Multi_Buffer &operator=(const Multi_Buffer &); - - unsigned channels_changed_count_; - long sample_rate_; - int length_; - int const samples_per_frame_; - unsigned channels_changed_count_save_; - - protected: - void SaveAudioBufferStatePrivate(); - void RestoreAudioBufferStatePrivate(); - - public: - virtual void SaveAudioBufferState() = 0; - virtual void RestoreAudioBufferState() = 0; -}; - -// Uses a single buffer and outputs mono samples. -class Mono_Buffer : public Multi_Buffer -{ - Blip_Buffer buf; - - public: - Mono_Buffer(); - ~Mono_Buffer(); - - // Buffer used for all channels - Blip_Buffer *center() { return &buf; } - - // See Multi_Buffer - const char *set_sample_rate(long rate, int msec = blip_default_length); - void clock_rate(long); - void bass_freq(int); - void clear(); - channel_t channel(int); - void end_frame(blip_time_t, bool unused = true); - long samples_avail() const; - long read_samples(blip_sample_t *, long); - - virtual void SaveAudioBufferState(); - virtual void RestoreAudioBufferState(); -}; - -// Uses three buffers (one for center) and outputs stereo sample pairs. -class Stereo_Buffer : public Multi_Buffer -{ - public: - Stereo_Buffer(); - ~Stereo_Buffer(); - - // Buffers used for all channels - Blip_Buffer *center() { return &bufs[0]; } - Blip_Buffer *left() { return &bufs[1]; } - Blip_Buffer *right() { return &bufs[2]; } - - // See Multi_Buffer - const char *set_sample_rate(long, int msec = blip_default_length); - void clock_rate(long); - void bass_freq(int); - void clear(); - channel_t channel(int index); - void end_frame(blip_time_t, bool added_stereo = true); - - long samples_avail() const; - long read_samples(blip_sample_t *, long); - - private: - enum - { - buf_count = 3 - }; - Blip_Buffer bufs[buf_count]; - channel_t chan; - bool stereo_added; - bool was_stereo; - - void mix_stereo(blip_sample_t *, long); - void mix_mono(blip_sample_t *, long); - - virtual void SaveAudioBufferState(); - virtual void RestoreAudioBufferState(); -}; - -// Silent_Buffer generates no samples, useful where no sound is wanted -class Silent_Buffer : public Multi_Buffer -{ - channel_t chan; - - public: - Silent_Buffer(); - - const char *set_sample_rate(long rate, int msec = blip_default_length); - void clock_rate(long) {} - void bass_freq(int) {} - void clear() {} - channel_t channel(int) { return chan; } - void end_frame(blip_time_t, bool unused = true) {} - long samples_avail() const { return 0; } - long read_samples(blip_sample_t *, long) { return 0; } - - virtual void SaveAudioBufferState(); - virtual void RestoreAudioBufferState(); -}; - -// End of public interface - -inline const char *Multi_Buffer::set_sample_rate(long rate, int msec) -{ - sample_rate_ = rate; - length_ = msec; - return 0; -} - -inline const char *Silent_Buffer::set_sample_rate(long rate, int msec) -{ - return Multi_Buffer::set_sample_rate(rate, msec); -} - -inline int Multi_Buffer::samples_per_frame() const { return samples_per_frame_; } - -inline long Stereo_Buffer::samples_avail() const { return bufs[0].samples_avail() * 2; } - -inline Stereo_Buffer::channel_t Stereo_Buffer::channel(int) { return chan; } - -inline long Multi_Buffer::sample_rate() const { return sample_rate_; } - -inline int Multi_Buffer::length() const { return length_; } - -inline void Mono_Buffer::clock_rate(long rate) { buf.clock_rate(rate); } - -inline void Mono_Buffer::clear() { buf.clear(); } - -inline void Mono_Buffer::bass_freq(int freq) { buf.bass_freq(freq); } - -inline long Mono_Buffer::read_samples(blip_sample_t *p, long s) { return buf.read_samples(p, s); } - -inline long Mono_Buffer::samples_avail() const { return buf.samples_avail(); } - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/namco/apu_namco.cpp b/quicknes/source/quickerNES/core/apu/namco/apu_namco.cpp deleted file mode 100644 index bc9c544d2c5..00000000000 --- a/quicknes/source/quickerNES/core/apu/namco/apu_namco.cpp +++ /dev/null @@ -1,183 +0,0 @@ - -// Snd_Emu 0.1.7. http://www.slack.net/~ant/ - -#include "apu_namco.hpp" -#include "../blipBuffer.hpp" - -/* Copyright (C) 2003-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -Namco_Apu::Namco_Apu() -{ - output(0); - volume(1.0); - reset(); -} - -Namco_Apu::~Namco_Apu() -{ -} - -void Namco_Apu::reset() -{ - last_time = 0; - addr_reg = 0; - - int i; - for (i = 0; i < reg_count; i++) - reg[i] = 0; - - for (i = 0; i < osc_count; i++) - { - Namco_Osc &osc = oscs[i]; - osc.delay = 0; - osc.last_amp = 0; - osc.wave_pos = 0; - } -} - -void Namco_Apu::output(Blip_Buffer *buf) -{ - for (int i = 0; i < osc_count; i++) - osc_output(i, buf); -} - -/* -void Namco_Apu::reflect_state( Tagged_Data& data ) -{ - reflect_int16( data, 'ADDR', &addr_reg ); - - static const char hex [17] = "0123456789ABCDEF"; - int i; - for ( i = 0; i < reg_count; i++ ) - reflect_int16( data, 'RG\0\0' + hex [i >> 4] * 0x100 + hex [i & 15], ® [i] ); - - for ( i = 0; i < osc_count; i++ ) - { - reflect_int32( data, 'DLY0' + i, &oscs [i].delay ); - reflect_int16( data, 'POS0' + i, &oscs [i].wave_pos ); - } -} -*/ - -void Namco_Apu::end_frame(nes_time_t time) -{ - if (time > last_time) - run_until(time); - - last_time -= time; -} - -void Namco_Apu::run_until(nes_time_t nes_end_time) -{ - int active_oscs = (reg[0x7F] >> 4 & 7) + 1; - for (int i = osc_count - active_oscs; i < osc_count; i++) - { - Namco_Osc &osc = oscs[i]; - Blip_Buffer *output = osc.output; - if (!output) - continue; - - blip_resampled_time_t time = - output->resampled_time(last_time) + osc.delay; - blip_resampled_time_t end_time = output->resampled_time(nes_end_time); - osc.delay = 0; - if (time < end_time) - { - const uint8_t *osc_reg = ®[i * 8 + 0x40]; - if (!(osc_reg[4] & 0xE0)) - continue; - - int volume = osc_reg[7] & 15; - if (!volume) - continue; - - long freq = (osc_reg[4] & 3) * 0x10000 + osc_reg[2] * 0x100L + osc_reg[0]; - if (freq < 64 * active_oscs) - continue; // prevent low frequencies from excessively delaying freq changes - blip_resampled_time_t period = - output->resampled_duration(983040) / freq * active_oscs; - - int wave_size = 32 - (osc_reg[4] >> 2 & 7) * 4; - if (!wave_size) - continue; - - int last_amp = osc.last_amp; - int wave_pos = osc.wave_pos; - - do - { - // read wave sample - int addr = wave_pos + osc_reg[6]; - int sample = reg[addr >> 1] >> (addr << 2 & 4); - wave_pos++; - sample = (sample & 15) * volume; - - // output impulse if amplitude changed - int delta = sample - last_amp; - if (delta) - { - last_amp = sample; - synth.offset_resampled(time, delta, output); - } - - // next sample - time += period; - if (wave_pos >= wave_size) - wave_pos = 0; - } while (time < end_time); - - osc.wave_pos = wave_pos; - osc.last_amp = last_amp; - } - osc.delay = time - end_time; - } - - last_time = nes_end_time; -} - -void Namco_Apu::save_state(namco_state_t *out) const -{ - out->addr = addr_reg; - for (int r = 0; r < reg_count; r++) - out->regs[r] = reg[r]; - - for (int i = 0; i < osc_count; i++) - { - Namco_Osc const &osc = oscs[i]; - - out->delays[i] = osc.delay; - out->positions[i] = osc.wave_pos; - } -} - -void Namco_Apu::load_state(namco_state_t const &in) -{ - reset(); - addr_reg = in.addr; - for (int r = 0; r < reg_count; r++) - reg[r] = in.regs[r]; - - for (int i = 0; i < osc_count; i++) - { - Namco_Osc &osc = oscs[i]; - - osc.delay = in.delays[i]; - osc.wave_pos = in.positions[i]; - } - - run_until(last_time); -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/namco/apu_namco.hpp b/quicknes/source/quickerNES/core/apu/namco/apu_namco.hpp deleted file mode 100644 index f747eed9151..00000000000 --- a/quicknes/source/quickerNES/core/apu/namco/apu_namco.hpp +++ /dev/null @@ -1,115 +0,0 @@ -#pragma once - -// Namco 106 sound chip emulator -// Snd_Emu 0.1.7 - -#include "../apu.hpp" -#include - -namespace quickerNES -{ - -struct namco_state_t -{ - uint8_t regs[0x80]; - uint8_t addr; - uint8_t unused; - uint8_t positions[8]; - uint32_t delays[8]; -}; -static_assert(sizeof(namco_state_t) == 172); - -class Namco_Apu -{ - public: - Namco_Apu(); - ~Namco_Apu(); - - // See Apu.h for reference. - void volume(double); - void treble_eq(const blip_eq_t &); - void output(Blip_Buffer *); - enum - { - osc_count = 8 - }; - void osc_output(int index, Blip_Buffer *); - void reset(); - void end_frame(nes_time_t); - - // Read/write data register is at 0x4800 - enum - { - data_reg_addr = 0x4800 - }; - void write_data(nes_time_t, int); - int read_data(); - - // Write-only address register is at 0xF800 - enum - { - addr_reg_addr = 0xF800 - }; - void write_addr(int); - - // to do: implement save/restore - void save_state(namco_state_t *out) const; - void load_state(namco_state_t const &); - - private: - // noncopyable - Namco_Apu(const Namco_Apu &); - Namco_Apu &operator=(const Namco_Apu &); - - struct Namco_Osc - { - long delay; - Blip_Buffer *output; - short last_amp; - short wave_pos; - }; - - Namco_Osc oscs[osc_count]; - - nes_time_t last_time; - int addr_reg; - - enum - { - reg_count = 0x80 - }; - uint8_t reg[reg_count]; - Blip_Synth synth; - - uint8_t &access(); - void run_until(nes_time_t); -}; - -inline uint8_t &Namco_Apu::access() -{ - int addr = addr_reg & 0x7f; - if (addr_reg & 0x80) - addr_reg = (addr + 1) | 0x80; - return reg[addr]; -} - -inline void Namco_Apu::volume(double v) { synth.volume(0.10 / +osc_count * v); } - -inline void Namco_Apu::treble_eq(const blip_eq_t &eq) { synth.treble_eq(eq); } - -inline void Namco_Apu::write_addr(int v) { addr_reg = v; } - -inline int Namco_Apu::read_data() { return access(); } - -inline void Namco_Apu::osc_output(int i, Blip_Buffer *buf) -{ - oscs[i].output = buf; -} - -inline void Namco_Apu::write_data(nes_time_t time, int data) -{ - run_until(time); - access() = data; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/oscs.cpp b/quicknes/source/quickerNES/core/apu/oscs.cpp deleted file mode 100644 index ef9185469f9..00000000000 --- a/quicknes/source/quickerNES/core/apu/oscs.cpp +++ /dev/null @@ -1,682 +0,0 @@ - -// Snd_Emu 0.1.7. http://www.slack.net/~ant/ - -#include "apu.hpp" - -/* Copyright (C) 2003-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -// Osc - -void Osc::clock_length(int halt_mask) -{ - if (length_counter && !(regs[0] & halt_mask)) - length_counter--; -} - -void Envelope::clock_envelope() -{ - int period = regs[0] & 15; - if (reg_written[3]) - { - reg_written[3] = false; - env_delay = period; - envelope = 15; - } - else if (--env_delay < 0) - { - env_delay = period; - if (envelope | (regs[0] & 0x20)) - envelope = (envelope - 1) & 15; - } -} - -int Envelope::volume() const -{ - return length_counter == 0 ? 0 : (regs[0] & 0x10) ? (regs[0] & 15) - : envelope; -} - -// Square - -void Square::clock_sweep(int negative_adjust) -{ - int sweep = regs[1]; - - if (--sweep_delay < 0) - { - reg_written[1] = true; - - int period = this->period(); - int shift = sweep & shift_mask; - if (shift && (sweep & 0x80) && period >= 8) - { - int offset = period >> shift; - - if (sweep & negate_flag) - offset = negative_adjust - offset; - - if (period + offset < 0x800) - { - period += offset; - // rewrite period - regs[2] = period & 0xff; - regs[3] = (regs[3] & ~7) | ((period >> 8) & 7); - } - } - } - - if (reg_written[1]) - { - reg_written[1] = false; - sweep_delay = (sweep >> 4) & 7; - } -} - -// TODO: clean up -inline nes_time_t Square::maintain_phase(nes_time_t time, nes_time_t end_time, nes_time_t timer_period) -{ - long remain = end_time - time; - if (remain > 0) - { - int count = (remain + timer_period - 1) / timer_period; - phase = (phase + count) & (phase_range - 1); - time += (long)count * timer_period; - } - return time; -} - -void Square::run(nes_time_t time, nes_time_t end_time) -{ - const int period = this->period(); - const int timer_period = (period + 1) * 2; - - if (!output) - { - delay = maintain_phase(time + delay, end_time, timer_period) - end_time; - return; - } - - int offset = period >> (regs[1] & shift_mask); - if (regs[1] & negate_flag) - offset = 0; - - const int volume = this->volume(); - if (volume == 0 || period < 8 || (period + offset) >= 0x800) - { - if (last_amp) - { - synth.offset(time, -last_amp, output); - last_amp = 0; - } - - time += delay; - time = maintain_phase(time, end_time, timer_period); - } - else - { - // handle duty select - int duty_select = (regs[0] >> 6) & 3; - int duty = 1 << duty_select; // 1, 2, 4, 2 - int amp = 0; - if (duty_select == 3) - { - duty = 2; // negated 25% - amp = volume; - } - if (phase < duty) - amp ^= volume; - - int delta = update_amp(amp); - if (delta) - synth.offset(time, delta, output); - - time += delay; - if (time < end_time) - { - Blip_Buffer *const output = this->output; - const Synth &synth = this->synth; - int delta = amp * 2 - volume; - int phase = this->phase; - - do { - phase = (phase + 1) & (phase_range - 1); - if (phase == 0 || phase == duty) - { - delta = -delta; - synth.offset_inline(time, delta, output); - } - time += timer_period; - } while (time < end_time); - - last_amp = (delta + volume) >> 1; - this->phase = phase; - } - } - - delay = time - end_time; -} - -// Triangle - -void Triangle::clock_linear_counter() -{ - if (reg_written[3]) - linear_counter = regs[0] & 0x7f; - else if (linear_counter) - linear_counter--; - - if (!(regs[0] & 0x80)) - reg_written[3] = false; -} - -inline int Triangle::calc_amp() const -{ - int amp = phase_range - phase; - if (amp < 0) - amp = phase - (phase_range + 1); - return amp; -} - -// TODO: clean up -inline nes_time_t Triangle::maintain_phase(nes_time_t time, nes_time_t end_time, nes_time_t timer_period) -{ - long remain = end_time - time; - if (remain > 0) - { - int count = (remain + timer_period - 1) / timer_period; - phase = ((unsigned)phase + 1 - count) & (phase_range * 2 - 1); - phase++; - time += (long)count * timer_period; - } - return time; -} - -void Triangle::run(nes_time_t time, nes_time_t end_time) -{ - const int timer_period = period() + 1; - if (!output) - { - time += delay; - delay = 0; - if (length_counter && linear_counter && timer_period >= 3) - delay = maintain_phase(time, end_time, timer_period) - end_time; - return; - } - - // to do: track phase when period < 3 - // to do: Output 7.5 on dac when period < 2? More accurate, but results in more clicks. - - int delta = update_amp(calc_amp()); - if (delta) - synth.offset(time, delta, output); - - time += delay; - if (length_counter == 0 || linear_counter == 0 || timer_period < 3) - { - time = end_time; - } - else if (time < end_time) - { - Blip_Buffer *const output = this->output; - - int phase = this->phase; - int volume = 1; - if (phase > phase_range) - { - phase -= phase_range; - volume = -volume; - } - - do { - if (--phase == 0) - { - phase = phase_range; - volume = -volume; - } - else - { - synth.offset_inline(time, volume, output); - } - - time += timer_period; - } while (time < end_time); - - if (volume < 0) - phase += phase_range; - this->phase = phase; - last_amp = calc_amp(); - } - delay = time - end_time; -} - -// Dmc - -void Dmc::reset() -{ - address = 0; - dac = 0; - buf = 0; - bits_remain = 1; - bits = 0; - buf_full = false; - silence = true; - next_irq = Apu::no_irq; - irq_flag = false; - irq_enabled = false; - - Osc::reset(); - period = 0x1ac; -} - -void Dmc::recalc_irq() -{ - nes_time_t irq = Apu::no_irq; - if (irq_enabled && length_counter) - irq = apu->last_dmc_time + delay + - ((length_counter - 1) * 8 + bits_remain - 1) * nes_time_t(period) + 1; - if (irq != next_irq) - { - next_irq = irq; - apu->irq_changed(); - } -} - -int Dmc::count_reads(nes_time_t time, nes_time_t *last_read) const -{ - if (last_read) - *last_read = time; - - if (length_counter == 0) - return 0; // not reading - - long first_read = next_read_time(); - long avail = time - first_read; - if (avail <= 0) - return 0; - - int count = (avail - 1) / (period * 8) + 1; - if (!(regs[0] & loop_flag) && count > length_counter) - count = length_counter; - - if (last_read) - *last_read = first_read + (count - 1) * (period * 8) + 1; - - return count; -} - -static const short dmc_period_table[2][16] = { - {0x1ac, 0x17c, 0x154, 0x140, 0x11e, 0x0fe, 0x0e2, 0x0d6, // NTSC - 0x0be, - 0x0a0, - 0x08e, - 0x080, - 0x06a, - 0x054, - 0x048, - 0x036}, - - {0x18e, 0x161, 0x13c, 0x129, 0x10a, 0x0ec, 0x0d2, 0x0c7, // PAL (totally untested) - 0x0b1, - 0x095, - 0x084, - 0x077, - 0x062, - 0x04e, - 0x043, - 0x032} // to do: verify PAL periods -}; - -inline void Dmc::reload_sample() -{ - address = 0x4000 + regs[2] * 0x40; - length_counter = regs[3] * 0x10 + 1; -} - -static const unsigned char dac_table[128] = - { - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 15, - 16, - 17, - 18, - 19, - 20, - 20, - 21, - 22, - 23, - 24, - 24, - 25, - 26, - 27, - 27, - 28, - 29, - 30, - 31, - 31, - 32, - 33, - 33, - 34, - 35, - 36, - 36, - 37, - 38, - 38, - 39, - 40, - 41, - 41, - 42, - 43, - 43, - 44, - 45, - 45, - 46, - 47, - 47, - 48, - 48, - 49, - 50, - 50, - 51, - 52, - 52, - 53, - 53, - 54, - 55, - 55, - 56, - 56, - 57, - 58, - 58, - 59, - 59, - 60, - 60, - 61, - 61, - 62, - 63, - 63, - 64, - 64, - 65, - 65, - 66, - 66, - 67, - 67, - 68, - 68, - 69, - 70, - 70, - 71, - 71, - 72, - 72, - 73, - 73, - 74, - 74, - 75, - 75, - 75, - 76, - 76, - 77, - 77, - 78, - 78, - 79, - 79, - 80, - 80, - 81, - 81, - 82, - 82, - 82, - 83, -}; - -void Dmc::write_register(int addr, int data) -{ - if (addr == 0) - { - period = dmc_period_table[pal_mode][data & 15]; - irq_enabled = (data & 0xc0) == 0x80; // enabled only if loop disabled - irq_flag &= irq_enabled; - recalc_irq(); - } - else if (addr == 1) - { - int old_dac = dac; - dac = data & 0x7F; - - // adjust last_amp so that "pop" amplitude will be properly non-linear - // with respect to change in dac - int faked_nonlinear = dac - (dac_table[dac] - dac_table[old_dac]); - if (!nonlinear) - last_amp = faked_nonlinear; - } -} - -void Dmc::start() -{ - reload_sample(); - fill_buffer(); - recalc_irq(); -} - -void Dmc::fill_buffer() -{ - if (!buf_full && length_counter) - { - buf = prg_reader(prg_reader_data, 0x8000u + address); - address = (address + 1) & 0x7FFF; - buf_full = true; - if (--length_counter == 0) - { - if (regs[0] & loop_flag) - { - reload_sample(); - } - else - { - apu->osc_enables &= ~0x10; - irq_flag = irq_enabled; - next_irq = Apu::no_irq; - apu->irq_changed(); - } - } - } -} - -void Dmc::run(nes_time_t time, nes_time_t end_time) -{ - int delta = update_amp(dac); - if (!output) - silence = true; - else if (delta) - synth.offset(time, delta, output); - - time += delay; - if (time < end_time) - { - int bits_remain = this->bits_remain; - if (silence && !buf_full) - { - int count = (end_time - time + period - 1) / period; - bits_remain = (bits_remain - 1 + 8 - (count % 8)) % 8 + 1; - time += count * period; - } - else - { - Blip_Buffer *const output = this->output; - const int period = this->period; - int bits = this->bits; - int dac = this->dac; - - do - { - if (!silence) - { - int step = (bits & 1) * 4 - 2; - bits >>= 1; - if (unsigned(dac + step) <= 0x7F) - { - dac += step; - synth.offset_inline(time, step, output); - } - } - - time += period; - - if (--bits_remain == 0) - { - bits_remain = 8; - if (!buf_full) - { - silence = true; - } - else - { - silence = false; - bits = buf; - buf_full = false; - if (!output) - silence = true; - fill_buffer(); - } - } - } while (time < end_time); - - this->dac = dac; - this->last_amp = dac; - this->bits = bits; - } - this->bits_remain = bits_remain; - } - delay = time - end_time; -} - -// Noise - -static const short noise_period_table[16] = { - 0x004, 0x008, 0x010, 0x020, 0x040, 0x060, 0x080, 0x0A0, 0x0CA, 0x0FE, 0x17C, 0x1FC, 0x2FA, 0x3F8, 0x7F2, 0xFE4}; - -void Noise::run(nes_time_t time, nes_time_t end_time) -{ - int period = noise_period_table[regs[2] & 15]; -#if NES_APU_NOISE_LOW_CPU - if (period < 8) - { - period = 8; - } -#endif - - if (!output) - { - // TODO: clean up - time += delay; - delay = time + (end_time - time + period - 1) / period * period - end_time; - return; - } - - const int volume = this->volume(); - int amp = (noise & 1) ? volume : 0; - int delta = update_amp(amp); - if (delta) - synth.offset(time, delta, output); - - time += delay; - if (time < end_time) - { - const int mode_flag = 0x80; - - if (!volume) - { - // round to next multiple of period - time += (end_time - time + period - 1) / period * period; - - // approximate noise cycling while muted, by shuffling up noise register - // to do: precise muted noise cycling? - if (!(regs[2] & mode_flag)) - { - int feedback = (noise << 13) ^ (noise << 14); - noise = (feedback & 0x4000) | (noise >> 1); - } - } - else - { - Blip_Buffer *const output = this->output; - - // using resampled time avoids conversion in synth.offset() - blip_resampled_time_t rperiod = output->resampled_duration(period); - blip_resampled_time_t rtime = output->resampled_time(time); - - int noise = this->noise; - int delta = amp * 2 - volume; - const int tap = (regs[2] & mode_flag ? 8 : 13); - - do { - int feedback = (noise << tap) ^ (noise << 14); - time += period; - - if ((noise + 1) & 2) - { - // bits 0 and 1 of noise differ - delta = -delta; - synth.offset_resampled(rtime, delta, output); - } - - rtime += rperiod; - noise = (feedback & 0x4000) | (noise >> 1); - } while (time < end_time); - - last_amp = (delta + volume) >> 1; - this->noise = noise; - } - } - - delay = time - end_time; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/oscs.hpp b/quicknes/source/quickerNES/core/apu/oscs.hpp deleted file mode 100644 index c26a2673754..00000000000 --- a/quicknes/source/quickerNES/core/apu/oscs.hpp +++ /dev/null @@ -1,172 +0,0 @@ - -#pragma once - -// Private oscillators used by Apu -// Snd_Emu 0.1.7 - -#include "blipBuffer.hpp" - -namespace quickerNES -{ - -class Apu; - -typedef long nes_time_t; // CPU clock cycle count -typedef unsigned nes_addr_t; // 16-bit memory address - -struct Osc -{ - unsigned char regs[4]; - bool reg_written[4]; - Blip_Buffer *output; - int length_counter; // length counter (0 if unused by oscillator) - int delay; // delay until next (potential) transition - int last_amp; // last amplitude oscillator was outputting - - void clock_length(int halt_mask); - int period() const - { - return (regs[3] & 7) * 0x100 + (regs[2] & 0xff); - } - void reset() - { - delay = 0; - last_amp = 0; - } - int update_amp(int amp) - { - int delta = amp - last_amp; - last_amp = amp; - return delta; - } -}; - -struct Envelope : Osc -{ - int envelope; - int env_delay; - - void clock_envelope(); - int volume() const; - void reset() - { - envelope = 0; - env_delay = 0; - Osc::reset(); - } -}; - -// Square -struct Square : Envelope -{ - enum - { - negate_flag = 0x08 - }; - enum - { - shift_mask = 0x07 - }; - enum - { - phase_range = 8 - }; - int phase; - int sweep_delay; - - typedef Blip_Synth Synth; - Synth const &synth; // shared between squares - - Square(Synth const *s) : synth(*s) {} - - void clock_sweep(int adjust); - void run(nes_time_t, nes_time_t); - void reset() - { - sweep_delay = 0; - Envelope::reset(); - } - nes_time_t maintain_phase(nes_time_t time, nes_time_t end_time, nes_time_t timer_period); -}; - -// Triangle -struct Triangle : Osc -{ - enum - { - phase_range = 16 - }; - int phase; - int linear_counter; - Blip_Synth synth; - - int calc_amp() const; - void run(nes_time_t, nes_time_t); - void clock_linear_counter(); - void reset() - { - linear_counter = 0; - phase = 1; - Osc::reset(); - } - nes_time_t maintain_phase(nes_time_t time, nes_time_t end_time, nes_time_t timer_period); -}; - -// Noise -struct Noise : Envelope -{ - int noise; - Blip_Synth synth; - - void run(nes_time_t, nes_time_t); - void reset() - { - noise = 1 << 14; - Envelope::reset(); - } -}; - -// Dmc -struct Dmc : Osc -{ - int address; // address of next byte to read - int period; - // int length_counter; // bytes remaining to play (already defined in Osc) - int buf; - int bits_remain; - int bits; - bool buf_full; - bool silence; - - enum - { - loop_flag = 0x40 - }; - - int dac; - - nes_time_t next_irq; - bool irq_enabled; - bool irq_flag; - bool pal_mode; - bool nonlinear; - - int (*prg_reader)(void *, nes_addr_t); // needs to be initialized to prg read function - void *prg_reader_data; - - Apu *apu; - - Blip_Synth synth; - - void start(); - void write_register(int, int); - void run(nes_time_t, nes_time_t); - void recalc_irq(); - void fill_buffer(); - void reload_sample(); - void reset(); - int count_reads(nes_time_t, nes_time_t *) const; - nes_time_t next_read_time() const; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.cpp b/quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.cpp deleted file mode 100644 index 1ea2b44007c..00000000000 --- a/quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.cpp +++ /dev/null @@ -1,215 +0,0 @@ - -// Snd_Emu 0.1.7. http://www.slack.net/~ant/ - -#include "apu_vrc6.hpp" - -/* Copyright (C) 2003-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -Vrc6_Apu::Vrc6_Apu() -{ - output(0); - volume(1.0); - reset(); -} - -Vrc6_Apu::~Vrc6_Apu() -{ -} - -void Vrc6_Apu::reset() -{ - last_time = 0; - for (int i = 0; i < osc_count; i++) - { - Vrc6_Osc &osc = oscs[i]; - for (int j = 0; j < reg_count; j++) - osc.regs[j] = 0; - osc.delay = 0; - osc.last_amp = 0; - osc.phase = 1; - osc.amp = 0; - } -} - -void Vrc6_Apu::output(Blip_Buffer *buf) -{ - for (int i = 0; i < osc_count; i++) - osc_output(i, buf); -} - -void Vrc6_Apu::run_until(nes_time_t time) -{ - run_square(oscs[0], time); - run_square(oscs[1], time); - run_saw(time); - last_time = time; -} - -void Vrc6_Apu::write_osc(nes_time_t time, int osc_index, int reg, int data) -{ - run_until(time); - oscs[osc_index].regs[reg] = data; -} - -void Vrc6_Apu::end_frame(nes_time_t time) -{ - if (time > last_time) - run_until(time); - - last_time -= time; -} - -void Vrc6_Apu::save_state(vrc6_apu_state_t *out) const -{ - out->saw_amp = oscs[2].amp; - for (int i = 0; i < osc_count; i++) - { - Vrc6_Osc const &osc = oscs[i]; - for (int r = 0; r < reg_count; r++) - out->regs[i][r] = osc.regs[r]; - - out->delays[i] = osc.delay; - out->phases[i] = osc.phase; - } -} - -void Vrc6_Apu::load_state(vrc6_apu_state_t const &in) -{ - reset(); - oscs[2].amp = in.saw_amp; - for (int i = 0; i < osc_count; i++) - { - Vrc6_Osc &osc = oscs[i]; - for (int r = 0; r < reg_count; r++) - osc.regs[r] = in.regs[i][r]; - - osc.delay = in.delays[i]; - osc.phase = in.phases[i]; - } - if (!oscs[2].phase) - oscs[2].phase = 1; - - // Run sound channels for 0 cycles for clean audio after loading state - this->run_until(this->last_time); -} - -void Vrc6_Apu::run_square(Vrc6_Osc &osc, nes_time_t end_time) -{ - Blip_Buffer *output = osc.output; - if (!output) - return; - - int volume = osc.regs[0] & 15; - if (!(osc.regs[2] & 0x80)) - volume = 0; - - int gate = osc.regs[0] & 0x80; - int duty = ((osc.regs[0] >> 4) & 7) + 1; - int delta = ((gate || osc.phase < duty) ? volume : 0) - osc.last_amp; - nes_time_t time = last_time; - if (delta) - { - osc.last_amp += delta; - square_synth.offset(time, delta, output); - } - - time += osc.delay; - osc.delay = 0; - int period = osc.period(); - if (volume && !gate && period > 4) - { - if (time < end_time) - { - int phase = osc.phase; - - do - { - phase++; - if (phase == 16) - { - phase = 0; - osc.last_amp = volume; - square_synth.offset(time, volume, output); - } - if (phase == duty) - { - osc.last_amp = 0; - square_synth.offset(time, -volume, output); - } - time += period; - } while (time < end_time); - - osc.phase = phase; - } - osc.delay = time - end_time; - } -} - -void Vrc6_Apu::run_saw(nes_time_t end_time) -{ - Vrc6_Osc &osc = oscs[2]; - Blip_Buffer *output = osc.output; - if (!output) - return; - - int amp = osc.amp; - int amp_step = osc.regs[0] & 0x3F; - nes_time_t time = last_time; - int last_amp = osc.last_amp; - if (!(osc.regs[2] & 0x80) || !(amp_step | amp)) - { - osc.delay = 0; - int delta = (amp >> 3) - last_amp; - last_amp = amp >> 3; - saw_synth.offset(time, delta, output); - } - else - { - time += osc.delay; - if (time < end_time) - { - int period = osc.period() * 2; - int phase = osc.phase; - - do - { - if (--phase == 0) - { - phase = 7; - amp = 0; - } - - int delta = (amp >> 3) - last_amp; - if (delta) - { - last_amp = amp >> 3; - saw_synth.offset(time, delta, output); - } - - time += period; - amp = (amp + amp_step) & 0xFF; - } while (time < end_time); - - osc.phase = phase; - osc.amp = amp; - } - - osc.delay = time - end_time; - } - - osc.last_amp = last_amp; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.hpp b/quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.hpp deleted file mode 100644 index 40f03375cfc..00000000000 --- a/quicknes/source/quickerNES/core/apu/vrc6/apu_vrc6.hpp +++ /dev/null @@ -1,112 +0,0 @@ - -#pragma once - -// Konami VRC6 sound chip emulator -// Snd_Emu 0.1.7 - -#include "../apu.hpp" -#include "../blipBuffer.hpp" -#include - -namespace quickerNES -{ - -struct vrc6_apu_state_t; - -class Vrc6_Apu -{ - public: - Vrc6_Apu(); - ~Vrc6_Apu(); - - // See Apu.h for reference - void reset(); - void volume(double); - void treble_eq(blip_eq_t const &); - void output(Blip_Buffer *); - enum - { - osc_count = 3 - }; - void osc_output(int index, Blip_Buffer *); - void end_frame(nes_time_t); - void save_state(vrc6_apu_state_t *) const; - void load_state(vrc6_apu_state_t const &); - - // Oscillator 0 write-only registers are at $9000-$9002 - // Oscillator 1 write-only registers are at $A000-$A002 - // Oscillator 2 write-only registers are at $B000-$B002 - enum - { - reg_count = 3 - }; - enum - { - base_addr = 0x9000 - }; - enum - { - addr_step = 0x1000 - }; - void write_osc(nes_time_t, int osc, int reg, int data); - - private: - // noncopyable - Vrc6_Apu(const Vrc6_Apu &); - Vrc6_Apu &operator=(const Vrc6_Apu &); - - struct Vrc6_Osc - { - uint8_t regs[3]; - Blip_Buffer *output; - int delay; - int last_amp; - int phase; - int amp; // only used by saw - - int period() const - { - return (regs[2] & 0x0f) * 0x100L + regs[1] + 1; - } - }; - - Vrc6_Osc oscs[osc_count]; - nes_time_t last_time; - - Blip_Synth saw_synth; - Blip_Synth square_synth; - - void run_until(nes_time_t); - void run_square(Vrc6_Osc &osc, nes_time_t); - void run_saw(nes_time_t); -}; - -struct vrc6_apu_state_t -{ - uint8_t regs[3][3]; - uint8_t saw_amp; - uint16_t delays[3]; - uint8_t phases[3]; - uint8_t unused; -}; -static_assert(sizeof(vrc6_apu_state_t) == 20); - -inline void Vrc6_Apu::osc_output(int i, Blip_Buffer *buf) -{ - oscs[i].output = buf; -} - -inline void Vrc6_Apu::volume(double v) -{ - double const factor = 0.0967 * 2; - saw_synth.volume(factor / 31 * v); - square_synth.volume(factor * 0.5 / 15 * v); -} - -inline void Vrc6_Apu::treble_eq(blip_eq_t const &eq) -{ - saw_synth.treble_eq(eq); - square_synth.treble_eq(eq); -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.cpp b/quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.cpp deleted file mode 100644 index b9abb177ff9..00000000000 --- a/quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.cpp +++ /dev/null @@ -1,211 +0,0 @@ -#include "apu_vrc7.hpp" -#include "emu2413.hpp" -#include - -namespace quickerNES -{ - -#define BYTESWAP(xxxx) \ - { \ - uint32_t _temp = (uint32_t)(xxxx); \ - ((uint8_t *)&(xxxx))[0] = (uint8_t)((_temp) >> 24); \ - ((uint8_t *)&(xxxx))[1] = (uint8_t)((_temp) >> 16); \ - ((uint8_t *)&(xxxx))[2] = (uint8_t)((_temp) >> 8); \ - ((uint8_t *)&(xxxx))[3] = (uint8_t)((_temp) >> 0); \ - } - -static bool IsLittleEndian() -{ - int i = 42; - if (((char *)&i)[0] == 42) - { - return true; - } - return false; -} - -Vrc7::Vrc7() -{ - opll = OPLL_new(3579545); - output(NULL); - volume(1.0); - reset(); -} - -Vrc7::~Vrc7() -{ - OPLL_delete((OPLL *)opll); -} - -void Vrc7::reset() -{ - last_time = 0; - count = 0; - - for (int i = 0; i < osc_count; ++i) - { - Vrc7_Osc &osc = oscs[i]; - for (int j = 0; j < 3; ++j) - osc.regs[j] = 0; - osc.last_amp = 0; - } - - OPLL_reset((OPLL *)opll); -} - -void Vrc7::volume(double v) -{ - synth.volume(v * 1. / 3.); -} - -void Vrc7::treble_eq(blip_eq_t const &eq) -{ - synth.treble_eq(eq); -} - -void Vrc7::output(Blip_Buffer *buf) -{ - for (int i = 0; i < osc_count; i++) - osc_output(i, buf); -} - -void Vrc7::run_until(nes_time_t end_time) -{ - nes_time_t time = last_time; - - while (time < end_time) - { - if (++count == 36) - { - count = 0; - bool run = false; - for (unsigned i = 0; i < osc_count; ++i) - { - Vrc7_Osc &osc = oscs[i]; - if (osc.output) - { - if (!run) - { - run = true; - OPLL_run((OPLL *)opll); - } - int amp = OPLL_calcCh((OPLL *)opll, i); - int delta = amp - osc.last_amp; - if (delta) - { - osc.last_amp = amp; - synth.offset(time, delta, osc.output); - } - } - } - } - ++time; - } - - last_time = end_time; -} - -void Vrc7::write_reg(int data) -{ - OPLL_writeIO((OPLL *)opll, 0, data); -} - -void Vrc7::write_data(nes_time_t time, int data) -{ - if ((unsigned)(((OPLL *)opll)->adr - 0x10) < 0x36) - { - int type = ((OPLL *)opll)->adr >> 4; - int chan = ((OPLL *)opll)->adr & 15; - - if (chan < 6) oscs[chan].regs[type - 1] = data; - } - - run_until(time); - OPLL_writeIO((OPLL *)opll, 1, data); -} - -void Vrc7::end_frame(nes_time_t time) -{ - if (time > last_time) - run_until(time); - last_time -= time; -} - -void Vrc7::save_snapshot(vrc7_snapshot_t *out) -{ - out->latch = ((OPLL *)opll)->adr; - memcpy(out->inst, ((OPLL *)opll)->CustInst, 8); - for (int i = 0; i < osc_count; ++i) - { - for (int j = 0; j < 3; ++j) - { - out->regs[i][j] = oscs[i].regs[j]; - } - } - out->count = count; - out->internal_opl_state_size = sizeof(OPLL_STATE); - if (!IsLittleEndian()) - { - BYTESWAP(out->internal_opl_state_size); - } - OPLL_serialize((OPLL *)opll, &(out->internal_opl_state)); - OPLL_state_byteswap(&(out->internal_opl_state)); -} - -void Vrc7::load_snapshot(vrc7_snapshot_t &in, int dataSize) -{ - reset(); - write_reg(in.latch); - int i; - for (i = 0; i < osc_count; ++i) - { - for (int j = 0; j < 3; ++j) - { - oscs[i].regs[j] = in.regs[i][j]; - } - } - count = in.count; - - for (i = 0; i < 8; ++i) - { - OPLL_writeReg((OPLL *)opll, i, in.inst[i]); - } - - for (i = 0; i < 3; ++i) - { - for (int j = 0; j < 6; ++j) - { - OPLL_writeReg((OPLL *)opll, 0x10 + i * 0x10 + j, oscs[j].regs[i]); - } - } - if (!IsLittleEndian()) - { - BYTESWAP(in.internal_opl_state_size); - } - if (in.internal_opl_state_size == sizeof(OPLL_STATE)) - { - OPLL_state_byteswap(&(in.internal_opl_state)); - OPLL_deserialize((OPLL *)opll, &(in.internal_opl_state)); - } - update_last_amp(); -} - -void Vrc7::update_last_amp() -{ - for (unsigned i = 0; i < osc_count; ++i) - { - Vrc7_Osc &osc = oscs[i]; - if (osc.output) - { - int amp = OPLL_calcCh((OPLL *)opll, i); - int delta = amp - osc.last_amp; - if (delta) - { - osc.last_amp = amp; - synth.offset(last_time, delta, osc.output); - } - } - } -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.hpp b/quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.hpp deleted file mode 100644 index 4b340362614..00000000000 --- a/quicknes/source/quickerNES/core/apu/vrc7/apu_vrc7.hpp +++ /dev/null @@ -1,79 +0,0 @@ - -#pragma once - -// Konami VRC7 sound chip emulator -// Snd_Emu 0.1.7. Copyright (C) 2003-2005 Shay Green. GNU LGPL license. - -#include "../blipBuffer.hpp" -#include "emu2413_state.hpp" -#include - -namespace quickerNES -{ - -struct vrc7_snapshot_t; -typedef long nes_time_t; - -class Vrc7 -{ - public: - Vrc7(); - ~Vrc7(); - - // See Apu.h for reference - void reset(); - void volume(double); - void treble_eq(blip_eq_t const &); - void output(Blip_Buffer *); - enum - { - osc_count = 6 - }; - void osc_output(int index, Blip_Buffer *); - void end_frame(nes_time_t); - void save_snapshot(vrc7_snapshot_t *); - void load_snapshot(vrc7_snapshot_t &, int dataSize); - void update_last_amp(); - - void write_reg(int reg); - void write_data(nes_time_t, int data); - - private: - // noncopyable - Vrc7(const Vrc7 &); - Vrc7 &operator=(const Vrc7 &); - - struct Vrc7_Osc - { - uint8_t regs[3]; - Blip_Buffer *output; - int last_amp; - }; - - void *opll; - nes_time_t last_time; - - Blip_Synth synth; // DB2LIN_AMP_BITS == 11, * 2 - int count; - Vrc7_Osc oscs[osc_count]; - - void run_until(nes_time_t); -}; - -struct vrc7_snapshot_t -{ - uint8_t latch; - uint8_t inst[8]; - uint8_t regs[6][3]; - uint8_t count; - int internal_opl_state_size; - OPLL_STATE internal_opl_state; -}; -static_assert(sizeof(vrc7_snapshot_t) == 28 + 440 + 4); - -inline void Vrc7::osc_output(int i, Blip_Buffer *buf) -{ - oscs[i].output = buf; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc7/emu2413.cpp b/quicknes/source/quickerNES/core/apu/vrc7/emu2413.cpp deleted file mode 100644 index deca0d74dd5..00000000000 --- a/quicknes/source/quickerNES/core/apu/vrc7/emu2413.cpp +++ /dev/null @@ -1,1155 +0,0 @@ -/* -Permission is granted to anyone to use this software for any purpose, -including commercial applications. To alter this software and redistribute it freely, -if the origin of this software is not misrepresented. -*/ - -/* This software has been heavily modified for VRC7. To get a stock YM2413 emulator, download - MSXplug. -*/ - -/*********************************************************************************** - - emu2413.c -- YM2413 emulator written by Mitsutaka Okazaki 2001 - - 2001 01-08 : Version 0.10 -- 1st version. - 2001 01-15 : Version 0.20 -- semi-public version. - 2001 01-16 : Version 0.30 -- 1st public version. - 2001 01-17 : Version 0.31 -- Fixed bassdrum problem. - : Version 0.32 -- LPF implemented. - 2001 01-18 : Version 0.33 -- Fixed the drum problem, refine the mix-down method. - -- Fixed the LFO bug. - 2001 01-24 : Version 0.35 -- Fixed the drum problem, - support undocumented EG behavior. - 2001 02-02 : Version 0.38 -- Improved the performance. - Fixed the hi-hat and cymbal model. - Fixed the default percussive datas. - Noise reduction. - Fixed the feedback problem. - 2001 03-03 : Version 0.39 -- Fixed some drum bugs. - Improved the performance. - 2001 03-04 : Version 0.40 -- Improved the feedback. - Change the default table size. - Clock and Rate can be changed during play. - 2001 06-24 : Version 0.50 -- Improved the hi-hat and the cymbal tone. - Added VRC7 patch (OPLL_reset_patch is changed). - Fixed OPLL_reset() bug. - Added OPLL_setMask, OPLL_getMask and OPLL_toggleMask. - Added OPLL_writeIO. - 2001 09-28 : Version 0.51 -- Removed the noise table. - 2002 01-28 : Version 0.52 -- Added Stereo mode. - 2002 02-07 : Version 0.53 -- Fixed some drum bugs. - 2002 02-20 : Version 0.54 -- Added the best quality mode. - 2002 03-02 : Version 0.55 -- Removed OPLL_init & OPLL_close. - 2002 05-30 : Version 0.60 -- Fixed HH&CYM generator and all voice datas. - - 2004 01-24 : Modified by xodnizel to remove code not needed for the VRC7, among other things. - - References: - fmopl.c -- 1999,2000 written by Tatsuyuki Satoh (MAME development). - fmopl.c(fixed) -- (C) 2002 Jarek Burczynski. - s_opl.c -- 2001 written by Mamiya (NEZplug development). - fmgen.cpp -- 1999,2000 written by cisc. - fmpac.ill -- 2000 created by NARUTO. - MSX-Datapack - YMU757 data sheet - YM2143 data sheet - -**************************************************************************************/ -#include "emu2413.hpp" -#include -#include -#include - -namespace quickerNES -{ - -static const unsigned char default_inst[15][8] = { - /* 2019-03-19 VRC7 instrument patchset dumped by Nuke.YKT */ - /* https://wiki.nesdev.com/w/index.php/VRC7_audio */ - {0x03, 0x21, 0x05, 0x06, 0xE8, 0x81, 0x42, 0x27}, - {0x13, 0x41, 0x14, 0x0D, 0xD8, 0xF6, 0x23, 0x12}, - {0x11, 0x11, 0x08, 0x08, 0xFA, 0xB2, 0x20, 0x12}, - {0x31, 0x61, 0x0C, 0x07, 0xA8, 0x64, 0x61, 0x27}, - {0x32, 0x21, 0x1E, 0x06, 0xE1, 0x76, 0x01, 0x28}, - {0x02, 0x01, 0x06, 0x00, 0xA3, 0xE2, 0xF4, 0xF4}, - {0x21, 0x61, 0x1D, 0x07, 0x82, 0x81, 0x11, 0x07}, - {0x23, 0x21, 0x22, 0x17, 0xA2, 0x72, 0x01, 0x17}, - {0x35, 0x11, 0x25, 0x00, 0x40, 0x73, 0x72, 0x01}, - {0xB5, 0x01, 0x0F, 0x0F, 0xA8, 0xA5, 0x51, 0x02}, - {0x17, 0xC1, 0x24, 0x07, 0xF8, 0xF8, 0x22, 0x12}, - {0x71, 0x23, 0x11, 0x06, 0x65, 0x74, 0x18, 0x16}, - {0x01, 0x02, 0xD3, 0x05, 0xC9, 0x95, 0x03, 0x02}, - {0x61, 0x63, 0x0C, 0x00, 0x94, 0xC0, 0x33, 0xF6}, - {0x21, 0x72, 0x0D, 0x00, 0xC1, 0xD5, 0x56, 0x06}}; - -#define EG2DB(d) ((d) * (e_int32)(EG_STEP / DB_STEP)) -#define TL2EG(d) ((d) * (e_int32)(TL_STEP / EG_STEP)) -#define SL2EG(d) ((d) * (e_int32)(SL_STEP / EG_STEP)) - -#define DB_POS(x) (e_uint32)((x) / DB_STEP) -#define DB_NEG(x) (e_uint32)(DB_MUTE + DB_MUTE + (x) / DB_STEP) - -/* Bits for liner value */ -#define DB2LIN_AMP_BITS 11 -#define SLOT_AMP_BITS (DB2LIN_AMP_BITS) - -/* Bits for envelope phase incremental counter */ -#define EG_DP_BITS 22 -#define EG_DP_WIDTH (1 << EG_DP_BITS) - -/* PM table is calcurated by PM_AMP * pow(2,PM_DEPTH*sin(x)/1200) */ -#define PM_AMP_BITS 8 -#define PM_AMP (1 << PM_AMP_BITS) - -/* PM speed(Hz) and depth(cent) */ -#define PM_SPEED 6.4 -#define PM_DEPTH 13.75 - -/* AM speed(Hz) and depth(dB) */ -#define AM_SPEED 3.7 -// #define AM_DEPTH 4.8 -#define AM_DEPTH 2.4 - -/* Cut the lower b bit(s) off. */ -#define HIGHBITS(c, b) ((c) >> (b)) - -/* Leave the lower b bit(s). */ -#define LOWBITS(c, b) ((c) & ((1 << (b)) - 1)) - -/* Expand x which is s bits to d bits. */ -#define EXPAND_BITS(x, s, d) ((x) << ((d) - (s))) - -/* Expand x which is s bits to d bits and fill expanded bits '1' */ -#define EXPAND_BITS_X(x, s, d) (((x) << ((d) - (s))) | ((1 << ((d) - (s))) - 1)) - -#define MOD(o, x) (&(o)->slot[(x) << 1]) -#define CAR(o, x) (&(o)->slot[((x) << 1) | 1]) - -#define BIT(s, b) (((s) >> (b)) & 1) - -/* Definition of envelope mode */ -enum -{ - SETTLE, - ATTACK, - DECAY, - SUSHOLD, - SUSTINE, - RELEASE, - FINISH -}; - -/*************************************************** - - Create tables - -****************************************************/ -INLINE static e_int32 Min(e_int32 i, e_int32 j) -{ - if (i < j) - return i; - else - return j; -} - -/* Table for AR to LogCurve. */ -static void makeAdjustTable(OPLL *opll) -{ - e_int32 i; - - opll->AR_ADJUST_TABLE[0] = (1 << EG_BITS); - for (i = 1; i < 128; i++) - opll->AR_ADJUST_TABLE[i] = (e_uint16)((double)(1 << EG_BITS) - 1 - (1 << EG_BITS) * log((double)i) / log(128.)); -} - -/* Table for dB(0 -- (1<DB2LIN_TABLE[i] = (e_int16)((double)((1 << DB2LIN_AMP_BITS) - 1) * powf(10, -(double)i * DB_STEP / 20)); - if (i >= DB_MUTE) opll->DB2LIN_TABLE[i] = 0; - opll->DB2LIN_TABLE[i + DB_MUTE + DB_MUTE] = (e_int16)(-opll->DB2LIN_TABLE[i]); - } -} - -/* Liner(+0.0 - +1.0) to dB((1<fullsintable[i] = (e_uint32)lin2db(sin(2.0 * PI * i / PG_WIDTH)); - } - - for (i = 0; i < PG_WIDTH / 4; i++) - { - opll->fullsintable[PG_WIDTH / 2 - 1 - i] = opll->fullsintable[i]; - } - - for (i = 0; i < PG_WIDTH / 2; i++) - { - opll->fullsintable[PG_WIDTH / 2 + i] = (e_uint32)(DB_MUTE + DB_MUTE + opll->fullsintable[i]); - } - - for (i = 0; i < PG_WIDTH / 2; i++) - opll->halfsintable[i] = opll->fullsintable[i]; - for (i = PG_WIDTH / 2; i < PG_WIDTH; i++) - opll->halfsintable[i] = opll->fullsintable[0]; -} - -/* Table for Pitch Modulator */ -static void makePmTable(OPLL *opll) -{ - e_int32 i; - - for (i = 0; i < PM_PG_WIDTH; i++) - opll->pmtable[i] = (e_int32)((double)PM_AMP * powf(2, (double)PM_DEPTH * sin(2.0 * PI * i / PM_PG_WIDTH) / 1200)); -} - -/* Table for Amp Modulator */ -static void makeAmTable(OPLL *opll) -{ - e_int32 i; - - for (i = 0; i < AM_PG_WIDTH; i++) - opll->amtable[i] = (e_int32)((double)AM_DEPTH / 2 / DB_STEP * (1.0 + sin(2.0 * PI * i / PM_PG_WIDTH))); -} - -/* Phase increment counter table */ -static void makeDphaseTable(OPLL *opll) -{ - e_uint32 fnum, block, ML; - e_uint32 mltable[16] = - {1, 1 * 2, 2 * 2, 3 * 2, 4 * 2, 5 * 2, 6 * 2, 7 * 2, 8 * 2, 9 * 2, 10 * 2, 10 * 2, 12 * 2, 12 * 2, 15 * 2, 15 * 2}; - - for (fnum = 0; fnum < 512; fnum++) - for (block = 0; block < 8; block++) - for (ML = 0; ML < 16; ML++) - opll->dphaseTable[fnum][block][ML] = (((fnum * mltable[ML]) << block) >> (20 - DP_BITS)); -} - -static void makeTllTable(OPLL *opll) -{ -#define dB2(x) ((x) * 2) - - static const double kltable[16] = { - dB2(0.000), dB2(9.000), dB2(12.000), dB2(13.875), dB2(15.000), dB2(16.125), dB2(16.875), dB2(17.625), dB2(18.000), dB2(18.750), dB2(19.125), dB2(19.500), dB2(19.875), dB2(20.250), dB2(20.625), dB2(21.000)}; - - e_int32 tmp; - e_int32 fnum, block, TL, KL; - - for (fnum = 0; fnum < 16; fnum++) - for (block = 0; block < 8; block++) - for (TL = 0; TL < 64; TL++) - for (KL = 0; KL < 4; KL++) - { - if (KL == 0) - { - opll->tllTable[fnum][block][TL][KL] = TL2EG(TL); - } - else - { - tmp = (e_int32)(kltable[fnum] - dB2(3.000) * (7 - block)); - if (tmp <= 0) - opll->tllTable[fnum][block][TL][KL] = TL2EG(TL); - else - opll->tllTable[fnum][block][TL][KL] = (e_uint32)((tmp >> (3 - KL)) / EG_STEP) + TL2EG(TL); - } - } -} - -#ifdef USE_SPEC_ENV_SPEED -static const double attacktime[16][4] = { - {0, 0, 0, 0}, - {1730.15, 1400.60, 1153.43, 988.66}, - {865.08, 700.30, 576.72, 494.33}, - {432.54, 350.15, 288.36, 247.16}, - {216.27, 175.07, 144.18, 123.58}, - {108.13, 87.54, 72.09, 61.79}, - {54.07, 43.77, 36.04, 30.90}, - {27.03, 21.88, 18.02, 15.45}, - {13.52, 10.94, 9.01, 7.72}, - {6.76, 5.47, 4.51, 3.86}, - {3.38, 2.74, 2.25, 1.93}, - {1.69, 1.37, 1.13, 0.97}, - {0.84, 0.70, 0.60, 0.54}, - {0.50, 0.42, 0.34, 0.30}, - {0.28, 0.22, 0.18, 0.14}, - {0.00, 0.00, 0.00, 0.00}}; - -static const double decaytime[16][4] = { - {0, 0, 0, 0}, - {20926.60, 16807.20, 14006.00, 12028.60}, - {10463.30, 8403.58, 7002.98, 6014.32}, - {5231.64, 4201.79, 3501.49, 3007.16}, - {2615.82, 2100.89, 1750.75, 1503.58}, - {1307.91, 1050.45, 875.37, 751.79}, - {653.95, 525.22, 437.69, 375.90}, - {326.98, 262.61, 218.84, 187.95}, - {163.49, 131.31, 109.42, 93.97}, - {81.74, 65.65, 54.71, 46.99}, - {40.87, 32.83, 27.36, 23.49}, - {20.44, 16.41, 13.68, 11.75}, - {10.22, 8.21, 6.84, 5.87}, - {5.11, 4.10, 3.42, 2.94}, - {2.55, 2.05, 1.71, 1.47}, - {1.27, 1.27, 1.27, 1.27}}; -#endif - -/* Rate Table for Attack */ -static void makeDphaseARTable(OPLL *opll) -{ - e_int32 AR, Rks, RM, RL; -#ifdef USE_SPEC_ENV_SPEED - e_uint32 attacktable[16][4]; - - for (RM = 0; RM < 16; RM++) - for (RL = 0; RL < 4; RL++) - { - if (RM == 0) - attacktable[RM][RL] = 0; - else if (RM == 15) - attacktable[RM][RL] = EG_DP_WIDTH; - else - attacktable[RM][RL] = (e_uint32)((double)(1 << EG_DP_BITS) / (attacktime[RM][RL] * 3579545 / 72000)); - } -#endif - - for (AR = 0; AR < 16; AR++) - for (Rks = 0; Rks < 16; Rks++) - { - RM = AR + (Rks >> 2); - RL = Rks & 3; - if (RM > 15) - RM = 15; - switch (AR) - { - case 0: - opll->dphaseARTable[AR][Rks] = 0; - break; - case 15: - opll->dphaseARTable[AR][Rks] = 0; /*EG_DP_WIDTH;*/ - break; - default: -#ifdef USE_SPEC_ENV_SPEED - opll->dphaseARTable[AR][Rks] = (attacktable[RM][RL]); -#else - opll->dphaseARTable[AR][Rks] = ((3 * (RL + 4) << (RM + 1))); -#endif - break; - } - } -} - -/* Rate Table for Decay and Release */ -static void makeDphaseDRTable(OPLL *opll) -{ - e_int32 DR, Rks, RM, RL; - -#ifdef USE_SPEC_ENV_SPEED - e_uint32 decaytable[16][4]; - - for (RM = 0; RM < 16; RM++) - for (RL = 0; RL < 4; RL++) - if (RM == 0) - decaytable[RM][RL] = 0; - else - decaytable[RM][RL] = (e_uint32)((double)(1 << EG_DP_BITS) / (decaytime[RM][RL] * 3579545 / 72000)); -#endif - - for (DR = 0; DR < 16; DR++) - for (Rks = 0; Rks < 16; Rks++) - { - RM = DR + (Rks >> 2); - RL = Rks & 3; - if (RM > 15) - RM = 15; - switch (DR) - { - case 0: - opll->dphaseDRTable[DR][Rks] = 0; - break; - default: -#ifdef USE_SPEC_ENV_SPEED - opll->dphaseDRTable[DR][Rks] = (decaytable[RM][RL]); -#else - opll->dphaseDRTable[DR][Rks] = ((RL + 4) << (RM - 1)); -#endif - break; - } - } -} - -static void makeRksTable(OPLL *opll) -{ - e_int32 fnum8, block, KR; - - for (fnum8 = 0; fnum8 < 2; fnum8++) - for (block = 0; block < 8; block++) - for (KR = 0; KR < 2; KR++) - { - if (KR != 0) - opll->rksTable[fnum8][block][KR] = (block << 1) + fnum8; - else - opll->rksTable[fnum8][block][KR] = block >> 1; - } -} - -/************************************************************ - - Calc Parameters - -************************************************************/ - -INLINE static e_uint32 calc_eg_dphase(OPLL *opll, OPLL_SLOT *slot) -{ - switch (slot->eg_mode) - { - case ATTACK: - return opll->dphaseARTable[slot->patch.AR][slot->rks]; - - case DECAY: - return opll->dphaseDRTable[slot->patch.DR][slot->rks]; - - case SUSHOLD: - return 0; - - case SUSTINE: - return opll->dphaseDRTable[slot->patch.RR][slot->rks]; - - case RELEASE: - if (slot->sustine) - return opll->dphaseDRTable[5][slot->rks]; - else if (slot->patch.EG) - return opll->dphaseDRTable[slot->patch.RR][slot->rks]; - else - return opll->dphaseDRTable[7][slot->rks]; - - case FINISH: - return 0; - - default: - return 0; - } -} - -/************************************************************* - - OPLL internal interfaces - -*************************************************************/ - -#define UPDATE_PG(S) (S)->dphase = opll->dphaseTable[(S)->fnum][(S)->block][(S)->patch.ML] -#define UPDATE_TLL(S) \ - (((S)->type == 0) ? ((S)->tll = opll->tllTable[((S)->fnum) >> 5][(S)->block][(S)->patch.TL][(S)->patch.KL]) : ((S)->tll = opll->tllTable[((S)->fnum) >> 5][(S)->block][(S)->volume][(S)->patch.KL])) -#define UPDATE_RKS(S) (S)->rks = opll->rksTable[((S)->fnum) >> 8][(S)->block][(S)->patch.KR] -#define UPDATE_WF(S) (S)->sintbl = opll->waveform[(S)->patch.WF] -#define UPDATE_EG(S) (S)->eg_dphase = calc_eg_dphase(opll, S) -#define UPDATE_ALL(S) \ - UPDATE_PG(S); \ - UPDATE_TLL(S); \ - UPDATE_RKS(S); \ - UPDATE_WF(S); \ - UPDATE_EG(S) /* EG should be updated last. */ - -/* Slot key on */ -INLINE static void slotOn(OPLL_SLOT *slot) -{ - slot->eg_mode = ATTACK; - slot->eg_phase = 0; - slot->phase = 0; -} - -/* Slot key off */ -INLINE static void slotOff(OPLL *opll, OPLL_SLOT *slot) -{ - if (slot->eg_mode == ATTACK) - slot->eg_phase = EXPAND_BITS(opll->AR_ADJUST_TABLE[HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS)], EG_BITS, EG_DP_BITS); - slot->eg_mode = RELEASE; -} - -/* Channel key on */ -INLINE static void keyOn(OPLL *opll, e_int32 i) -{ - if (!opll->slot_on_flag[i * 2]) - slotOn(MOD(opll, i)); - if (!opll->slot_on_flag[i * 2 + 1]) - slotOn(CAR(opll, i)); - opll->key_status[i] = 1; -} - -/* Channel key off */ -INLINE static void keyOff(OPLL *opll, e_int32 i) -{ - if (opll->slot_on_flag[i * 2 + 1]) - slotOff(opll, CAR(opll, i)); - opll->key_status[i] = 0; -} - -/* Set sustine parameter */ -INLINE static void setSustine(OPLL *opll, e_int32 c, e_int32 sustine) -{ - CAR(opll, c)->sustine = sustine; - if (MOD(opll, c)->type) - MOD(opll, c)->sustine = sustine; -} - -/* Volume : 6bit ( Volume register << 2 ) */ -INLINE static void setVolume(OPLL *opll, e_int32 c, e_int32 volume) -{ - CAR(opll, c)->volume = volume; -} - -/* Set F-Number ( fnum : 9bit ) */ -INLINE static void setFnumber(OPLL *opll, e_int32 c, e_int32 fnum) -{ - CAR(opll, c)->fnum = fnum; - MOD(opll, c)->fnum = fnum; -} - -/* Set Block data (block : 3bit ) */ -INLINE static void setBlock(OPLL *opll, e_int32 c, e_int32 block) -{ - CAR(opll, c)->block = block; - MOD(opll, c)->block = block; -} - -INLINE static void update_key_status(OPLL *opll) -{ - int ch; - - for (ch = 0; ch < 6; ch++) - opll->slot_on_flag[ch * 2] = opll->slot_on_flag[ch * 2 + 1] = (opll->HiFreq[ch]) & 0x10; -} - -/*********************************************************** - - Initializing - -***********************************************************/ - -static void OPLL_SLOT_reset(OPLL *opll, OPLL_SLOT *slot, int type) -{ - slot->type = type; - slot->sintbl = opll->waveform[0]; - slot->phase = 0; - slot->dphase = 0; - slot->output[0] = 0; - slot->output[1] = 0; - slot->feedback = 0; - slot->eg_mode = SETTLE; - slot->eg_phase = EG_DP_WIDTH; - slot->eg_dphase = 0; - slot->rks = 0; - slot->tll = 0; - slot->sustine = 0; - slot->fnum = 0; - slot->block = 0; - slot->volume = 0; - slot->pgout = 0; - slot->egout = 0; -} - -static void internal_refresh(OPLL *opll) -{ - makeDphaseTable(opll); - makeDphaseARTable(opll); - makeDphaseDRTable(opll); - opll->pm_dphase = (e_uint32)(PM_SPEED * PM_DP_WIDTH / (opll->clk / 72)); - opll->am_dphase = (e_uint32)(AM_SPEED * AM_DP_WIDTH / (opll->clk / 72)); -} - -static void maketables(OPLL *opll, e_uint32 c) -{ - opll->clk = c; - makePmTable(opll); - makeAmTable(opll); - makeDB2LinTable(opll); - makeAdjustTable(opll); - makeTllTable(opll); - makeRksTable(opll); - makeSinTable(opll); - // makeDefaultPatch (); - internal_refresh(opll); -} - -OPLL *OPLL_new(e_uint32 clk) -{ - OPLL *opll; - - opll = (OPLL *)calloc(sizeof(OPLL), 1); - if (opll == NULL) - return NULL; - maketables(opll, clk); - - opll->waveform[0] = opll->fullsintable; - opll->waveform[1] = opll->halfsintable; - - opll->mask = 0; - - OPLL_reset(opll); - - return opll; -} - -void OPLL_delete(OPLL *opll) -{ - free(opll); -} - -/* Reset whole of OPLL except patch datas. */ -void OPLL_reset(OPLL *opll) -{ - e_int32 i; - - if (!opll) - return; - - opll->adr = 0; - opll->out = 0; - - opll->pm_phase = 0; - opll->am_phase = 0; - - opll->mask = 0; - - for (i = 0; i < 12; i++) - OPLL_SLOT_reset(opll, &opll->slot[i], i % 2); - - for (i = 0; i < 6; i++) - { - opll->key_status[i] = 0; - // setPatch (opll, i, 0); - } - - for (i = 0; i < 0x40; i++) - OPLL_writeReg(opll, i, 0); -} - -/* Force Refresh (When external program changes some parameters). */ -void OPLL_forceRefresh(OPLL *opll) -{ - e_int32 i; - - if (opll == NULL) - return; - - for (i = 0; i < 12; i++) - { - UPDATE_PG(&opll->slot[i]); - UPDATE_RKS(&opll->slot[i]); - UPDATE_TLL(&opll->slot[i]); - UPDATE_WF(&opll->slot[i]); - UPDATE_EG(&opll->slot[i]); - } -} - -/********************************************************* - - Generate wave data - -*********************************************************/ -/* Convert Amp(0 to EG_HEIGHT) to Phase(0 to 2PI). */ -#if (SLOT_AMP_BITS - PG_BITS) > 0 - #define wave2_2pi(e) ((e) >> (SLOT_AMP_BITS - PG_BITS)) -#else - #define wave2_2pi(e) ((e) << (PG_BITS - SLOT_AMP_BITS)) -#endif - -/* Convert Amp(0 to EG_HEIGHT) to Phase(0 to 4PI). */ -#if (SLOT_AMP_BITS - PG_BITS - 1) == 0 - #define wave2_4pi(e) (e) -#elif (SLOT_AMP_BITS - PG_BITS - 1) > 0 - #define wave2_4pi(e) ((e) >> (SLOT_AMP_BITS - PG_BITS - 1)) -#else - #define wave2_4pi(e) ((e) << (1 + PG_BITS - SLOT_AMP_BITS)) -#endif - -/* Convert Amp(0 to EG_HEIGHT) to Phase(0 to 8PI). */ -#if (SLOT_AMP_BITS - PG_BITS - 2) == 0 - #define wave2_8pi(e) (e) -#elif (SLOT_AMP_BITS - PG_BITS - 2) > 0 - #define wave2_8pi(e) ((e) >> (SLOT_AMP_BITS - PG_BITS - 2)) -#else - #define wave2_8pi(e) ((e) << (2 + PG_BITS - SLOT_AMP_BITS)) -#endif - -/* Update AM, PM unit */ -static void update_ampm(OPLL *opll) -{ - opll->pm_phase = (opll->pm_phase + opll->pm_dphase) & (PM_DP_WIDTH - 1); - opll->am_phase = (opll->am_phase + opll->am_dphase) & (AM_DP_WIDTH - 1); - opll->lfo_am = opll->amtable[HIGHBITS(opll->am_phase, AM_DP_BITS - AM_PG_BITS)]; - opll->lfo_pm = opll->pmtable[HIGHBITS(opll->pm_phase, PM_DP_BITS - PM_PG_BITS)]; -} - -/* PG */ -INLINE static void -calc_phase(OPLL_SLOT *slot, e_int32 lfo) -{ - if (slot->patch.PM) - slot->phase += (slot->dphase * lfo) >> PM_AMP_BITS; - else - slot->phase += slot->dphase; - - slot->phase &= (DP_WIDTH - 1); - - slot->pgout = HIGHBITS(slot->phase, DP_BASE_BITS); -} - -/* EG */ -static void calc_envelope(OPLL *opll, OPLL_SLOT *slot, e_int32 lfo) -{ -#define S2E(x) (SL2EG((e_int32)(x / SL_STEP)) << (EG_DP_BITS - EG_BITS)) - - static const e_uint32 SL[16] = { - S2E(0.0), S2E(3.0), S2E(6.0), S2E(9.0), S2E(12.0), S2E(15.0), S2E(18.0), S2E(21.0), S2E(24.0), S2E(27.0), S2E(30.0), S2E(33.0), S2E(36.0), S2E(39.0), S2E(42.0), S2E(48.0)}; - - e_uint32 egout; - - switch (slot->eg_mode) - { - case ATTACK: - egout = opll->AR_ADJUST_TABLE[HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS)]; - slot->eg_phase += slot->eg_dphase; - if ((EG_DP_WIDTH & slot->eg_phase) || (slot->patch.AR == 15)) - { - egout = 0; - slot->eg_phase = 0; - slot->eg_mode = DECAY; - UPDATE_EG(slot); - } - break; - - case DECAY: - egout = HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS); - slot->eg_phase += slot->eg_dphase; - if (slot->eg_phase >= SL[slot->patch.SL]) - { - if (slot->patch.EG) - { - slot->eg_phase = SL[slot->patch.SL]; - slot->eg_mode = SUSHOLD; - UPDATE_EG(slot); - } - else - { - slot->eg_phase = SL[slot->patch.SL]; - slot->eg_mode = SUSTINE; - UPDATE_EG(slot); - } - } - break; - - case SUSHOLD: - egout = HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS); - if (slot->patch.EG == 0) - { - slot->eg_mode = SUSTINE; - UPDATE_EG(slot); - } - break; - - case SUSTINE: - case RELEASE: - egout = HIGHBITS(slot->eg_phase, EG_DP_BITS - EG_BITS); - slot->eg_phase += slot->eg_dphase; - if (egout >= (1 << EG_BITS)) - { - slot->eg_mode = FINISH; - egout = (1 << EG_BITS) - 1; - } - break; - - case FINISH: - egout = (1 << EG_BITS) - 1; - break; - - default: - egout = (1 << EG_BITS) - 1; - break; - } - - if (slot->patch.AM) - egout = EG2DB(egout + slot->tll) + lfo; - else - egout = EG2DB(egout + slot->tll); - - if (egout >= DB_MUTE) - egout = DB_MUTE - 1; - - slot->egout = egout; -} - -/* CARRIOR */ -INLINE static e_int32 calc_slot_car(OPLL *opll, OPLL_SLOT *slot, e_int32 fm) -{ - slot->output[1] = slot->output[0]; - - if (slot->egout >= (DB_MUTE - 1)) - { - slot->output[0] = 0; - } - else - { - slot->output[0] = opll->DB2LIN_TABLE[slot->sintbl[(slot->pgout + wave2_8pi(fm)) & (PG_WIDTH - 1)] + slot->egout]; - } - - return (slot->output[1] + slot->output[0]) >> 1; -} - -/* MODULATOR */ -INLINE static e_int32 calc_slot_mod(OPLL *opll, OPLL_SLOT *slot) -{ - e_int32 fm; - - slot->output[1] = slot->output[0]; - - if (slot->egout >= (DB_MUTE - 1)) - { - slot->output[0] = 0; - } - else if (slot->patch.FB != 0) - { - fm = wave2_4pi(slot->feedback) >> (7 - slot->patch.FB); - slot->output[0] = opll->DB2LIN_TABLE[slot->sintbl[(slot->pgout + fm) & (PG_WIDTH - 1)] + slot->egout]; - } - else - { - slot->output[0] = opll->DB2LIN_TABLE[slot->sintbl[slot->pgout] + slot->egout]; - } - - slot->feedback = (slot->output[1] + slot->output[0]) >> 1; - - return slot->feedback; -} - -static INLINE e_int16 calc(OPLL *opll) -{ - e_int32 inst = 0, out = 0; - e_int32 i; - - update_ampm(opll); - - for (i = 0; i < 12; i++) - { - calc_phase(&opll->slot[i], opll->lfo_pm); - calc_envelope(opll, &opll->slot[i], opll->lfo_am); - } - - for (i = 0; i < 6; i++) - if (!(opll->mask & OPLL_MASK_CH(i)) && (CAR(opll, i)->eg_mode != FINISH)) - inst += calc_slot_car(opll, CAR(opll, i), calc_slot_mod(opll, MOD(opll, i))); - - out = inst; - return (e_int16)out; -} - -static INLINE void run(OPLL *opll) -{ - e_int32 i; - - update_ampm(opll); - - for (i = 0; i < 12; i++) - { - calc_phase(&opll->slot[i], opll->lfo_pm); - calc_envelope(opll, &opll->slot[i], opll->lfo_am); - } -} - -static INLINE e_int16 calc_ch(OPLL *opll, int ch) -{ - if (/*!(opll->mask & OPLL_MASK_CH (i)) &&*/ (CAR(opll, ch)->eg_mode != FINISH)) - return calc_slot_car(opll, CAR(opll, ch), calc_slot_mod(opll, MOD(opll, ch))); - else - return 0; -} - -e_int16 OPLL_calc(OPLL *opll) -{ - return calc(opll); -} - -void OPLL_run(OPLL *opll) -{ - run(opll); -} - -e_uint32 OPLL_calcCh(OPLL *opll, e_uint32 ch) -{ - return calc_ch(opll, ch); -} - -e_uint32 -OPLL_setMask(OPLL *opll, e_uint32 mask) -{ - e_uint32 ret; - - if (opll) - { - ret = opll->mask; - opll->mask = mask; - return ret; - } - else - return 0; -} - -e_uint32 -OPLL_toggleMask(OPLL *opll, e_uint32 mask) -{ - e_uint32 ret; - - if (opll) - { - ret = opll->mask; - opll->mask ^= mask; - return ret; - } - else - return 0; -} - -/**************************************************** - - I/O Ctrl - -*****************************************************/ - -static void setInstrument(OPLL *opll, e_uint i, e_uint inst) -{ - const e_uint8 *src; - OPLL_PATCH *modp, *carp; - - opll->patch_number[i] = inst; - - if (inst) - src = default_inst[inst - 1]; - else - src = opll->CustInst; - - modp = &MOD(opll, i)->patch; - carp = &CAR(opll, i)->patch; - - modp->AM = (src[0] >> 7) & 1; - modp->PM = (src[0] >> 6) & 1; - modp->EG = (src[0] >> 5) & 1; - modp->KR = (src[0] >> 4) & 1; - modp->ML = (src[0] & 0xF); - - carp->AM = (src[1] >> 7) & 1; - carp->PM = (src[1] >> 6) & 1; - carp->EG = (src[1] >> 5) & 1; - carp->KR = (src[1] >> 4) & 1; - carp->ML = (src[1] & 0xF); - - modp->KL = (src[2] >> 6) & 3; - modp->TL = (src[2] & 0x3F); - - carp->KL = (src[3] >> 6) & 3; - carp->WF = (src[3] >> 4) & 1; - - modp->WF = (src[3] >> 3) & 1; - - modp->FB = (src[3]) & 7; - - modp->AR = (src[4] >> 4) & 0xF; - modp->DR = (src[4] & 0xF); - - carp->AR = (src[5] >> 4) & 0xF; - carp->DR = (src[5] & 0xF); - - modp->SL = (src[6] >> 4) & 0xF; - modp->RR = (src[6] & 0xF); - - carp->SL = (src[7] >> 4) & 0xF; - carp->RR = (src[7] & 0xF); -} - -void OPLL_writeReg(OPLL *opll, e_uint32 reg, e_uint32 data) -{ - e_int32 i, v, ch; - - data = data & 0xff; - reg = reg & 0x3f; - - switch (reg) - { - case 0x00: - opll->CustInst[0] = data; - for (i = 0; i < 6; i++) - { - if (opll->patch_number[i] == 0) - { - setInstrument(opll, i, 0); - UPDATE_PG(MOD(opll, i)); - UPDATE_RKS(MOD(opll, i)); - UPDATE_EG(MOD(opll, i)); - } - } - break; - - case 0x01: - opll->CustInst[1] = data; - for (i = 0; i < 6; i++) - { - if (opll->patch_number[i] == 0) - { - setInstrument(opll, i, 0); - UPDATE_PG(CAR(opll, i)); - UPDATE_RKS(CAR(opll, i)); - UPDATE_EG(CAR(opll, i)); - } - } - break; - - case 0x02: - opll->CustInst[2] = data; - for (i = 0; i < 6; i++) - { - if (opll->patch_number[i] == 0) - { - setInstrument(opll, i, 0); - UPDATE_TLL(MOD(opll, i)); - } - } - break; - - case 0x03: - opll->CustInst[3] = data; - for (i = 0; i < 6; i++) - { - if (opll->patch_number[i] == 0) - { - setInstrument(opll, i, 0); - UPDATE_WF(MOD(opll, i)); - UPDATE_WF(CAR(opll, i)); - } - } - break; - - case 0x04: - opll->CustInst[4] = data; - for (i = 0; i < 6; i++) - { - if (opll->patch_number[i] == 0) - { - setInstrument(opll, i, 0); - UPDATE_EG(MOD(opll, i)); - } - } - break; - - case 0x05: - opll->CustInst[5] = data; - for (i = 0; i < 6; i++) - { - if (opll->patch_number[i] == 0) - { - setInstrument(opll, i, 0); - UPDATE_EG(CAR(opll, i)); - } - } - break; - - case 0x06: - opll->CustInst[6] = data; - for (i = 0; i < 6; i++) - { - if (opll->patch_number[i] == 0) - { - setInstrument(opll, i, 0); - UPDATE_EG(MOD(opll, i)); - } - } - break; - - case 0x07: - opll->CustInst[7] = data; - for (i = 0; i < 6; i++) - { - if (opll->patch_number[i] == 0) - { - setInstrument(opll, i, 0); - UPDATE_EG(CAR(opll, i)); - } - } - break; - - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - ch = reg - 0x10; - opll->LowFreq[ch] = data; - setFnumber(opll, ch, data + ((opll->HiFreq[ch] & 1) << 8)); - UPDATE_ALL(MOD(opll, ch)); - UPDATE_ALL(CAR(opll, ch)); - break; - - case 0x20: - case 0x21: - case 0x22: - case 0x23: - case 0x24: - case 0x25: - ch = reg - 0x20; - opll->HiFreq[ch] = data; - - setFnumber(opll, ch, ((data & 1) << 8) + opll->LowFreq[ch]); - setBlock(opll, ch, (data >> 1) & 7); - setSustine(opll, ch, (data >> 5) & 1); - if (data & 0x10) - keyOn(opll, ch); - else - keyOff(opll, ch); - UPDATE_ALL(MOD(opll, ch)); - UPDATE_ALL(CAR(opll, ch)); - update_key_status(opll); - break; - - case 0x30: - case 0x31: - case 0x32: - case 0x33: - case 0x34: - case 0x35: - opll->InstVol[reg - 0x30] = data; - i = (data >> 4) & 15; - v = data & 15; - setInstrument(opll, reg - 0x30, i); - setVolume(opll, reg - 0x30, v << 2); - UPDATE_ALL(MOD(opll, reg - 0x30)); - UPDATE_ALL(CAR(opll, reg - 0x30)); - break; - - default: - break; - } -} - -void OPLL_writeIO(OPLL *opll, e_uint32 adr, e_uint32 val) -{ - if (adr & 1) - OPLL_writeReg(opll, opll->adr, val); - else - opll->adr = val; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc7/emu2413.hpp b/quicknes/source/quickerNES/core/apu/vrc7/emu2413.hpp deleted file mode 100644 index a9d6e34f609..00000000000 --- a/quicknes/source/quickerNES/core/apu/vrc7/emu2413.hpp +++ /dev/null @@ -1,223 +0,0 @@ -#pragma once - -namespace quickerNES -{ - -typedef signed int e_int; -typedef unsigned int e_uint; -typedef signed char e_int8; -typedef unsigned char e_uint8; -typedef signed short e_int16; -typedef unsigned short e_uint16; -typedef signed int e_int32; -typedef unsigned int e_uint32; - -#define INLINE inline - -/* Size of Sintable ( 8 -- 18 can be used. 9 recommended.)*/ -#define PG_BITS 9 -#define PG_WIDTH (1 << PG_BITS) - -/* Phase increment counter */ -#define DP_BITS 18 -#define DP_WIDTH (1 << DP_BITS) -#define DP_BASE_BITS (DP_BITS - PG_BITS) - -/* Dynamic range (Accuracy of sin table) */ -#define DB_BITS 8 -#define DB_STEP (48.0 / (1 << DB_BITS)) -#define DB_MUTE (1 << DB_BITS) - -/* Dynamic range of envelope */ -#define EG_STEP 0.375 -#define EG_BITS 7 -#define EG_MUTE (1 << EG_BITS) - -/* Dynamic range of total level */ -#define TL_STEP 0.75 -#define TL_BITS 6 -#define TL_MUTE (1 << TL_BITS) - -/* Dynamic range of sustine level */ -#define SL_STEP 3.0 -#define SL_BITS 4 -#define SL_MUTE (1 << SL_BITS) - -/* Bits for Pitch and Amp modulator */ -#define PM_PG_BITS 8 -#define PM_PG_WIDTH (1 << PM_PG_BITS) -#define PM_DP_BITS 16 -#define PM_DP_WIDTH (1 << PM_DP_BITS) -#define AM_PG_BITS 8 -#define AM_PG_WIDTH (1 << AM_PG_BITS) -#define AM_DP_BITS 16 -#define AM_DP_WIDTH (1 << AM_DP_BITS) - -#ifdef EMU2413_DLL_EXPORTS - #define EMU2413_API __declspec(dllexport) -#elif defined(EMU2413_DLL_IMPORTS) - #define EMU2413_API __declspec(dllimport) -#else - #define EMU2413_API -#endif - -#ifdef __cplusplus -extern "C" -{ -#endif - -#define PI 3.14159265358979323846 - - enum - { - OPLL_VRC7_TONE = 0 - }; - - /* voice data */ - typedef struct - { - e_uint32 TL, FB, EG, ML, AR, DR, SL, RR, KR, KL, AM, PM, WF; - } OPLL_PATCH; - - /* slot */ - typedef struct - { - OPLL_PATCH patch; - - e_int32 type; /* 0 : modulator 1 : carrier */ - - /* OUTPUT */ - e_int32 feedback; - e_int32 output[2]; /* Output value of slot */ - - /* for Phase Generator (PG) */ - e_uint16 *sintbl; /* Wavetable */ - e_uint32 phase; /* Phase */ - e_uint32 dphase; /* Phase increment amount */ - e_uint32 pgout; /* output */ - - /* for Envelope Generator (EG) */ - e_int32 fnum; /* F-Number */ - e_int32 block; /* Block */ - e_int32 volume; /* Current volume */ - e_int32 sustine; /* Sustine 1 = ON, 0 = OFF */ - e_uint32 tll; /* Total Level + Key scale level*/ - e_uint32 rks; /* Key scale offset (Rks) */ - e_int32 eg_mode; /* Current state */ - e_uint32 eg_phase; /* Phase */ - e_uint32 eg_dphase; /* Phase increment amount */ - e_uint32 egout; /* output */ - - } OPLL_SLOT; - -/* Mask */ -#define OPLL_MASK_CH(x) (1 << (x)) - - /* opll */ - typedef struct - { - e_uint32 adr; - e_int32 out; - -#ifndef EMU2413_COMPACTION - e_uint32 realstep; - e_uint32 oplltime; - e_uint32 opllstep; - e_int32 prev, next; -#endif - - /* Register */ - e_uint8 LowFreq[6]; - e_uint8 HiFreq[6]; - e_uint8 InstVol[6]; - - e_uint8 CustInst[8]; - - e_int32 slot_on_flag[6 * 2]; - - /* Pitch Modulator */ - e_uint32 pm_phase; - e_int32 lfo_pm; - - /* Amp Modulator */ - e_int32 am_phase; - e_int32 lfo_am; - - e_uint32 quality; - - /* Channel Data */ - e_int32 patch_number[6]; - e_int32 key_status[6]; - - /* Slot */ - OPLL_SLOT slot[6 * 2]; - - e_uint32 mask; - - /* Input clock */ - e_uint32 clk; - - /* WaveTable for each envelope amp */ - e_uint16 fullsintable[PG_WIDTH]; - e_uint16 halfsintable[PG_WIDTH]; - - e_uint16 *waveform[2]; - - /* LFO Table */ - e_int32 pmtable[PM_PG_WIDTH]; - e_int32 amtable[AM_PG_WIDTH]; - - /* Phase delta for LFO */ - e_uint32 pm_dphase; - e_uint32 am_dphase; - - /* dB to Liner table */ - e_int16 DB2LIN_TABLE[(DB_MUTE + DB_MUTE) * 2]; - - /* Liner to Log curve conversion table (for Attack rate). */ - e_uint16 AR_ADJUST_TABLE[1 << EG_BITS]; - - /* Phase incr table for Attack */ - e_uint32 dphaseARTable[16][16]; - - /* Phase incr table for Decay and Release */ - e_uint32 dphaseDRTable[16][16]; - - /* KSL + TL Table */ - e_uint32 tllTable[16][8][1 << TL_BITS][4]; - e_int32 rksTable[2][8][2]; - - /* Phase incr table for PG */ - e_uint32 dphaseTable[512][8][16]; - } OPLL; - - /* Create Object */ - EMU2413_API OPLL *OPLL_new(e_uint32 clk); - EMU2413_API void OPLL_delete(OPLL *); - - /* Setup */ - EMU2413_API void OPLL_reset(OPLL *); - // EMU2413_API void OPLL_set_rate(OPLL *opll, e_uint32 r) ; - - /* Port/Register access */ - EMU2413_API void OPLL_writeIO(OPLL *, e_uint32 reg, e_uint32 val); - EMU2413_API void OPLL_writeReg(OPLL *, e_uint32 reg, e_uint32 val); - - /* Synthsize */ - EMU2413_API e_int16 OPLL_calc(OPLL *); - /* or */ - EMU2413_API void OPLL_run(OPLL *); - EMU2413_API e_uint32 OPLL_calcCh(OPLL *, e_uint32 ch); - - /* Misc */ - EMU2413_API void OPLL_forceRefresh(OPLL *); - - /* Channel Mask */ - EMU2413_API e_uint32 OPLL_setMask(OPLL *, e_uint32 mask); - EMU2413_API e_uint32 OPLL_toggleMask(OPLL *, e_uint32 mask); - -#ifdef __cplusplus -} -#endif - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.cpp b/quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.cpp deleted file mode 100644 index 4fff23a09c9..00000000000 --- a/quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.cpp +++ /dev/null @@ -1,116 +0,0 @@ -#include "emu2413_state.hpp" -#include - -namespace quickerNES -{ - -#ifdef __cplusplus -extern "C" -{ -#endif - - int OPLL_serialize_size() - { - return sizeof(OPLL_STATE); - } - - void OPLL_serialize(const OPLL *opll, OPLL_STATE *state) - { - int i; - - state->pm_phase = opll->pm_phase; - state->am_phase = opll->am_phase; - - for (i = 0; i < 12; i++) - { - OPLL_SLOT_STATE *slotState = &(state->slot[i]); - const OPLL_SLOT *slot = &(opll->slot[i]); - slotState->feedback = slot->feedback; - slotState->output[0] = slot->output[0]; - slotState->output[1] = slot->output[1]; - slotState->phase = slot->phase; - slotState->pgout = slot->pgout; - slotState->eg_mode = slot->eg_mode; - slotState->eg_phase = slot->eg_phase; - slotState->eg_dphase = slot->eg_dphase; - slotState->egout = slot->egout; - } - } - -#define BYTESWAP(xxxx) \ - { \ - uint32_t _temp = (uint32_t)(xxxx); \ - ((uint8_t *)&(xxxx))[0] = (uint8_t)((_temp) >> 24); \ - ((uint8_t *)&(xxxx))[1] = (uint8_t)((_temp) >> 16); \ - ((uint8_t *)&(xxxx))[2] = (uint8_t)((_temp) >> 8); \ - ((uint8_t *)&(xxxx))[3] = (uint8_t)((_temp) >> 0); \ - } - -#define SET(xxxx, yyyy) \ - { \ - if ((xxxx) != (yyyy)) \ - { \ - (xxxx) = (yyyy); \ - } - - void OPLL_deserialize(OPLL *opll, const OPLL_STATE *state) - { - int i; - - opll->pm_phase = state->pm_phase; - opll->am_phase = state->am_phase; - - for (i = 0; i < 12; i++) - { - const OPLL_SLOT_STATE *slotState = &(state->slot[i]); - OPLL_SLOT *slot = &(opll->slot[i]); - slot->feedback = slotState->feedback; - slot->output[0] = slotState->output[0]; - slot->output[1] = slotState->output[1]; - slot->phase = slotState->phase; - slot->pgout = slotState->pgout; - slot->eg_mode = slotState->eg_mode; - slot->eg_phase = slotState->eg_phase; - slot->eg_dphase = slotState->eg_dphase; - slot->egout = slotState->egout; - } - } - - static bool IsLittleEndian() - { - int i = 42; - if (((char *)&i)[0] == 42) - { - return true; - } - return false; - } - - void OPLL_state_byteswap(OPLL_STATE *state) - { - int i; - if (IsLittleEndian()) return; - - BYTESWAP(state->pm_phase); - BYTESWAP(state->am_phase); - - for (i = 0; i < 12; i++) - { - OPLL_SLOT_STATE *slotState = &(state->slot[i]); - BYTESWAP(slotState->feedback); - BYTESWAP(slotState->output[0]); - BYTESWAP(slotState->output[1]); - BYTESWAP(slotState->phase); - BYTESWAP(slotState->pgout); - BYTESWAP(slotState->eg_mode); - BYTESWAP(slotState->eg_phase); - BYTESWAP(slotState->eg_dphase); - BYTESWAP(slotState->egout); - } - } - -#ifdef __cplusplus -} -#endif - -} // namespace quickNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.hpp b/quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.hpp deleted file mode 100644 index ebd2e25b269..00000000000 --- a/quicknes/source/quickerNES/core/apu/vrc7/emu2413_state.hpp +++ /dev/null @@ -1,41 +0,0 @@ -#pragma once - -#include "emu2413.hpp" - -namespace quickerNES -{ - -typedef struct -{ - e_int32 feedback; - e_int32 output[2]; - e_uint32 phase; - e_uint32 pgout; - e_int32 eg_mode; - e_uint32 eg_phase; - e_uint32 eg_dphase; - e_uint32 egout; -} OPLL_SLOT_STATE; - -typedef struct -{ - e_uint32 pm_phase; - e_int32 am_phase; - OPLL_SLOT_STATE slot[6 * 2]; -} OPLL_STATE; - -#ifdef __cplusplus -extern "C" -{ -#endif - - int OPLL_serialize_size(); - void OPLL_serialize(const OPLL *opll, OPLL_STATE *state); - void OPLL_deserialize(OPLL *opll, const OPLL_STATE *state); - void OPLL_state_byteswap(OPLL_STATE *state); - -#ifdef __cplusplus -} -#endif - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/cart.hpp b/quicknes/source/quickerNES/core/cart.hpp deleted file mode 100644 index ccd61f441de..00000000000 --- a/quicknes/source/quickerNES/core/cart.hpp +++ /dev/null @@ -1,117 +0,0 @@ -#pragma once - -// NES cartridge data (PRG, CHR, mapper) - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include -#include -#include - -namespace quickerNES -{ - -class Cart -{ - public: - Cart() = default; - - struct ines_header_t - { - uint8_t signature[4]; - uint8_t prg_count; // number of 16K PRG banks - uint8_t chr_count; // number of 8K CHR banks - uint8_t flags; // MMMM FTBV Mapper low, Four-screen, Trainer, Battery, V mirror - uint8_t flags2; // MMMM --XX Mapper high 4 bits - uint8_t zero[8]; - }; - static_assert(sizeof(ines_header_t) == 16); - - // Load iNES file - void load_ines(const uint8_t *buffer) - { - ines_header_t h; - - size_t bufferPos = 0; - { - size_t copySize = sizeof(ines_header_t); - memcpy(&h, &buffer[bufferPos], copySize); - bufferPos += copySize; - } - - set_mapper(h.flags, h.flags2); - - // skip trainer - if (h.flags & 0x04) bufferPos += 512; - - // Allocating memory for prg and chr - prg_size_ = h.prg_count * 16 * 1024L; - chr_size_ = h.chr_count * 8 * 1024L; - - auto p = malloc(prg_size_ + chr_size_); - prg_ = (uint8_t *)p; - chr_ = &prg_[prg_size_]; - - { - size_t copySize = prg_size(); - memcpy(prg(), &buffer[bufferPos], copySize); - bufferPos += copySize; - } - { - size_t copySize = chr_size(); - memcpy(chr(), &buffer[bufferPos], copySize); - bufferPos += copySize; - } - } - - inline bool has_battery_ram() const { return mapper & 0x02; } - - // Set mapper and information bytes. LSB and MSB are the standard iNES header - // bytes at offsets 6 and 7. - inline void set_mapper(int mapper_lsb, int mapper_msb) - { - mapper = mapper_msb * 0x100 + mapper_lsb; - } - - inline int mapper_code() const { return ((mapper >> 8) & 0xf0) | ((mapper >> 4) & 0x0f); } - - // Size of PRG data - long prg_size() const { return prg_size_; } - - // Size of CHR data - long chr_size() const { return chr_size_; } - - unsigned mapper_data() const { return mapper; } - - // Initial mirroring setup - int mirroring() const { return mapper & 0x09; } - - // Pointer to beginning of PRG data - inline uint8_t *prg() { return prg_; } - inline uint8_t const *prg() const { return prg_; } - - // Pointer to beginning of CHR data - inline uint8_t *chr() { return chr_; } - inline uint8_t const *chr() const { return chr_; } - - // End of public interface - private: - uint8_t *prg_; - uint8_t *chr_; - long prg_size_; - long chr_size_; - unsigned mapper; -}; - -} // namespace quickerNES diff --git a/quicknes/source/quickerNES/core/core.hpp b/quicknes/source/quickerNES/core/core.hpp deleted file mode 100644 index 95c9813fc99..00000000000 --- a/quicknes/source/quickerNES/core/core.hpp +++ /dev/null @@ -1,1208 +0,0 @@ -#pragma once - -// Internal NES emulator - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -// Emu 0.7.0 - -#include "apu/apu.hpp" -#include "cpu.hpp" -#include "mappers/mapper.hpp" -#include "ppu/ppu.hpp" -#include -#include -#include -#include -#include -#include - -#ifdef _QUICKERNES_ENABLE_INPUT_CALLBACK -extern void (*input_callback_cb)(void); -#endif - -namespace quickerNES -{ - -class Cart; - -#undef NES_EMU_CPU_HOOK -#ifndef NES_EMU_CPU_HOOK - #define NES_EMU_CPU_HOOK(cpu, end_time) cpu::run(end_time) -#endif - -bool const wait_states_enabled = true; -bool const single_instruction_mode = false; // for debugging irq/nmi timing issues -const int unmapped_fill = Cpu::page_wrap_opcode; -unsigned const low_ram_size = 0x800; -unsigned const low_ram_end = 0x2000; -unsigned const sram_end = 0x8000; -const int irq_inhibit_mask = 0x04; - -struct nes_state_t -{ - uint16_t timestamp; // CPU clocks * 15 (for NTSC) - uint8_t pal; - uint8_t unused[1]; - uint32_t frame_count; // number of frames emulated since power-up -}; - -struct nes_state_lite_t -{ - uint16_t timestamp; // CPU clocks * 15 (for NTSC) - uint8_t frame_count; // number of frames emulated since power-up -}; - -struct input_state_t -{ - uint32_t joypad_latches[2]; // input_state 1 & 2 shift registers - - #ifdef _QUICKERNES_SUPPORT_ARKANOID_INPUTS - uint32_t arkanoid_latch; // arkanoid latch - uint8_t arkanoid_fire; // arkanoid latch - #endif - - uint8_t w4016; // strobe -}; - -struct cpu_state_t -{ - uint16_t pc; - uint8_t s; - uint8_t p; - uint8_t a; - uint8_t x; - uint8_t y; - uint8_t unused[1]; -}; -static_assert(sizeof(cpu_state_t) == 8); - -class Core : private Cpu -{ - typedef Cpu cpu; - - public: - size_t _NTABBlockSize = 0x1000; - - // Flags for lite state storage - bool TIMEBlockEnabled = true; - bool CPURBlockEnabled = true; - bool PPURBlockEnabled = true; - bool APURBlockEnabled = true; - bool CTRLBlockEnabled = true; - bool MAPRBlockEnabled = true; - bool LRAMBlockEnabled = true; - bool SPRTBlockEnabled = true; - bool NTABBlockEnabled = true; - bool CHRRBlockEnabled = true; - bool SRAMBlockEnabled = true; - - // APU and Joypad - enum controllerType_t - { - none_t = 0, - joypad_t = 1, - arkanoidNES_t = 2, - arkanoidFamicom_t = 3, - }; - - Core() : ppu(this) - { - cart = NULL; - impl = NULL; - mapper = NULL; - memset(&nes, 0, sizeof nes); - memset(&input_state, 0, sizeof input_state); - } - - ~Core() - { - close(); - delete impl; - } - - const char *init() - { - if (!impl) - { - impl = new impl_t; - impl->apu.dmc_reader(read_dmc, this); - impl->apu.irq_notifier(apu_irq_changed, this); - } - - return 0; - } - - const char *open(Cart const *new_cart) - { - close(); - init(); - - // Getting cartdrige mapper code - auto mapperCode = new_cart->mapper_code(); - - // Getting mapper corresponding to that code - mapper = Mapper::getMapperFromCode(mapperCode); - - // If no mapper was found, return null (error) now - if (mapper == nullptr) - { - fprintf(stderr, "Could not find mapper for code: %u\n", mapperCode); - return "Unsupported mapper"; - } - - // Assigning backwards pointers to cartdrige and emulator now - mapper->cart_ = new_cart; - mapper->emu_ = this; - - ppu.open_chr(new_cart->chr(), new_cart->chr_size()); - - cart = new_cart; - memset(impl->unmapped_page, unmapped_fill, sizeof impl->unmapped_page); - reset(true, true); - - return nullptr; - } - - inline void serializeState(jaffarCommon::serializer::Base &serializer) const - { - // TIME Block - if (TIMEBlockEnabled == true) - { - nes_state_t state = nes; - state.timestamp *= 5; - - const auto inputDataSize = sizeof(nes_state_t); - const auto inputData = (uint8_t *)&state; - serializer.pushContiguous(inputData, inputDataSize); - } - - // CPUR Block - if (CPURBlockEnabled == true) - { - cpu_state_t s; - memset(&s, 0, sizeof s); - s.pc = r.pc; - s.s = r.sp; - s.a = r.a; - s.x = r.x; - s.y = r.y; - s.p = r.status; - - const auto inputDataSize = sizeof(cpu_state_t); - const auto inputData = (uint8_t *)&s; - - serializer.pushContiguous(inputData, inputDataSize); - } - - if (PPURBlockEnabled == true) - { - const auto inputDataSize = sizeof(ppu_state_t); - const auto inputData = (const uint8_t *)&ppu; - serializer.pushContiguous(inputData, inputDataSize); - } - - // APUR Block - if (APURBlockEnabled == true) - { - Apu::apu_state_t apuState; - impl->apu.save_state(&apuState); - - const auto inputDataSize = sizeof(Apu::apu_state_t); - const auto inputData = (uint8_t *)&apuState; - serializer.pushContiguous(inputData, inputDataSize); - } - - // CTRL Block - if (CTRLBlockEnabled == true) - { - const auto inputDataSize = sizeof(input_state_t); - const auto inputData = (uint8_t *)&input_state; - serializer.pushContiguous(inputData, inputDataSize); - } - - // MAPR Block - if (MAPRBlockEnabled == true) - { - const auto inputDataSize = mapper->state_size; - const auto inputData = (uint8_t *)mapper->state; - serializer.pushContiguous(inputData, inputDataSize); - } - - // LRAM Block - if (LRAMBlockEnabled == true) - { - const auto inputDataSize = low_ram_size; - const auto inputData = (uint8_t *)low_mem; - serializer.push(inputData, inputDataSize); - } - - // SPRT Block - if (SPRTBlockEnabled == true) - { - const auto inputDataSize = Ppu::spr_ram_size; - const auto inputData = (uint8_t *)ppu.spr_ram; - serializer.push(inputData, inputDataSize); - } - - // NTAB Block - if (NTABBlockEnabled == true) - { - const auto inputDataSize = _NTABBlockSize; - const auto inputData = (uint8_t *)ppu.impl->nt_ram; - serializer.push(inputData, inputDataSize); - } - - // CHRR Block - if (CHRRBlockEnabled == true) - { - if (ppu.chr_is_writable) - { - const auto inputDataSize = ppu.chr_size; - const auto inputData = (uint8_t *)ppu.impl->chr_ram; - serializer.push(inputData, inputDataSize); - } - } - - // SRAM Block - if (SRAMBlockEnabled == true) - { - if (sram_present) - { - const auto inputDataSize = impl->sram_size; - const auto inputData = (uint8_t *)impl->sram; - serializer.push(inputData, inputDataSize); - } - } - } - - inline void deserializeState(jaffarCommon::deserializer::Base &deserializer) - { - disable_rendering(); - error_count = 0; - ppu.burst_phase = 0; // avoids shimmer when seeking to same time over and over - - // TIME Block - if (TIMEBlockEnabled == true) - { - const auto outputData = (uint8_t *)&nes; - const auto inputDataSize = sizeof(nes_state_t); - deserializer.popContiguous(outputData, inputDataSize); - - nes.timestamp /= 5; - } - - // CPUR Block - if (CPURBlockEnabled == true) - { - cpu_state_t s; - - const auto outputData = (uint8_t *)&s; - const auto inputDataSize = sizeof(cpu_state_t); - deserializer.popContiguous(outputData, inputDataSize); - - r.pc = s.pc; - r.sp = s.s; - r.a = s.a; - r.x = s.x; - r.y = s.y; - r.status = s.p; - } - - // PPUR Block - if (PPURBlockEnabled == true) - { - const auto outputData = (uint8_t *)&ppu; - const auto inputDataSize = sizeof(ppu_state_t); - deserializer.popContiguous(outputData, inputDataSize); - } - - // APUR Block - if (APURBlockEnabled == true) - { - Apu::apu_state_t apuState; - - const auto outputData = (uint8_t *)&apuState; - const auto inputDataSize = sizeof(Apu::apu_state_t); - deserializer.popContiguous(outputData, inputDataSize); - - impl->apu.load_state(apuState); - impl->apu.end_frame(-(int)nes.timestamp / ppu_overclock); - } - - // CTRL Block - if (CTRLBlockEnabled == true) - { - const auto outputData = (uint8_t *)&input_state; - const auto inputDataSize = sizeof(input_state_t); - deserializer.popContiguous(outputData, inputDataSize); - } - - // MAPR Block - if (MAPRBlockEnabled == true) - { - mapper->default_reset_state(); - - const auto outputData = (uint8_t *)mapper->state; - const auto inputDataSize = mapper->state_size; - deserializer.popContiguous(outputData, inputDataSize); - - mapper->apply_mapping(); - } - - // LRAM Block - if (LRAMBlockEnabled == true) - { - const auto outputData = (uint8_t *)low_mem; - const auto inputDataSize = low_ram_size; - deserializer.pop(outputData, inputDataSize); - } - - // SPRT Block - if (SPRTBlockEnabled == true) - { - const auto outputData = (uint8_t *)ppu.spr_ram; - const auto inputDataSize = Ppu::spr_ram_size; - deserializer.pop(outputData, inputDataSize); - } - - // NTAB Block - if (NTABBlockEnabled == true) - { - const auto outputData = (uint8_t *)ppu.impl->nt_ram; - const auto inputDataSize = _NTABBlockSize; - deserializer.pop(outputData, inputDataSize); - } - - // CHRR Block - if (CHRRBlockEnabled == true) - { - if (ppu.chr_is_writable) - { - const auto outputData = (uint8_t *)ppu.impl->chr_ram; - const auto inputDataSize = ppu.chr_size; - deserializer.pop(outputData, inputDataSize); - - ppu.all_tiles_modified(); - } - } - - // SRAM Block - if (SRAMBlockEnabled == true) - { - if (sram_present) - { - const auto outputData = (uint8_t *)impl->sram; - const auto inputDataSize = impl->sram_size; - deserializer.pop(outputData, inputDataSize); - } - } - - if (sram_present) enable_sram(true); - } - - void setNTABBlockSize(const size_t size) { _NTABBlockSize = size; } - - void enableStateBlock(const std::string &block) - { - bool recognizedBlock = false; - - if (block == "TIME") - { - TIMEBlockEnabled = true; - recognizedBlock = true; - } - if (block == "CPUR") - { - CPURBlockEnabled = true; - recognizedBlock = true; - } - if (block == "PPUR") - { - PPURBlockEnabled = true; - recognizedBlock = true; - } - if (block == "APUR") - { - APURBlockEnabled = true; - recognizedBlock = true; - } - if (block == "CTRL") - { - CTRLBlockEnabled = true; - recognizedBlock = true; - } - if (block == "MAPR") - { - MAPRBlockEnabled = true; - recognizedBlock = true; - } - if (block == "LRAM") - { - LRAMBlockEnabled = true; - recognizedBlock = true; - } - if (block == "SPRT") - { - SPRTBlockEnabled = true; - recognizedBlock = true; - } - if (block == "NTAB") - { - NTABBlockEnabled = true; - recognizedBlock = true; - } - if (block == "CHRR") - { - CHRRBlockEnabled = true; - recognizedBlock = true; - } - if (block == "SRAM") - { - SRAMBlockEnabled = true; - recognizedBlock = true; - } - - if (recognizedBlock == false) - { - fprintf(stderr, "Unrecognized block type: %s\n", block.c_str()); - exit(-1); - } - }; - - void disableStateBlock(const std::string &block) - { - bool recognizedBlock = false; - - if (block == "TIME") - { - TIMEBlockEnabled = false; - recognizedBlock = true; - } - if (block == "CPUR") - { - CPURBlockEnabled = false; - recognizedBlock = true; - } - if (block == "PPUR") - { - PPURBlockEnabled = false; - recognizedBlock = true; - } - if (block == "APUR") - { - APURBlockEnabled = false; - recognizedBlock = true; - } - if (block == "CTRL") - { - CTRLBlockEnabled = false; - recognizedBlock = true; - } - if (block == "MAPR") - { - MAPRBlockEnabled = false; - recognizedBlock = true; - } - if (block == "LRAM") - { - LRAMBlockEnabled = false; - recognizedBlock = true; - } - if (block == "SPRT") - { - SPRTBlockEnabled = false; - recognizedBlock = true; - } - if (block == "NTAB") - { - NTABBlockEnabled = false; - recognizedBlock = true; - } - if (block == "CHRR") - { - CHRRBlockEnabled = false; - recognizedBlock = true; - } - if (block == "SRAM") - { - SRAMBlockEnabled = false; - recognizedBlock = true; - } - - if (recognizedBlock == false) - { - fprintf(stderr, "Unrecognized block type: %s\n", block.c_str()); - exit(-1); - } - }; - - void reset(bool full_reset, bool erase_battery_ram) - { - if (full_reset) - { - cpu::reset(impl->unmapped_page); - cpu_time_offset = -1; - clock_ = 0; - - // Low RAM - memset(cpu::low_mem, 0xFF, low_ram_size); - cpu::low_mem[8] = 0xf7; - cpu::low_mem[9] = 0xef; - cpu::low_mem[10] = 0xdf; - cpu::low_mem[15] = 0xbf; - - // SRAM - lrom_readable = 0; - sram_present = true; - enable_sram(false); - if (!cart->has_battery_ram() || erase_battery_ram) - memset(impl->sram, 0xFF, impl->sram_size); - - input_state.joypad_latches[0] = 0; - input_state.joypad_latches[1] = 0; - - #ifdef _QUICKERNES_SUPPORT_ARKANOID_INPUTS - input_state.arkanoid_latch = 0; - input_state.arkanoid_fire = 0; - #endif - - nes.frame_count = 0; - } - - // to do: emulate partial reset - - ppu.reset(full_reset); - impl->apu.reset(); - - mapper->reset(); - - cpu::r.pc = read_vector(0xFFFC); - cpu::r.sp = 0xfd; - cpu::r.a = 0; - cpu::r.x = 0; - cpu::r.y = 0; - cpu::r.status = irq_inhibit_mask; - nes.timestamp = 0; - error_count = 0; - } - - nes_time_t emulate_frame(uint32_t joypad1, uint32_t joypad2, uint32_t arkanoid_latch, uint8_t arkanoid_fire) - { -#ifdef _QUICKERNES_DETECT_JOYPAD_READS - joypad_read_count = 0; -#endif - - current_joypad[0] = joypad1; - current_joypad[1] = joypad2; - current_arkanoid_latch = arkanoid_latch; - current_arkanoid_fire = arkanoid_fire; - - cpu_time_offset = ppu.begin_frame(nes.timestamp) - 1; - ppu_2002_time = 0; - clock_ = cpu_time_offset; - - // TODO: clean this fucking mess up - auto t0 = emulate_frame_(); - impl->apu.run_until_(t0); - clock_ = cpu_time_offset; - auto t1 = cpu_time(); - impl->apu.run_until_(t1); - - nes_time_t ppu_frame_length = ppu.frame_length(); - nes_time_t length = cpu_time(); - nes.timestamp = ppu.end_frame(length); - mapper->end_frame(length); - - impl->apu.end_frame(ppu_frame_length); - - disable_rendering(); - nes.frame_count++; - - return ppu_frame_length; - } - - void close() - { - cart = NULL; - delete mapper; - mapper = NULL; - - ppu.close_chr(); - - disable_rendering(); - } - - void irq_changed() - { - cpu_set_irq_time(earliest_irq(cpu_time())); - } - - void event_changed() - { - cpu_set_end_time(earliest_event(cpu_time())); - } - - public: - private: - friend class Emu; - - struct impl_t - { - enum - { - sram_size = 0x2000 - }; - uint8_t sram[sram_size]; - Apu apu; - - // extra byte allows CPU to always read operand of instruction, which - // might go past end of data - uint8_t unmapped_page[Cpu::page_size + 1]; - }; - impl_t *impl; // keep large arrays separate - unsigned long error_count; - bool sram_present; - - public: - uint32_t current_joypad[2]; - uint32_t current_arkanoid_latch; - uint8_t current_arkanoid_fire; - Cart const *cart; - Mapper *mapper; - nes_state_t nes; - Ppu ppu; - int joypad_read_count = 0; - - private: - // noncopyable - Core(const Core &); - Core &operator=(const Core &); - - // Timing - nes_time_t ppu_2002_time; - void disable_rendering() { clock_ = 0; } - - inline nes_time_t earliest_irq(nes_time_t present) - { - return std::min(impl->apu.earliest_irq(present), mapper->next_irq(present)); - } - - inline nes_time_t ppu_frame_length(nes_time_t present) - { - nes_time_t t = ppu.frame_length(); - if (t > present) - return t; - - ppu.render_bg_until(clock()); // to do: why this call to clock() rather than using present? - return ppu.frame_length(); - } - - inline nes_time_t earliest_event(nes_time_t present) - { - // PPU frame - nes_time_t t = ppu_frame_length(present); - - // DMC - if (wait_states_enabled) - t = std::min(t, impl->apu.next_dmc_read_time() + 1); - - // NMI - t = std::min(t, ppu.nmi_time()); - - if (single_instruction_mode) - t = std::min(t, present + 1); - - return t; - } - - - controllerType_t _controllerType = controllerType_t::none_t; - - input_state_t input_state; - - void setControllerType(controllerType_t type) { _controllerType = type; } - -#ifdef _QUICKERNES_SUPPORT_ARKANOID_INPUTS - int read_io(nes_addr_t addr) - { - if ((addr & 0xFFFE) == 0x4016) - { - // For performance's sake, this counter is only kept on demand - #ifdef _QUICKERNES_DETECT_JOYPAD_READS - joypad_read_count++; - #endif - - // If write flag is put into w4016, reading from it returns nothing - if (input_state.w4016 & 1) return 0; - - // Proceed depending on input type - switch(_controllerType) - { - case controllerType_t::joypad_t: - { - const uint8_t result = input_state.joypad_latches[addr & 1] & 1; - input_state.joypad_latches[addr & 1] >>= 1; - return result; - } - - case controllerType_t::arkanoidNES_t: - { - if (addr == 0x4017) - { - // latch 0 encodes fire, latch 1 encodes potentiometer - const uint8_t result = (input_state.arkanoid_latch & 1) * 16 + input_state.arkanoid_fire * 8; - - // Advancing latch 1 - input_state.arkanoid_latch >>= 1; - return result; - } - } - - case controllerType_t::arkanoidFamicom_t: - { - if (addr == 0x4016) - { - // latch 0 encodes fire - uint8_t result = (input_state.arkanoid_fire & 1) * 2; - - // latch 0 also encodes input_state 1 - result += (input_state.joypad_latches[0] & 1) & 1; - - // Advancing input_state latch - input_state.joypad_latches[0] >>= 1; - - return result; - } - - if (addr == 0x4017) - { - // latch 1 encodes potentiometer - const uint8_t result = (input_state.arkanoid_latch & 1) * 2; - - // Advancing latch 1 - input_state.arkanoid_latch >>= 1; - return result; - } - } - - default: - return 0; - } - } - - - if (addr == Apu::status_addr) - return impl->apu.read_status(clock()); - - return addr >> 8; // simulate open bus - } -#else - int read_io(nes_addr_t addr) - { - if ((addr & 0xFFFE) == 0x4016) - { - // to do: to aid with recording, doesn't emulate transparent latch, - // so a game that held strobe at 1 and read $4016 or $4017 would not get - // the current A status as occurs on a NES - if (input_state.w4016 & 1) return 0; - const uint8_t result = input_state.joypad_latches[addr & 1] & 1; - input_state.joypad_latches[addr & 1] >>= 1; - return result; - } - - if (addr == Apu::status_addr) - return impl->apu.read_status(clock()); - - return addr >> 8; // simulate open bus - } -#endif - - void write_io(nes_addr_t addr, int data) - { - // sprite dma - if (addr == 0x4014) - { - ppu.dma_sprites(clock(), cpu::get_code(data * 0x100)); - cpu_adjust_time(513); - return; - } - - // input_state strobe - if (addr == 0x4016) - { - // if strobe goes low, latch data - if (input_state.w4016 & 1 & ~data) - { - input_state.joypad_latches[0] = current_joypad[0]; - input_state.joypad_latches[1] = current_joypad[1]; - - #ifdef _QUICKERNES_SUPPORT_ARKANOID_INPUTS - input_state.arkanoid_latch = current_arkanoid_latch; - input_state.arkanoid_fire = current_arkanoid_fire; - #endif - - #ifdef _QUICKERNES_ENABLE_INPUT_CALLBACK - input_callback_cb(); - #endif - } - input_state.w4016 = data; - return; - } - - // apu - if (unsigned(addr - impl->apu.start_addr) <= impl->apu.end_addr - impl->apu.start_addr) - { - impl->apu.write_register(clock(), addr, data); - if (wait_states_enabled) - { - if (addr == 0x4010 || (addr == 0x4015 && (data & 0x10))) - { - impl->apu.run_until(clock() + 1); - event_changed(); - } - } - return; - } - } - - static inline int read_dmc(void *data, nes_addr_t addr) - { - Core *emu = (Core *)data; - int result = *emu->cpu::get_code(addr); - if (wait_states_enabled) - emu->cpu_adjust_time(4); - return result; - } - - static inline void apu_irq_changed(void *emu) - { - ((Core *)emu)->irq_changed(); - } - - // CPU - unsigned sram_readable; - unsigned sram_writable; - unsigned lrom_readable; - nes_time_t clock_; - nes_time_t cpu_time_offset; - - nes_time_t emulate_frame_() - { - Cpu::result_t last_result = cpu::result_cycles; - int extra_instructions = 0; - while (true) - { - // Add DMC wait-states to CPU time - if (wait_states_enabled) - { - impl->apu.run_until(cpu_time()); - clock_ = cpu_time_offset; - } - - nes_time_t present = cpu_time(); - if (present >= ppu_frame_length(present)) - { - if (ppu.nmi_time() <= present) - { - // NMI will occur next, so delayed CLI and SEI don't need to be handled. - // If NMI will occur normally ($2000.7 and $2002.7 set), let it occur - // next frame, otherwise vector it now. - - if (!(ppu.w2000 & 0x80 & ppu.r2002)) - { - /* vectored NMI at end of frame */ - vector_interrupt(0xFFFA); - present += 7; - } - return present; - } - - if (extra_instructions > 2) - { - return present; - } - - if (last_result != cpu::result_cli && last_result != cpu::result_sei && - (ppu.nmi_time() >= 0x10000 || (ppu.w2000 & 0x80 & ppu.r2002))) - return present; - - /* Executing extra instructions for frame */ - extra_instructions++; // execute one more instruction - } - - // NMI - if (present >= ppu.nmi_time()) - { - ppu.acknowledge_nmi(); - vector_interrupt(0xFFFA); - last_result = cpu::result_cycles; // most recent sei/cli won't be delayed now - } - - // IRQ - nes_time_t irq_time = earliest_irq(present); - cpu_set_irq_time(irq_time); - if (present >= irq_time && (!(cpu::r.status & irq_inhibit_mask) || - last_result == cpu::result_sei)) - { - if (last_result != cpu::result_cli) - { - /* IRQ vectored */ - mapper->run_until(present); - vector_interrupt(0xFFFE); - } - else - { - // CLI delays IRQ - cpu_set_irq_time(present + 1); - } - } - - // CPU - nes_time_t end_time = earliest_event(present); - if (extra_instructions) - end_time = present + 1; - unsigned long cpu_error_count = cpu::error_count(); - last_result = NES_EMU_CPU_HOOK(cpu, end_time - cpu_time_offset - 1); - cpu_adjust_time(cpu::time()); - clock_ = cpu_time_offset; - error_count += cpu::error_count() - cpu_error_count; - } - } - - nes_addr_t read_vector(nes_addr_t addr) - { - uint8_t const *p = cpu::get_code(addr); - return p[1] * 0x100 + p[0]; - } - - void vector_interrupt(nes_addr_t vector) - { - cpu::push_byte(cpu::r.pc >> 8); - cpu::push_byte(cpu::r.pc & 0xFF); - cpu::push_byte(cpu::r.status | 0x20); // reserved bit is set - - cpu_adjust_time(7); - cpu::r.status |= irq_inhibit_mask; - cpu::r.pc = read_vector(vector); - } - - static void log_unmapped(nes_addr_t addr, int data = -1); - void cpu_set_irq_time(nes_time_t t) { cpu::set_irq_time_(t - 1 - cpu_time_offset); } - void cpu_set_end_time(nes_time_t t) { cpu::set_end_time_(t - 1 - cpu_time_offset); } - nes_time_t cpu_time() const { return clock_ + 1; } - - inline void cpu_adjust_time(int n) - { - ppu_2002_time -= n; - cpu_time_offset += n; - cpu::reduce_limit(n); - } - - public: - private: - friend class Ppu; - void set_ppu_2002_time(nes_time_t t) { ppu_2002_time = t - 1 - cpu_time_offset; } - - public: - private: - friend class Mapper; - - void enable_prg_6000() - { - sram_writable = 0; - sram_readable = 0; - lrom_readable = 0x8000; - } - - void enable_sram(bool b, bool read_only = false) - { - sram_writable = 0; - if (b) - { - if (!sram_present) - { - sram_present = true; - memset(impl->sram, 0xFF, impl->sram_size); - } - sram_readable = sram_end; - if (!read_only) - sram_writable = sram_end; - cpu::map_code(0x6000, impl->sram_size, impl->sram); - } - else - { - sram_readable = 0; - for (int i = 0; i < impl->sram_size; i += cpu::page_size) - cpu::map_code(0x6000 + i, cpu::page_size, impl->unmapped_page); - } - } - - nes_time_t clock() const { return clock_; } - - void add_mapper_intercept(nes_addr_t addr, unsigned size, bool read, bool write) - { - int end = (addr + size + (page_size - 1)) >> page_bits; - for (int page = addr >> page_bits; page < end; page++) - { - data_reader_mapped[page] |= read; - data_writer_mapped[page] |= write; - } - } - - public: - private: - friend class Cpu; - int cpu_read_ppu(nes_addr_t, nes_time_t); - int cpu_read(nes_addr_t, nes_time_t); - void cpu_write(nes_addr_t, int data, nes_time_t); - void cpu_write_2007(int data); - - private: - unsigned char data_reader_mapped[page_count + 1]; // extra entry for overflow - unsigned char data_writer_mapped[page_count + 1]; -}; - -inline int Core::cpu_read(nes_addr_t addr, nes_time_t time) -{ - { - int result = cpu::low_mem[addr & 0x7FF]; - if (!(addr & 0xE000)) - return result; - } - - { - int result = *cpu::get_code(addr); - if (addr > 0x7FFF) - return result; - } - - time += cpu_time_offset; - if (addr < 0x4000) - return ppu.read(addr, time); - - clock_ = time; - if (data_reader_mapped[addr >> page_bits]) - { - int result = mapper->read(time, addr); - if (result >= 0) - return result; - } - - if (addr < 0x6000) - return read_io(addr); - - if (addr < sram_readable) - return impl->sram[addr & (impl_t::sram_size - 1)]; - - if (addr < lrom_readable) - return *cpu::get_code(addr); - - return addr >> 8; // simulate open bus -} - -inline int Core::cpu_read_ppu(nes_addr_t addr, nes_time_t time) -{ - // LOG_FREQ( "cpu_read_ppu", 16, addr >> 12 ); - - // Read of status register (0x2002) is heavily optimized since many games - // poll it hundreds of times per frame. - nes_time_t next = ppu_2002_time; - int result = ppu.r2002; - if (addr == 0x2002) - { - ppu.second_write = false; - if (time >= next) - result = ppu.read_2002(time + cpu_time_offset); - } - else - { - result = cpu::low_mem[addr & 0x7FF]; - if (addr >= 0x2000) - result = cpu_read(addr, time); - } - - return result; -} - -inline void Core::cpu_write_2007(int data) -{ - // ppu.write_2007() is inlined - if (ppu.write_2007(data) & Ppu::vaddr_clock_mask) - mapper->a12_clocked(); -} - -inline void Core::cpu_write(nes_addr_t addr, int data, nes_time_t time) -{ - // LOG_FREQ( "cpu_write", 16, addr >> 12 ); - - if (!(addr & 0xE000)) - { - cpu::low_mem[addr & 0x7FF] = data; - return; - } - - time += cpu_time_offset; - if (addr < 0x4000) - { - if ((addr & 7) == 7) - cpu_write_2007(data); - else - ppu.write(time, addr, data); - return; - } - - clock_ = time; - if (data_writer_mapped[addr >> page_bits] && mapper->write_intercepted(time, addr, data)) - return; - - if (addr < 0x6000) - { - write_io(addr, data); - return; - } - - if (addr < sram_writable) - { - impl->sram[addr & (impl_t::sram_size - 1)] = data; - return; - } - - if (addr > 0x7FFF) - { - mapper->write(clock_, addr, data); - return; - } -} - -#define NES_CPU_READ_PPU(cpu, addr, time) \ - static_cast(*cpu).cpu_read_ppu(addr, time) - -#define NES_CPU_READ(cpu, addr, time) \ - static_cast(*cpu).cpu_read(addr, time) - -#define NES_CPU_WRITEX(cpu, addr, data, time) \ - { \ - static_cast(*cpu).cpu_write(addr, data, time); \ - } - -#define NES_CPU_WRITE(cpu, addr, data, time) \ - { \ - if (addr < 0x800) \ - cpu->low_mem[addr] = data; \ - else if (addr == 0x2007) \ - static_cast(*cpu).cpu_write_2007(data); \ - else \ - static_cast(*cpu).cpu_write(addr, data, time); \ - } - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/cpu.cpp b/quicknes/source/quickerNES/core/cpu.cpp deleted file mode 100644 index 171f9da2047..00000000000 --- a/quicknes/source/quickerNES/core/cpu.cpp +++ /dev/null @@ -1,1495 +0,0 @@ -// Emu 0.7.0. http://www.slack.net/~ant/nes-emu/ - -#include "cpu.hpp" -#include "core.hpp" -#include -#include -#include - -/** - * Optimizations by Sergio Martin (eien86) 2023-2024 - * The license below (LGPLv2) applies. - */ - -/* Copyright (C) 2003-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -#define st_n 0x80 -#define st_v 0x40 -#define st_r 0x20 -#define st_b 0x10 -#define st_d 0x08 -#define st_i 0x04 -#define st_z 0x02 -#define st_c 0x01 - -// Macros - -#define GET_OPERAND(addr) page[addr] -#define GET_OPERAND16(addr) *(uint16_t *)(&page[addr]) - -#define ADD_PAGE (pc++, data += 0x100 * GET_OPERAND(pc)); -#define GET_ADDR() GET_OPERAND16(pc) - -#define HANDLE_PAGE_CROSSING(lsb) clock_count += (lsb) >> 8; - -#define INC_DEC_XY(reg, n) \ - reg = uint8_t(nz = reg + n); \ - goto loop; - -#define IND_Y(r, c) \ - { \ - int32_t temp = READ_LOW(data) + y; \ - data = temp + 0x100 * READ_LOW(uint8_t(data + 1)); \ - if (c) HANDLE_PAGE_CROSSING(temp); \ - if (!(r) || (temp & 0x100)) \ - READ(data - (temp & 0x100)); \ - } - -#define IND_X \ - { \ - int32_t temp = data + x; \ - data = 0x100 * READ_LOW(uint8_t(temp + 1)) + READ_LOW(uint8_t(temp)); \ - } - -#define ARITH_ADDR_MODES(op) \ - case op - 0x04: /* (ind,x) */ \ - IND_X \ - goto ptr##op; \ - case op + 0x0C: /* (ind),y */ \ - IND_Y(true, true) \ - goto ptr##op; \ - case op + 0x10: /* zp,X */ \ - data = uint8_t(data + x); \ - case op + 0x00: /* zp */ \ - data = READ_LOW(data); \ - goto imm##op; \ - case op + 0x14: /* abs,Y */ \ - data += y; \ - goto ind##op; \ - case op + 0x18: /* abs,X */ \ - data += x; \ - ind##op: \ - { \ - HANDLE_PAGE_CROSSING(data); \ - uint32_t temp = data; \ - ADD_PAGE \ - if (temp & 0x100) \ - READ(data - 0x100); \ - goto ptr##op; \ - } \ - case op + 0x08: /* abs */ \ - ADD_PAGE \ - ptr##op : data = READ(data); \ - case op + 0x04: /* imm */ \ - imm##op: - -#define ARITH_ADDR_MODES_PTR(op) \ - case op - 0x04: /* (ind,x) */ \ - IND_X \ - goto imm##op; \ - case op + 0x0C: \ - IND_Y(false, false) \ - goto imm##op; \ - case op + 0x10: /* zp,X */ \ - data = uint8_t(data + x); \ - goto imm##op; \ - case op + 0x14: /* abs,Y */ \ - data += y; \ - goto ind##op; \ - case op + 0x18: /* abs,X */ \ - data += x; \ - ind##op: \ - { \ - uint32_t temp = data; \ - ADD_PAGE \ - READ(data - (temp & 0x100)); \ - goto imm##op; \ - } \ - case op + 0x08: /* abs */ \ - ADD_PAGE \ - case op + 0x00: /* zp */ \ - imm##op: - -// Adding likely to fail because typically for loops exit conditions fail until the last one -#define BRANCH(cond) \ - { \ - pc++; \ - int offset = (int8_t)data; \ - int extra_clock = (pc & 0xFF) + offset; \ - if (!(cond)) \ - { \ - clock_count--; \ - goto loop; \ - } \ - pc += offset; \ - pc = uint16_t(pc); \ - clock_count += (extra_clock >> 8) & 1; \ - goto loop; \ - } - -void Cpu::reset(void const *unmapped_page) -{ - r.status = 0; - r.sp = 0; - r.pc = 0; - r.a = 0; - r.x = 0; - r.y = 0; - - error_count_ = 0; - clock_count = 0; - clock_limit = 0; - irq_time_ = LONG_MAX / 2 + 1; - end_time_ = LONG_MAX / 2 + 1; - - set_code_page(0, low_mem); - set_code_page(1, low_mem); - set_code_page(2, low_mem); - set_code_page(3, low_mem); - for (int32_t i = 4; i < page_count + 1; i++) - set_code_page(i, (uint8_t *)unmapped_page); - - isCorrectExecution = true; -} - -// Note: 'addr' is evaulated more than once in the following macros, so it -// must not contain side-effects. - -// static void log_read( int32_t opcode ) { LOG_FREQ( "read", 256, opcode ); } - -#define READ_LIKELY_PPU(addr) (NES_CPU_READ_PPU(this, (addr), (clock_count))) -#define READ(addr) (NES_CPU_READ(this, (addr), (clock_count))) -#define WRITE(addr, data) \ - { \ - NES_CPU_WRITE(this, (addr), (data), (clock_count)); \ - } - -#define READ_LOW(addr) (low_mem[int32_t(addr)]) -#define WRITE_LOW(addr, data) (void)(READ_LOW(addr) = (data)) - -#define READ_PROG(addr) (code_map[(addr) >> page_bits][addr]) -#define READ_PROG16(addr) GET_LE16(&READ_PROG(addr)) - -#define SET_SP(v) (sp = ((v) + 1) | 0x100) -#define GET_SP() ((sp - 1) & 0xFF) -#define PUSH(v) ((sp = (sp - 1) | 0x100), WRITE_LOW(sp, v)) - -#define IS_NEG (nz & 0x880) - -#define CALC_STATUS(out) \ - do { \ - out = status & (st_v | st_d | st_i); \ - out |= (c >> 8) & st_c; \ - if (IS_NEG) out |= st_n; \ - if (!(nz & 0xFF)) out |= st_z; \ - } while (0) - -#define SET_STATUS(in) \ - do { \ - status = in & (st_v | st_d | st_i); \ - c = in << 8; \ - nz = (in << 4) & 0x800; \ - nz |= ~in & st_z; \ - } while (0) - -inline int32_t Cpu::read(nes_addr_t addr) -{ - return READ(addr); -} - -inline void Cpu::write(nes_addr_t addr, int value) -{ - WRITE(addr, value); -} - -// status flags -uint8_t clock_table[256] = { - // 0 1 2 3 4 5 6 7 8 9 A B C D E F - 7, - 6, - 2, - 8, - 3, - 3, - 5, - 5, - 3, - 2, - 2, - 2, - 4, - 4, - 6, - 6, // 0 - 3, - 5, - 2, - 8, - 4, - 4, - 6, - 6, - 2, - 4, - 2, - 7, - 4, - 4, - 7, - 7, // 1 - 6, - 6, - 2, - 8, - 3, - 3, - 5, - 5, - 4, - 2, - 2, - 2, - 4, - 4, - 6, - 6, // 2 - 3, - 5, - 2, - 8, - 4, - 4, - 6, - 6, - 2, - 4, - 2, - 7, - 4, - 4, - 7, - 7, // 3 - 6, - 6, - 2, - 8, - 3, - 3, - 5, - 5, - 3, - 2, - 2, - 2, - 3, - 4, - 6, - 6, // 4 - 3, - 5, - 2, - 8, - 4, - 4, - 6, - 6, - 2, - 4, - 2, - 7, - 4, - 4, - 7, - 7, // 5 - 6, - 6, - 2, - 8, - 3, - 3, - 5, - 5, - 4, - 2, - 2, - 2, - 5, - 4, - 6, - 6, // 6 - 3, - 5, - 2, - 8, - 4, - 4, - 6, - 6, - 2, - 4, - 2, - 7, - 4, - 4, - 7, - 7, // 7 - 2, - 6, - 2, - 6, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 4, // 8 - 3, - 6, - 2, - 6, - 4, - 4, - 4, - 4, - 2, - 5, - 2, - 5, - 5, - 5, - 5, - 5, // 9 - 2, - 6, - 2, - 6, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 4, // A - 3, - 5, - 2, - 5, - 4, - 4, - 4, - 4, - 2, - 4, - 2, - 4, - 4, - 4, - 4, - 4, // B - 2, - 6, - 2, - 8, - 3, - 3, - 5, - 5, - 2, - 2, - 2, - 2, - 4, - 4, - 6, - 6, // C - 3, - 5, - 2, - 8, - 4, - 4, - 6, - 6, - 2, - 4, - 2, - 7, - 4, - 4, - 7, - 7, // D - 2, - 6, - 2, - 8, - 3, - 3, - 5, - 5, - 2, - 2, - 2, - 2, - 4, - 4, - 6, - 6, // E - 3, - 5, - 2, - 8, - 4, - 4, - 6, - 6, - 2, - 4, - 2, - 7, - 4, - 4, - 7, - 7 // F -}; - - -// This optimization is only possible with the GNU compiler -- MSVC does not allow function alignment -#ifdef __GNUC__ -__attribute__((optimize("align-functions=1024"))) -#endif -Cpu::result_t -Cpu::run(nes_time_t end) -{ - set_end_time_(end); - clock_count = 0; - isCorrectExecution = true; - - volatile result_t result = result_cycles; - - // registers - uint32_t pc = r.pc; - int32_t sp; - SET_SP(r.sp); - int32_t a = r.a; - int32_t x = r.x; - int32_t y = r.y; - - int32_t status; - int32_t c; // carry set if (c & 0x100) != 0 - int32_t nz; // Z set if (nz & 0xFF) == 0, N set if (nz & 0x880) != 0 - { - int32_t temp = r.status; - SET_STATUS(temp); - } - - uint32_t data; - uint8_t const *page; - uint8_t opcode; - -loop: - - page = code_map[pc >> page_bits]; - opcode = page[pc++]; - data = page[pc]; - - if (clock_count >= clock_limit) [[unlikely]] - goto stop; - -// If traceback support is enabled, trigger it here -#ifdef _QUICKERNES_ENABLE_TRACEBACK_SUPPORT - if (tracecb) - { - unsigned int scratch[7]; - scratch[0] = a; - scratch[1] = x; - scratch[2] = y; - scratch[3] = sp; - scratch[4] = pc - 1; - scratch[5] = status; - scratch[6] = opcode; - tracecb(scratch); - } -#endif - - clock_count += clock_table[opcode]; - - switch (opcode) - { - // Often-Used - - case 0xB5: // LDA zp,x - data = uint8_t(data + x); - case 0xA5: // LDA zp - a = nz = READ_LOW(data); - pc++; - goto loop; - - case 0xD0: // BNE - BRANCH((uint8_t)nz); - - case 0x20: - { // JSR - int32_t temp = pc + 1; - pc = GET_OPERAND16(pc); - WRITE_LOW(0x100 | (sp - 1), temp >> 8); - sp = (sp - 2) | 0x100; - WRITE_LOW(sp, temp); - goto loop; - } - - case 0x4C: // JMP abs - pc = GET_OPERAND16(pc); - goto loop; - - case 0xE8: INC_DEC_XY(x, 1) // INX - - case 0x10: // BPL - BRANCH(!IS_NEG) - - ARITH_ADDR_MODES(0xC5) // CMP - nz = a - data; - pc++; - c = ~nz; - nz &= 0xFF; - goto loop; - - case 0x30: // BMI - BRANCH(IS_NEG) - - case 0xF0: // BEQ - BRANCH(!(uint8_t)nz); - - case 0x95: // STA zp,x - data = uint8_t(data + x); - case 0x85: // STA zp - pc++; - WRITE_LOW(data, a); - goto loop; - - case 0xC8: INC_DEC_XY(y, 1) // INY - - case 0xA8: // TAY - y = a; - case 0x98: // TYA - a = nz = y; - goto loop; - - case 0xAD: // LDA abs - data = GET_ADDR(); - pc += 2; - a = nz = READ_LIKELY_PPU(data); - goto loop; - - case 0x60: // RTS - pc = 1 + READ_LOW(sp); - pc += READ_LOW(0x100 | (sp - 0xFF)) * 0x100; - sp = (sp - 0xFE) | 0x100; - goto loop; - - case 0x99: // STA abs,Y - data += y; - goto sta_ind_common; - - case 0x9D: // STA abs,X - data += x; - sta_ind_common: - ADD_PAGE - READ(data - (data & 0x100)); - goto sta_ptr; - - case 0x8D: // STA abs - ADD_PAGE - sta_ptr: - pc++; - WRITE(data, a); - goto loop; - - case 0xA9: // LDA #imm - pc++; - a = data; - nz = data; - goto loop; - - case 0xB9: // LDA abs,Y - data += y; - data -= x; - case 0xBD: - { // LDA abs,X - pc++; - uint32_t msb = GET_OPERAND(pc); - data += x; - // indexed common - pc++; - HANDLE_PAGE_CROSSING(data); - int32_t temp = data; - data += msb * 0x100; - a = nz = READ_PROG(uint16_t(data)); - if ((uint32_t)(data - 0x2000) >= 0x6000) - goto loop; - if (temp & 0x100) - READ(data - 0x100); - a = nz = READ(data); - goto loop; - } - - case 0xB1: - { // LDA (ind),Y - uint32_t msb = READ_LOW((uint8_t)(data + 1)); - data = READ_LOW(data) + y; - // indexed common - pc++; - HANDLE_PAGE_CROSSING(data); - int32_t temp = data; - data += msb * 0x100; - a = nz = READ_PROG(uint16_t(data)); - if ((uint32_t)(data - 0x2000) >= 0x6000) - goto loop; - if (temp & 0x100) - READ(data - 0x100); - a = nz = READ(data); - goto loop; - } - - case 0xA1: // LDA (ind,X) - IND_X - a = nz = READ(data); - pc++; - goto loop; - - // Branch - - case 0x50: // BVC - BRANCH(!(status & st_v)) - - case 0x70: // BVS - BRANCH(status & st_v) - - case 0xB0: // BCS - BRANCH(c & 0x100) - - case 0x90: // BCC - BRANCH(!(c & 0x100)) - - // Load/store - - case 0x94: // STY zp,x - data = uint8_t(data + x); - case 0x84: // STY zp - pc++; - WRITE_LOW(data, y); - goto loop; - - case 0x96: // STX zp,y - data = uint8_t(data + y); - case 0x86: // STX zp - pc++; - WRITE_LOW(data, x); - goto loop; - - case 0xB6: // LDX zp,y - data = uint8_t(data + y); - case 0xA6: // LDX zp - data = READ_LOW(data); - case 0xA2: // LDX #imm - pc++; - x = data; - nz = data; - goto loop; - - case 0xB4: // LDY zp,x - data = uint8_t(data + x); - case 0xA4: // LDY zp - data = READ_LOW(data); - case 0xA0: // LDY #imm - pc++; - y = data; - nz = data; - goto loop; - - case 0x91: // STA (ind),Y - IND_Y(false, false) - goto sta_ptr; - - case 0x81: // STA (ind,X) - IND_X - goto sta_ptr; - - case 0xBC: // LDY abs,X - data += x; - HANDLE_PAGE_CROSSING(data); - case 0xAC: - { // LDY abs - pc++; - uint32_t addr = data + 0x100 * GET_OPERAND(pc); - if (data & 0x100) - READ(addr - 0x100); - pc++; - y = nz = READ(addr); - goto loop; - } - - case 0xBE: // LDX abs,y - data += y; - HANDLE_PAGE_CROSSING(data); - case 0xAE: - { // LDX abs - pc++; - uint32_t addr = data + 0x100 * GET_OPERAND(pc); - pc++; - if (data & 0x100) - READ(addr - 0x100); - x = nz = READ(addr); - goto loop; - } - - { - int32_t temp; - case 0x8C: // STY abs - temp = y; - goto store_abs; - - case 0x8E: // STX abs - temp = x; - store_abs: - uint32_t addr = GET_ADDR(); - WRITE(addr, temp); - pc += 2; - goto loop; - } - - // Compare - - case 0xEC: - { // CPX abs - uint32_t addr = GET_ADDR(); - pc++; - data = READ(addr); - goto cpx_data; - } - - case 0xE4: // CPX zp - data = READ_LOW(data); - case 0xE0: // CPX #imm - cpx_data: - nz = x - data; - pc++; - c = ~nz; - nz &= 0xFF; - goto loop; - - case 0xCC: - { // CPY abs - uint32_t addr = GET_ADDR(); - pc++; - data = READ(addr); - goto cpy_data; - } - - case 0xC4: // CPY zp - data = READ_LOW(data); - case 0xC0: // CPY #imm - cpy_data: - nz = y - data; - pc++; - c = ~nz; - nz &= 0xFF; - goto loop; - - // Logical - - ARITH_ADDR_MODES(0x25) // AND - nz = (a &= data); - pc++; - goto loop; - - ARITH_ADDR_MODES(0x45) // EOR - nz = (a ^= data); - pc++; - goto loop; - - ARITH_ADDR_MODES(0x05) // ORA - nz = (a |= data); - pc++; - goto loop; - - case 0x2C: - { // BIT abs - uint32_t addr = GET_ADDR(); - pc += 2; - status &= ~st_v; - nz = READ_LIKELY_PPU(addr); - status |= nz & st_v; - if (a & nz) - goto loop; - // result must be zero, even if N bit is set - nz = nz << 4 & 0x800; - goto loop; - } - - case 0x24: // BIT zp - nz = READ_LOW(data); - pc++; - status &= ~st_v; - status |= nz & st_v; - if (a & nz) - goto loop; - // result must be zero, even if N bit is set - nz = nz << 4 & 0x800; - goto loop; - - // Add/subtract - - ARITH_ADDR_MODES(0xE5) // SBC - case 0xEB: // unofficial equivalent - data ^= 0xFF; - goto adc_imm; - - ARITH_ADDR_MODES(0x65) // ADC - adc_imm: - { - int32_t carry = (c >> 8) & 1; - int32_t ov = (a ^ 0x80) + carry + (int8_t)data; // sign-extend - status &= ~st_v; - status |= (ov >> 2) & 0x40; - c = nz = a + data + carry; - pc++; - a = (uint8_t)nz; - goto loop; - } - - // Shift/rotate - - case 0x4A: // LSR A - lsr_a: - c = 0; - case 0x6A: // ROR A - nz = (c >> 1) & 0x80; // could use bit insert macro here - c = a << 8; - nz |= a >> 1; - a = nz; - goto loop; - - case 0x0A: // ASL A - nz = a << 1; - c = nz; - a = (uint8_t)nz; - goto loop; - - case 0x2A: - { // ROL A - nz = a << 1; - int32_t temp = (c >> 8) & 1; - c = nz; - nz |= temp; - a = (uint8_t)nz; - goto loop; - } - - case 0x3E: // ROL abs,X - data += x; - goto rol_abs; - - case 0x1E: // ASL abs,X - data += x; - case 0x0E: // ASL abs - c = 0; - case 0x2E: // ROL abs - rol_abs: - { - int32_t temp = data; - ADD_PAGE - if (opcode == 0x1E || opcode == 0x3E) READ(data - (temp & 0x100)); - WRITE(data, temp = READ(data)); - nz = (c >> 8) & 1; - nz |= (c = temp << 1); - } - rotate_common: - pc++; - WRITE(data, (uint8_t)nz); - goto loop; - - case 0x7E: // ROR abs,X - data += x; - goto ror_abs; - - case 0x5E: // LSR abs,X - data += x; - case 0x4E: // LSR abs - c = 0; - case 0x6E: // ROR abs - ror_abs: - { - int32_t temp = data; - ADD_PAGE - if (opcode == 0x5E || opcode == 0x7E) READ(data - (temp & 0x100)); - WRITE(data, temp = READ(data)); - nz = ((c >> 1) & 0x80) | (temp >> 1); - c = temp << 8; - goto rotate_common; - } - - case 0x76: // ROR zp,x - data = uint8_t(data + x); - goto ror_zp; - - case 0x56: // LSR zp,x - data = uint8_t(data + x); - case 0x46: // LSR zp - c = 0; - case 0x66: // ROR zp - ror_zp: - { - int32_t temp = READ_LOW(data); - nz = ((c >> 1) & 0x80) | (temp >> 1); - c = temp << 8; - goto write_nz_zp; - } - - case 0x36: // ROL zp,x - data = uint8_t(data + x); - goto rol_zp; - - case 0x16: // ASL zp,x - data = uint8_t(data + x); - case 0x06: // ASL zp - c = 0; - case 0x26: // ROL zp - rol_zp: - nz = (c >> 8) & 1; - nz |= (c = READ_LOW(data) << 1); - goto write_nz_zp; - - // Increment/decrement - - case 0xCA: INC_DEC_XY(x, -1) // DEX - - case 0x88: INC_DEC_XY(y, -1) // DEY - - case 0xF6: // INC zp,x - data = uint8_t(data + x); - case 0xE6: // INC zp - nz = 1; - goto add_nz_zp; - - case 0xD6: // DEC zp,x - data = uint8_t(data + x); - case 0xC6: // DEC zp - nz = -1; - add_nz_zp: - nz += READ_LOW(data); - write_nz_zp: - pc++; - WRITE_LOW(data, nz); - goto loop; - - case 0xFE: - { // INC abs,x - int32_t temp = data + x; - data = x + GET_ADDR(); - READ(data - (temp & 0x100)); - goto inc_ptr; - } - - case 0xEE: // INC abs - data = GET_ADDR(); - inc_ptr: - nz = 1; - goto inc_common; - - case 0xDE: - { // DEC abs,x - int32_t temp = data + x; - data = x + GET_ADDR(); - READ(data - (temp & 0x100)); - goto dec_ptr; - } - - case 0xCE: // DEC abs - data = GET_ADDR(); - dec_ptr: - nz = -1; - inc_common: - { - int32_t temp; - WRITE(data, temp = READ(data)); - nz += temp; - pc += 2; - WRITE(data, (uint8_t)nz); - goto loop; - } - - // Transfer - - case 0xAA: // TAX - x = a; - case 0x8A: // TXA - a = nz = x; - goto loop; - - case 0x9A: // TXS - SET_SP(x); // verified (no flag change) - goto loop; - - case 0xBA: // TSX - x = nz = GET_SP(); - goto loop; - - // Stack - - case 0x48: // PHA - PUSH(a); // verified - goto loop; - - case 0x68: // PLA - a = nz = READ_LOW(sp); - sp = (sp - 0xFF) | 0x100; - goto loop; - - case 0x40: // RTI - { - int32_t temp = READ_LOW(sp); - pc = READ_LOW(0x100 | (sp - 0xFF)); - pc |= READ_LOW(0x100 | (sp - 0xFE)) * 0x100; - sp = (sp - 0xFD) | 0x100; - data = status; - SET_STATUS(temp); - } - if (!((data ^ status) & st_i)) - goto loop; // I flag didn't change - i_flag_changed: - // dprintf( "%6d %s\n", time(), (status & st_i ? "SEI" : "CLI") ); - this->r.status = status; // update externally-visible I flag - // update clock_limit based on modified I flag - clock_limit = end_time_; - if (end_time_ <= irq_time_) - goto loop; - if (status & st_i) - goto loop; - clock_limit = irq_time_; - goto loop; - - case 0x28: - { // PLP - int32_t temp = READ_LOW(sp); - sp = (sp - 0xFF) | 0x100; - data = status; - SET_STATUS(temp); - if (!((data ^ status) & st_i)) - goto loop; // I flag didn't change - if (!(status & st_i)) - goto handle_cli; - goto handle_sei; - } - - case 0x08: - { // PHP - int32_t temp; - CALC_STATUS(temp); - PUSH(temp | st_b | st_r); - goto loop; - } - - case 0x6C: // JMP (ind) - data = GET_ADDR(); - pc = READ(data); - pc |= READ((data & 0xFF00) | ((data + 1) & 0xFF)) << 8; - goto loop; - - case 0x00: - { // BRK - pc++; - WRITE_LOW(0x100 | (sp - 1), pc >> 8); - WRITE_LOW(0x100 | (sp - 2), pc); - int32_t temp; - CALC_STATUS(temp); - sp = (sp - 3) | 0x100; - WRITE_LOW(sp, temp | st_b | st_r); - pc = *(uint16_t *)(&code_map[0xFFFE >> page_bits][0xFFFE]); - status |= st_i; - goto i_flag_changed; - } - - // Flags - - case 0x38: // SEC - c = ~0; - goto loop; - - case 0x18: // CLC - c = 0; - goto loop; - - case 0xB8: // CLV - status &= ~st_v; - goto loop; - - case 0xD8: // CLD - status &= ~st_d; - goto loop; - - case 0xF8: // SED - status |= st_d; - goto loop; - - case 0x58: // CLI - if (!(status & st_i)) - goto loop; - status &= ~st_i; - handle_cli: - // dprintf( "%6d CLI\n", time() ); - this->r.status = status; // update externally-visible I flag - if (clock_count < end_time_) - { - if (end_time_ <= irq_time_) - goto loop; // irq is later - if (clock_count >= irq_time_) - irq_time_ = clock_count + 1; // delay IRQ until after next instruction - clock_limit = irq_time_; - goto loop; - } - // execution is stopping now, so delayed CLI must be handled by caller - result = result_cli; - goto end; - - case 0x78: // SEI - if (status & st_i) - goto loop; - status |= st_i; - handle_sei: - // dprintf( "%6d SEI\n", time() ); - this->r.status = status; // update externally-visible I flag - clock_limit = end_time_; - if (clock_count < irq_time_) - goto loop; - result = result_sei; // IRQ will occur now, even though I flag is set - goto end; - - // Unofficial - case 0x1C: - case 0x3C: - case 0x5C: - case 0x7C: - case 0xDC: - case 0xFC: - { // SKW - data += x; - HANDLE_PAGE_CROSSING(data); - int32_t addr = GET_ADDR() + x; - if (data & 0x100) - READ(addr - 0x100); - READ(addr); - } - case 0x0C: // SKW - pc++; - case 0x74: - case 0x04: - case 0x14: - case 0x34: - case 0x44: - case 0x54: - case 0x64: // SKB - case 0x80: - case 0x82: - case 0x89: - case 0xC2: - case 0xD4: - case 0xE2: - case 0xF4: - pc++; - case 0xEA: - case 0x1A: - case 0x3A: - case 0x5A: - case 0x7A: - case 0xDA: - case 0xFA: // NOP - goto loop; - - ARITH_ADDR_MODES_PTR(0xC7) // DCP - WRITE(data, nz = READ(data)); - nz = uint8_t(nz - 1); - WRITE(data, nz); - pc++; - nz = a - nz; - c = ~nz; - nz &= 0xFF; - goto loop; - - ARITH_ADDR_MODES_PTR(0xE7) // ISC - WRITE(data, nz = READ(data)); - nz = uint8_t(nz + 1); - WRITE(data, nz); - data = nz ^ 0xFF; - goto adc_imm; - - ARITH_ADDR_MODES_PTR(0x27) - { // RLA - WRITE(data, nz = READ(data)); - int32_t temp = c; - c = nz << 1; - nz = uint8_t(c) | ((temp >> 8) & 0x01); - WRITE(data, nz); - pc++; - nz = a &= nz; - goto loop; - } - - ARITH_ADDR_MODES_PTR(0x67) - { // RRA - int32_t temp; - WRITE(data, temp = READ(data)); - nz = ((c >> 1) & 0x80) | (temp >> 1); - WRITE(data, nz); - data = nz; - c = temp << 8; - goto adc_imm; - } - - ARITH_ADDR_MODES_PTR(0x07) // SLO - WRITE(data, nz = READ(data)); - c = nz << 1; - nz = uint8_t(c); - WRITE(data, nz); - nz = (a |= nz); - pc++; - goto loop; - - ARITH_ADDR_MODES_PTR(0x47) // SRE - WRITE(data, nz = READ(data)); - c = nz << 8; - nz >>= 1; - WRITE(data, nz); - nz = a ^= nz; - pc++; - goto loop; - - case 0x4B: // ALR - nz = (a &= data); - pc++; - goto lsr_a; - - case 0x0B: // ANC - case 0x2B: - nz = a &= data; - c = a << 1; - pc++; - goto loop; - - case 0x6B: // ARR - nz = a = uint8_t(((data & a) >> 1) | ((c >> 1) & 0x80)); - c = a << 2; - status = (status & ~st_v) | ((a ^ a << 1) & st_v); - pc++; - goto loop; - - case 0xAB: // LXA - a = data; - x = data; - nz = data; - pc++; - goto loop; - - case 0xA3: // LAX - IND_X - goto lax_ptr; - - case 0xB3: - IND_Y(true, true) - goto lax_ptr; - - case 0xB7: - data = uint8_t(data + y); - - case 0xA7: - data = READ_LOW(data); - goto lax_imm; - - case 0xBF: - { - data += y; - HANDLE_PAGE_CROSSING(data); - int32_t temp = data; - ADD_PAGE; - if (temp & 0x100) - READ(data - 0x100); - goto lax_ptr; - } - - case 0xAF: - ADD_PAGE - - lax_ptr: - data = READ(data); - lax_imm: - nz = x = a = data; - pc++; - goto loop; - - case 0x83: // SAX - IND_X - goto sax_imm; - - case 0x97: - data = uint8_t(data + y); - goto sax_imm; - - case 0x8F: - ADD_PAGE - - case 0x87: - sax_imm: - WRITE(data, a & x); - pc++; - goto loop; - - case 0xCB: // SBX - data = (a & x) - data; - c = (data <= 0xFF) ? 0x100 : 0; - nz = x = uint8_t(data); - pc++; - goto loop; - - case 0x93: // SHA (ind),Y - IND_Y(false, false) - pc++; - WRITE(data, uint8_t(a & x & ((data >> 8) + 1))); - goto loop; - - case 0x9F: - { // SHA abs,Y - data += y; - int32_t temp = data; - ADD_PAGE - READ(data - (temp & 0x100)); - pc++; - WRITE(data, uint8_t(a & x & ((data >> 8) + 1))); - goto loop; - } - - case 0x9E: - { // SHX abs,Y - data += y; - int32_t temp = data; - ADD_PAGE - READ(data - (temp & 0x100)); - pc++; - if (!(temp & 0x100)) - WRITE(data, uint8_t(x & ((data >> 8) + 1))); - goto loop; - } - - case 0x9C: - { // SHY abs,X - data += x; - int32_t temp = data; - ADD_PAGE - READ(data - (temp & 0x100)); - pc++; - if (!(temp & 0x100)) - WRITE(data, uint8_t(y & ((data >> 8) + 1))); - goto loop; - } - - case 0x9B: - { // SHS abs,Y - data += y; - int32_t temp = data; - ADD_PAGE - READ(data - (temp & 0x100)); - pc++; - SET_SP(a & x); - WRITE(data, uint8_t(a & x & ((data >> 8) + 1))); - goto loop; - } - - case 0xBB: - { // LAS abs,Y - data += y; - HANDLE_PAGE_CROSSING(data); - int32_t temp = data; - ADD_PAGE - if (temp & 0x100) - READ(data - 0x100); - pc++; - a = GET_SP(); - x = a &= READ(data); - SET_SP(a); - goto loop; - } - - // KIL (JAM) [HLT] - default: - // case 0x02: case 0x12: case 0x22: case 0x32: case 0x42: case 0x52: case 0x62: case 0x72: case 0x92: case 0xB2: case 0xD2: case 0xF2: - isCorrectExecution = false; - goto stop; - - // Unimplemented - - // case page_wrap_opcode: // HLT - // if ( pc > 0x10000 ) - // { - // // handle wrap-around (assumes caller has put page of HLT at 0x10000) - // pc = (pc - 1) & 0xFFFF; - // clock_count -= 2; - // goto loop; - // } - // fall through - // default: - // // skip over proper number of bytes - // static uint32_t char const row [8] = { 0x95, 0x95, 0x95, 0xd5, 0x95, 0x95, 0xd5, 0xf5 }; - // int len = row [opcode >> 2 & 7] >> (opcode << 1 & 6) & 3; - // if ( opcode == 0x9C ) - // len = 3; - // pc += len - 1; - // error_count_++; - // goto loop; - - // result = result_badop; // TODO: re-enable - goto stop; - } - -stop: - pc--; -end: - -{ - int temp; - CALC_STATUS(temp); - r.status = temp; -} - - this->clock_count = clock_count; - r.pc = pc; - r.sp = GET_SP(); - r.a = a; - r.x = x; - r.y = y; - irq_time_ = LONG_MAX / 2 + 1; - - return result; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/cpu.hpp b/quicknes/source/quickerNES/core/cpu.hpp deleted file mode 100644 index 826eb8c9a9f..00000000000 --- a/quicknes/source/quickerNES/core/cpu.hpp +++ /dev/null @@ -1,165 +0,0 @@ -#pragma once - -// NES 6502 CPU emulator -// Emu 0.7.0 - -#include - -namespace quickerNES -{ - -typedef long nes_time_t; // clock cycle count -typedef unsigned nes_addr_t; // 16-bit address - -class Cpu -{ - public: - void set_tracecb(void (*cb)(unsigned int *data)) - { - tracecb = cb; - } - - void (*tracecb)(unsigned int *dest); - - // NES 6502 registers. *Not* kept updated during a call to run(). - struct registers_t - { - uint16_t pc; // Should be more than 16 bits to allow overflow detection -- but I (eien86) removed it to maximize performance. - uint8_t a; - uint8_t x; - uint8_t y; - uint8_t status; - uint8_t sp; - }; - - // Map code memory (memory accessed via the program counter). Start and size - // must be multiple of page_size. - enum - { - page_bits = 11 - }; - enum - { - page_count = 0x10000 >> page_bits - }; - enum - { - page_size = 1L << page_bits - }; - - // Clear registers, unmap memory, and map code pages to unmapped_page. - void reset(void const *unmapped_page = 0); - - inline void set_code_page(int i, uint8_t const *p) - { - code_map[i] = p - (unsigned)i * page_size; - } - - inline void map_code(nes_addr_t start, unsigned size, const void *data) - { - unsigned first_page = start / page_size; - for (unsigned i = size / page_size; i--;) - set_code_page(first_page + i, (uint8_t *)data + i * page_size); - } - - // Access memory as the emulated CPU does. - int read(nes_addr_t); - void write(nes_addr_t, int data); - - // Push a byte on the stack - inline void push_byte(int data) - { - int sp = r.sp; - r.sp = (sp - 1) & 0xFF; - low_mem[0x100 + sp] = data; - } - - // Reasons that run() returns - enum result_t - { - result_cycles, // Requested number of cycles (or more) were executed - result_sei, // I flag just set and IRQ time would generate IRQ now - result_cli, // I flag just cleared but IRQ should occur *after* next instr - result_badop // unimplemented/illegal instruction - }; - - // This optimization is only possible with the GNU compiler -- MSVC does not allow function alignment -#if defined(__GNUC__) || defined(__clang__) - result_t run(nes_time_t end_time) __attribute__((aligned(1024))); -#else - result_t run(nes_time_t end_time); -#endif - - nes_time_t time() const { return clock_count; } - - inline void reduce_limit(int offset) - { - clock_limit -= offset; - end_time_ -= offset; - irq_time_ -= offset; - } - - inline void set_end_time_(nes_time_t t) - { - end_time_ = t; - update_clock_limit(); - } - - inline void set_irq_time_(nes_time_t t) - { - irq_time_ = t; - update_clock_limit(); - } - - unsigned long error_count() const { return error_count_; } - - // If PC exceeds 0xFFFF and encounters page_wrap_opcode, it will be silently wrapped. - enum - { - page_wrap_opcode = 0xF2 - }; - - // One of the many opcodes that are undefined and stop CPU emulation. - enum - { - bad_opcode = 0xD2 - }; - - uint8_t const *code_map[page_count + 1]; - nes_time_t clock_limit; - nes_time_t clock_count; - nes_time_t irq_time_; - nes_time_t end_time_; - unsigned long error_count_; - - enum - { - irq_inhibit = 0x04 - }; - - inline void update_clock_limit() - { - nes_time_t t = end_time_; - if (t > irq_time_ && !(r.status & irq_inhibit)) - t = irq_time_; - clock_limit = t; - } - - registers_t r; - bool isCorrectExecution = true; - - // low_mem is a full page size so it can be mapped with code_map - uint8_t low_mem[page_size > 0x800 ? page_size : 0x800]; - - inline uint8_t *get_code(nes_addr_t addr) - { - return (uint8_t *)code_map[addr >> page_bits] + addr; - } - - inline const uint8_t *get_code(nes_addr_t addr) const - { - return (const uint8_t *)code_map[addr >> page_bits] + addr; - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/emu.cpp b/quicknes/source/quickerNES/core/emu.cpp deleted file mode 100644 index a706be208a2..00000000000 --- a/quicknes/source/quickerNES/core/emu.cpp +++ /dev/null @@ -1,845 +0,0 @@ -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "emu.hpp" -#include "apu/NESEffectsBuffer.hpp" -#include "apu/buffer.hpp" -#include "mappers/mapper.hpp" -#include - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -int const sound_fade_size = 384; - -Emu::equalizer_t const Emu::nes_eq = {-1.0, 80}; -Emu::equalizer_t const Emu::famicom_eq = {-15.0, 80}; -Emu::equalizer_t const Emu::tv_eq = {-12.0, 180}; -Emu::equalizer_t const Emu::flat_eq = {0.0, 1}; -Emu::equalizer_t const Emu::crisp_eq = {5.0, 1}; -Emu::equalizer_t const Emu::tinny_eq = {-47.0, 2000}; - -Emu::Emu() -{ - frame_ = &single_frame; - buffer_height_ = Ppu::buffer_height + 2; - default_sound_buf = NULL; - sound_buf = &silent_buffer; - sound_buf_changed_count = 0; - equalizer_ = nes_eq; - channel_count_ = 0; - sound_enabled = false; - host_pixels = NULL; - single_frame.pixels = 0; - single_frame.top = 0; - init_called = false; - set_palette_range(0); - memset(single_frame.palette, 0, sizeof single_frame.palette); - - extra_fade_sound_in = false; - extra_fade_sound_out = false; - extra_sound_buf_changed_count = 0; -} - -Emu::~Emu() -{ - delete default_sound_buf; -} - -const char *Emu::init_() -{ - return emu.init(); -} - -inline const char *Emu::auto_init() -{ - if (!init_called) - { - init_(); - init_called = true; - } - return 0; -} - -inline void Emu::clear_sound_buf() -{ - fade_sound_out = false; - fade_sound_in = true; - sound_buf->clear(); -} - -const char *Emu::set_cart(Cart const *new_cart) -{ - auto_init(); - const char *error = emu.open(new_cart); - if (error) return error; - - channel_count_ = Apu::osc_count + emu.mapper->channel_count(); - sound_buf->set_channel_count(channel_count()); - set_equalizer(equalizer_); - enable_sound(true); - reset(); - - return nullptr; -} - -void Emu::reset(bool full_reset, bool erase_battery_ram) -{ - clear_sound_buf(); - set_timestamp(0); - emu.reset(full_reset, erase_battery_ram); -} - -void Emu::set_palette_range(int begin, int end) -{ - // round up to alignment - emu.ppu.palette_begin = (begin + palette_alignment - 1) & ~(palette_alignment - 1); - host_palette_size = end - emu.ppu.palette_begin; -} - -const char *Emu::emulate_skip_frame(uint32_t joypad1, uint32_t joypad2, uint32_t arkanoid_latch, uint8_t arkanoid_fire) -{ - char *old_host_pixels = host_pixels; - host_pixels = NULL; - emu.emulate_frame(joypad1, joypad2, arkanoid_latch, arkanoid_fire); - host_pixels = old_host_pixels; - return 0; -} - -const char *Emu::emulate_frame(uint32_t joypad1, uint32_t joypad2, uint32_t arkanoid_latch, uint8_t arkanoid_fire) -{ - emu.ppu.host_pixels = NULL; - - unsigned changed_count = sound_buf->channels_changed_count(); - bool new_enabled = (frame_ != NULL); - - if (sound_buf_changed_count != changed_count || sound_enabled != new_enabled) - { - sound_buf_changed_count = changed_count; - sound_enabled = new_enabled; - enable_sound(sound_enabled); - } - - frame_t *f = frame_; - if (f) - { - emu.ppu.max_palette_size = host_palette_size; - emu.ppu.host_palette = f->palette + emu.ppu.palette_begin; - // add black and white for emulator to use (unless emulator uses entire - // palette for frame) - f->palette[252] = 0x0F; - f->palette[254] = 0x30; - f->palette[255] = 0x0F; - if (host_pixels) - emu.ppu.host_pixels = (uint8_t *)host_pixels + - emu.ppu.host_row_bytes * f->top; - - if (sound_buf->samples_avail()) - clear_sound_buf(); - - nes_time_t frame_len = emu.emulate_frame(joypad1, joypad2, arkanoid_latch, arkanoid_fire); - sound_buf->end_frame(frame_len, false); - - f = frame_; - f->sample_count = sound_buf->samples_avail(); - f->chan_count = sound_buf->samples_per_frame(); - f->palette_begin = emu.ppu.palette_begin; - f->palette_size = emu.ppu.palette_size; - f->burst_phase = emu.ppu.burst_phase; - f->pitch = emu.ppu.host_row_bytes; - f->pixels = emu.ppu.host_pixels + f->left; - } - else - { - emu.ppu.max_palette_size = 0; - emu.emulate_frame(joypad1, joypad2, arkanoid_latch, arkanoid_fire); - } - - return 0; -} - -// Extras - -const char *Emu::load_ines(const uint8_t *buffer) -{ - private_cart.load_ines(buffer); - return set_cart(&private_cart); -} - -void Emu::write_chr(void const *p, long count, long offset) -{ - long end = offset + count; - memcpy((uint8_t *)chr_mem() + offset, p, count); - emu.ppu.rebuild_chr(offset, end); -} - -Multi_Buffer *set_apu(Nes_Effects_Buffer *buf, Apu *apu) -{ - buf->set_apu(apu); - return buf; -} - -Multi_Buffer *set_apu(Buffer *buf, Apu *apu) -{ - buf->set_apu(apu); - return buf; -} - -const char *Emu::set_sample_rate(long rate, class Buffer *buf) -{ - auto_init(); - return set_sample_rate(rate, set_apu(buf, &emu.impl->apu)); -} - -const char *Emu::set_sample_rate(long rate, class Nes_Effects_Buffer *buf) -{ - auto_init(); - return set_sample_rate(rate, set_apu(buf, &emu.impl->apu)); -} - -// Sound - -void Emu::set_frame_rate(double rate) -{ - sound_buf->clock_rate((long)(1789773 / 60.0 * rate)); -} - -const char *Emu::set_sample_rate(long rate, Multi_Buffer *new_buf) -{ - auto_init(); - emu.impl->apu.volume(1.0); // cancel any previous non-linearity - new_buf->set_sample_rate(rate, 1200 / frame_rate); - sound_buf = new_buf; - sound_buf_changed_count = 0; - if (new_buf != default_sound_buf) - { - delete default_sound_buf; - default_sound_buf = NULL; - } - set_frame_rate(frame_rate); - return 0; -} - -const char *Emu::set_sample_rate(long rate) -{ - if (!default_sound_buf) default_sound_buf = new Mono_Buffer; - return set_sample_rate(rate, default_sound_buf); -} - -void Emu::set_equalizer(equalizer_t const &eq) -{ - equalizer_ = eq; - if (cart()) - { - blip_eq_t blip_eq(eq.treble, 0, sound_buf->sample_rate()); - emu.impl->apu.treble_eq(blip_eq); - emu.mapper->set_treble(blip_eq); - sound_buf->bass_freq(equalizer_.bass); - } -} - -void Emu::enable_sound(bool enabled) -{ - if (enabled) - { - for (int i = channel_count(); i-- > 0;) - { - Blip_Buffer *buf = sound_buf->channel(i).center; - int mapper_index = i - Apu::osc_count; - if (mapper_index < 0) - emu.impl->apu.osc_output(i, buf); - else - emu.mapper->set_channel_buf(mapper_index, buf); - } - } - else - { - emu.impl->apu.output(NULL); - for (int i = channel_count() - Apu::osc_count; i-- > 0;) - emu.mapper->set_channel_buf(i, NULL); - } -} - -void Emu::fade_samples(blip_sample_t *p, int size, int step) -{ - if (size >= sound_fade_size) - { - if (step < 0) - p += size - sound_fade_size; - - int const shift = 15; - int mul = (1 - step) << (shift - 1); - step *= (1 << shift) / sound_fade_size; - - for (int n = sound_fade_size; n--;) - { - *p = (*p * mul) >> 15; - ++p; - mul += step; - } - } -} - -long Emu::read_samples(short *out, long out_size) -{ - long count = sound_buf->read_samples(out, out_size); - if (fade_sound_in) - { - fade_sound_in = false; - if (out != NULL) - fade_samples(out, count, 1); - } - - if (fade_sound_out) - { - fade_sound_out = false; - fade_sound_in = true; // next buffer should be faded in - if (out != NULL) - fade_samples(out, count, -1); - } - return count; -} - -Emu::rgb_t const Emu::nes_colors[color_table_size] = - { - // generated with nes_ntsc default settings - {102, 102, 102}, - {0, 42, 136}, - {20, 18, 168}, - {59, 0, 164}, - {92, 0, 126}, - {110, 0, 64}, - {108, 7, 0}, - {87, 29, 0}, - {52, 53, 0}, - {12, 73, 0}, - {0, 82, 0}, - {0, 79, 8}, - {0, 64, 78}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {174, 174, 174}, - {21, 95, 218}, - {66, 64, 254}, - {118, 39, 255}, - {161, 27, 205}, - {184, 30, 124}, - {181, 50, 32}, - {153, 79, 0}, - {108, 110, 0}, - {56, 135, 0}, - {13, 148, 0}, - {0, 144, 50}, - {0, 124, 142}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {254, 254, 254}, - {100, 176, 254}, - {147, 144, 254}, - {199, 119, 254}, - {243, 106, 254}, - {254, 110, 205}, - {254, 130, 112}, - {235, 159, 35}, - {189, 191, 0}, - {137, 217, 0}, - {93, 229, 48}, - {69, 225, 130}, - {72, 206, 223}, - {79, 79, 79}, - {0, 0, 0}, - {0, 0, 0}, - {254, 254, 254}, - {193, 224, 254}, - {212, 211, 254}, - {233, 200, 254}, - {251, 195, 254}, - {254, 197, 235}, - {254, 205, 198}, - {247, 217, 166}, - {229, 230, 149}, - {208, 240, 151}, - {190, 245, 171}, - {180, 243, 205}, - {181, 236, 243}, - {184, 184, 184}, - {0, 0, 0}, - {0, 0, 0}, - - {114, 83, 79}, - {0, 23, 113}, - {32, 0, 145}, - {71, 0, 141}, - {104, 0, 103}, - {122, 0, 41}, - {120, 0, 0}, - {99, 10, 0}, - {64, 34, 0}, - {24, 54, 0}, - {0, 63, 0}, - {0, 60, 0}, - {0, 45, 54}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {190, 148, 143}, - {37, 69, 187}, - {83, 38, 228}, - {134, 13, 224}, - {177, 1, 174}, - {200, 4, 92}, - {198, 24, 1}, - {170, 53, 0}, - {124, 84, 0}, - {73, 109, 0}, - {30, 122, 0}, - {6, 118, 19}, - {9, 98, 110}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {254, 222, 215}, - {122, 142, 254}, - {168, 110, 254}, - {220, 85, 254}, - {254, 72, 247}, - {254, 76, 164}, - {254, 96, 71}, - {254, 125, 0}, - {210, 157, 0}, - {158, 183, 0}, - {114, 195, 7}, - {90, 191, 89}, - {93, 172, 182}, - {79, 79, 79}, - {0, 0, 0}, - {0, 0, 0}, - {254, 222, 215}, - {214, 190, 233}, - {233, 177, 250}, - {254, 166, 248}, - {254, 161, 228}, - {254, 163, 194}, - {254, 171, 157}, - {254, 183, 125}, - {250, 196, 108}, - {229, 206, 110}, - {211, 211, 130}, - {201, 210, 164}, - {203, 202, 202}, - {184, 184, 184}, - {0, 0, 0}, - {0, 0, 0}, - {75, 106, 64}, - {0, 46, 98}, - {0, 22, 130}, - {32, 3, 126}, - {65, 0, 88}, - {82, 0, 26}, - {80, 11, 0}, - {59, 34, 0}, - {24, 58, 0}, - {0, 77, 0}, - {0, 86, 0}, - {0, 83, 0}, - {0, 68, 39}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {136, 180, 122}, - {0, 101, 166}, - {29, 69, 208}, - {80, 44, 203}, - {123, 32, 153}, - {146, 36, 72}, - {144, 55, 0}, - {116, 84, 0}, - {70, 116, 0}, - {19, 141, 0}, - {0, 153, 0}, - {0, 149, 0}, - {0, 130, 90}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {207, 254, 188}, - {51, 183, 233}, - {98, 151, 254}, - {150, 126, 254}, - {193, 113, 220}, - {217, 117, 137}, - {214, 137, 45}, - {186, 166, 0}, - {140, 198, 0}, - {88, 224, 0}, - {44, 236, 0}, - {20, 232, 63}, - {23, 213, 155}, - {79, 79, 79}, - {0, 0, 0}, - {0, 0, 0}, - {207, 254, 188}, - {144, 231, 207}, - {163, 218, 224}, - {184, 207, 222}, - {201, 202, 201}, - {211, 204, 168}, - {210, 212, 130}, - {198, 224, 99}, - {180, 237, 81}, - {159, 247, 83}, - {141, 252, 104}, - {131, 251, 137}, - {132, 243, 175}, - {184, 184, 184}, - {0, 0, 0}, - {0, 0, 0}, - {83, 83, 55}, - {0, 23, 89}, - {0, 0, 121}, - {40, 0, 117}, - {73, 0, 79}, - {90, 0, 17}, - {88, 0, 0}, - {67, 10, 0}, - {32, 34, 0}, - {0, 53, 0}, - {0, 63, 0}, - {0, 60, 0}, - {0, 45, 30}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {147, 148, 110}, - {0, 69, 154}, - {40, 38, 196}, - {91, 12, 191}, - {134, 0, 141}, - {157, 4, 60}, - {155, 23, 0}, - {127, 52, 0}, - {81, 84, 0}, - {30, 109, 0}, - {0, 121, 0}, - {0, 117, 0}, - {0, 98, 78}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {221, 222, 173}, - {65, 142, 217}, - {112, 110, 254}, - {164, 84, 255}, - {208, 72, 204}, - {231, 76, 122}, - {229, 95, 29}, - {200, 125, 0}, - {154, 157, 0}, - {102, 182, 0}, - {58, 195, 0}, - {34, 191, 47}, - {37, 171, 140}, - {79, 79, 79}, - {0, 0, 0}, - {0, 0, 0}, - {221, 222, 173}, - {158, 189, 191}, - {177, 176, 208}, - {198, 166, 206}, - {216, 161, 185}, - {225, 163, 152}, - {224, 171, 114}, - {213, 183, 83}, - {194, 195, 66}, - {173, 206, 68}, - {155, 211, 88}, - {145, 209, 122}, - {146, 201, 159}, - {184, 184, 184}, - {0, 0, 0}, - {0, 0, 0}, - {87, 87, 133}, - {0, 26, 167}, - {5, 2, 198}, - {44, 0, 195}, - {77, 0, 157}, - {95, 0, 94}, - {93, 0, 25}, - {71, 14, 0}, - {36, 38, 0}, - {0, 57, 0}, - {0, 66, 0}, - {0, 63, 38}, - {0, 49, 108}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {153, 153, 216}, - {0, 74, 254}, - {46, 43, 254}, - {97, 17, 254}, - {140, 5, 247}, - {164, 9, 165}, - {161, 28, 74}, - {133, 57, 0}, - {87, 89, 0}, - {36, 114, 0}, - {0, 126, 10}, - {0, 122, 92}, - {0, 103, 183}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {229, 228, 254}, - {74, 148, 254}, - {120, 116, 254}, - {172, 91, 254}, - {216, 78, 254}, - {239, 82, 254}, - {237, 102, 166}, - {208, 131, 89}, - {162, 163, 46}, - {110, 189, 51}, - {66, 201, 102}, - {42, 197, 184}, - {45, 178, 254}, - {79, 79, 79}, - {0, 0, 0}, - {0, 0, 0}, - {229, 228, 254}, - {166, 196, 254}, - {185, 183, 254}, - {206, 172, 254}, - {224, 167, 254}, - {233, 169, 254}, - {232, 177, 252}, - {221, 189, 220}, - {202, 202, 203}, - {181, 212, 205}, - {163, 217, 226}, - {153, 216, 254}, - {154, 208, 254}, - {184, 184, 184}, - {0, 0, 0}, - {0, 0, 0}, - {90, 71, 97}, - {0, 11, 130}, - {8, 0, 162}, - {47, 0, 158}, - {80, 0, 120}, - {98, 0, 58}, - {96, 0, 0}, - {74, 0, 0}, - {39, 22, 0}, - {0, 42, 0}, - {0, 51, 0}, - {0, 48, 2}, - {0, 33, 72}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {158, 132, 166}, - {4, 53, 210}, - {50, 22, 252}, - {101, 0, 247}, - {144, 0, 197}, - {168, 0, 116}, - {165, 7, 25}, - {137, 36, 0}, - {91, 68, 0}, - {40, 93, 0}, - {0, 105, 0}, - {0, 101, 42}, - {0, 82, 134}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {234, 201, 246}, - {79, 121, 254}, - {125, 89, 254}, - {177, 63, 254}, - {221, 51, 254}, - {245, 55, 195}, - {242, 74, 102}, - {214, 104, 24}, - {167, 136, 0}, - {115, 161, 0}, - {71, 174, 37}, - {48, 170, 120}, - {50, 150, 213}, - {79, 79, 79}, - {0, 0, 0}, - {0, 0, 0}, - {234, 201, 246}, - {171, 168, 254}, - {190, 155, 254}, - {211, 145, 254}, - {229, 140, 254}, - {239, 142, 225}, - {237, 150, 187}, - {226, 162, 156}, - {207, 174, 139}, - {186, 185, 141}, - {168, 190, 161}, - {159, 188, 195}, - {160, 180, 232}, - {184, 184, 184}, - {0, 0, 0}, - {0, 0, 0}, - {66, 85, 88}, - {0, 25, 121}, - {0, 1, 153}, - {23, 0, 149}, - {56, 0, 111}, - {74, 0, 49}, - {72, 0, 0}, - {51, 12, 0}, - {16, 36, 0}, - {0, 55, 0}, - {0, 65, 0}, - {0, 62, 0}, - {0, 47, 63}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {125, 151, 154}, - {0, 72, 198}, - {17, 40, 240}, - {69, 15, 235}, - {112, 3, 185}, - {135, 7, 104}, - {132, 26, 12}, - {104, 55, 0}, - {59, 87, 0}, - {7, 112, 0}, - {0, 124, 0}, - {0, 120, 30}, - {0, 101, 121}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {192, 225, 230}, - {37, 145, 254}, - {83, 114, 254}, - {135, 88, 254}, - {179, 76, 254}, - {202, 80, 179}, - {200, 99, 86}, - {171, 129, 8}, - {125, 160, 0}, - {73, 186, 0}, - {29, 198, 21}, - {5, 194, 104}, - {8, 175, 197}, - {79, 79, 79}, - {0, 0, 0}, - {0, 0, 0}, - {192, 225, 230}, - {129, 193, 248}, - {148, 180, 254}, - {169, 170, 254}, - {187, 165, 242}, - {196, 166, 209}, - {195, 174, 171}, - {184, 186, 140}, - {165, 199, 123}, - {144, 209, 125}, - {126, 214, 145}, - {116, 213, 179}, - {118, 205, 216}, - {184, 184, 184}, - {0, 0, 0}, - {0, 0, 0}, - {69, 69, 69}, - {0, 16, 110}, - {0, 0, 142}, - {33, 0, 138}, - {66, 0, 100}, - {84, 0, 38}, - {82, 0, 0}, - {60, 3, 0}, - {25, 27, 0}, - {0, 46, 0}, - {0, 56, 0}, - {0, 53, 0}, - {0, 38, 51}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {134, 134, 134}, - {0, 64, 187}, - {35, 32, 228}, - {86, 7, 223}, - {129, 0, 174}, - {153, 0, 92}, - {150, 18, 1}, - {122, 47, 0}, - {76, 79, 0}, - {25, 104, 0}, - {0, 116, 0}, - {0, 112, 19}, - {0, 93, 110}, - {0, 0, 0}, - {0, 0, 0}, - {0, 0, 0}, - {207, 207, 207}, - {60, 136, 254}, - {107, 104, 254}, - {159, 79, 254}, - {203, 66, 248}, - {226, 70, 165}, - {224, 90, 72}, - {195, 119, 0}, - {149, 151, 0}, - {97, 177, 0}, - {53, 189, 8}, - {29, 185, 91}, - {32, 166, 183}, - {79, 79, 79}, - {0, 0, 0}, - {0, 0, 0}, - {207, 207, 207}, - {148, 178, 229}, - {166, 165, 246}, - {188, 155, 244}, - {205, 150, 224}, - {215, 152, 190}, - {214, 159, 152}, - {202, 171, 121}, - {183, 184, 104}, - {162, 195, 106}, - {145, 200, 126}, - {135, 198, 160}, - {136, 190, 197}, - {184, 184, 184}, - {0, 0, 0}, - {0, 0, 0}}; - -void Emu::SaveAudioBufferState() -{ - extra_fade_sound_in = fade_sound_in; - extra_fade_sound_out = fade_sound_out; - extra_sound_buf_changed_count = sound_buf_changed_count; - sound_buf->SaveAudioBufferState(); -} -void Emu::RestoreAudioBufferState() -{ - fade_sound_in = extra_fade_sound_in; - fade_sound_out = extra_fade_sound_out; - sound_buf_changed_count = extra_sound_buf_changed_count; - sound_buf->RestoreAudioBufferState(); -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/emu.hpp b/quicknes/source/quickerNES/core/emu.hpp deleted file mode 100644 index b8e164a263a..00000000000 --- a/quicknes/source/quickerNES/core/emu.hpp +++ /dev/null @@ -1,322 +0,0 @@ -#pragma once - -// NES video game console emulator with snapshot support - -// Emu 0.7.0 - -#include "apu/multiBuffer.hpp" -#include "cart.hpp" -#include "core.hpp" - -namespace quickerNES -{ - -class State; - -class Emu -{ - public: - Emu(); - virtual ~Emu(); - - // Basic setup - - // Load iNES file into emulator and clear recording - const char* load_ines(const uint8_t *buffer); - - // Set sample rate for sound generation - const char *set_sample_rate(long); - - // Size and depth of graphics buffer required for rendering. Note that this - // is larger than the actual image, with a temporary area around the edge - // that gets filled with junk. - static const uint16_t buffer_width = Ppu::buffer_width; - uint16_t buffer_height() const { return buffer_height_; } - static const uint8_t bits_per_pixel = 8; - - // Set graphics buffer to render pixels to. Pixels points to top-left pixel and - // row_bytes is the number of bytes to get to the next line (positive or negative). - void set_pixels(void *pixels, long row_bytes); - - // Size of image generated in graphics buffer - static const uint16_t image_width = 256; - static const uint16_t image_height = 240; - - const uint8_t *getHostPixels() const { return emu.ppu.host_pixels; } - - int get_joypad_read_count() const { return emu.joypad_read_count; } - void set_tracecb(void (*cb)(unsigned int *dest)) { emu.set_tracecb(cb); } - - // Save emulator state variants - void serializeState(jaffarCommon::serializer::Base &serializer) const { emu.serializeState(serializer); } - void deserializeState(jaffarCommon::deserializer::Base &deserializer) { emu.deserializeState(deserializer); } - void setNTABBlockSize(const size_t size) { emu.setNTABBlockSize(size); } - void enableStateBlock(const std::string &block) { emu.enableStateBlock(block); }; - void disableStateBlock(const std::string &block) { emu.disableStateBlock(block); }; - - void setControllerType(Core::controllerType_t type) { emu.setControllerType(type); } - - // Basic emulation - - // Emulate one video frame using joypad1 and joypad2 as input. Afterwards, image - // and sound are available for output using the accessors below. - virtual const char *emulate_frame(uint32_t joypad1, uint32_t joypad2, uint32_t arkanoid_latch, uint8_t arkanoid_fire); - - // Emulate one video frame using joypad1 and joypad2 as input, but skips drawing. - // Afterwards, audio is available for output using the accessors below. - virtual const char *emulate_skip_frame(uint32_t joypad1, uint32_t joypad2, uint32_t arkanoid_latch, uint8_t arkanoid_fire); - - // Maximum size of palette that can be generated - static const uint16_t max_palette_size = 256; - - // Result of current frame - struct frame_t - { - static const uint8_t left = 8; - - int burst_phase; // NTSC burst phase for frame (0, 1, or 2) - - int sample_count; // number of samples (always a multiple of chan_count) - int chan_count; // 1: mono, 2: stereo - - int top; // top-left position of image in graphics buffer - unsigned char *pixels; // pointer to top-left pixel of image - long pitch; // number of bytes to get to next row of image - - int palette_begin; // first host palette entry, as set by set_palette_range() - int palette_size; // number of entries used for current frame - short palette[max_palette_size]; // [palette_begin to palette_begin+palette_size-1] - }; - frame_t const &frame() const { return *frame_; } - - // Read samples for the current frame. Returns number of samples read into buffer. - // Currently all samples must be read in one call. - virtual long read_samples(short *out, long max_samples); - - // Additional features - - // Use already-loaded cartridge. Retains pointer, so it must be kept around until - // closed. A cartridge can be shared among multiple emulators. After opening, - // cartridge's CHR data shouldn't be modified since a copy is cached internally. - const char *set_cart(Cart const *new_cart); - - // Pointer to current cartridge, or NULL if none is loaded - Cart const *cart() const { return emu.cart; } - - // Emulate powering NES off and then back on. If full_reset is false, emulates - // pressing the reset button only, which doesn't affect memory, otherwise - // emulates powering system off then on. - virtual void reset(bool full_reset = true, bool erase_battery_ram = false); - - // Number of undefined CPU instructions encountered. Cleared after reset() and - // load_state(). A non-zero value indicates that cartridge is probably - // incompatible. - unsigned long error_count() const { return emu.error_count; } - - // Sound - - // Set sample rate and use a custom sound buffer instead of the default - // mono buffer, i.e. Buffer, Effects_Buffer, etc.. - const char *set_sample_rate(long rate, Multi_Buffer *); - - // Adjust effective frame rate by changing how many samples are generated each frame. - // Allows fine tuning of frame rate to improve synchronization. - void set_frame_rate(double rate); - - // Number of sound channels for current cartridge - int channel_count() const { return channel_count_; } - - // Frequency equalizer parameters - struct equalizer_t - { - double treble; // 5.0 = extra-crisp, -200.0 = muffled - long bass; // 0 = deep, 20000 = tinny - }; - - // Current frequency equalization - equalizer_t const &equalizer() const { return equalizer_; } - - // Change frequency equalization - void set_equalizer(equalizer_t const &); - - // Equalizer presets - static equalizer_t const nes_eq; // NES - static equalizer_t const famicom_eq; // Famicom - static equalizer_t const tv_eq; // TV speaker - static equalizer_t const flat_eq; // Flat EQ - static equalizer_t const crisp_eq; // Crisp EQ (Treble boost) - static equalizer_t const tinny_eq; // Tinny EQ (Like a handheld speaker) - - // File save/load - - // True if current cartridge claims it uses battery-backed memory - bool has_battery_ram() const { return cart()->has_battery_ram(); } - - // Graphics - - // Number of frames generated per second - enum - { - frame_rate = 60 - }; - - // Size of fixed NES color table (including the 8 color emphasis modes) - enum - { - color_table_size = 8 * 64 - }; - - // NES color lookup table based on standard NTSC TV decoder. Use nes_ntsc.h to - // generate a palette with custom parameters. - struct rgb_t - { - unsigned char red, green, blue; - }; - static rgb_t const nes_colors[color_table_size]; - - // Hide/show/enhance sprites. Sprite mode does not affect emulation accuracy. - enum sprite_mode_t - { - sprites_hidden = 0, - sprites_visible = 8, // limit of 8 sprites per scanline as on NES (default) - sprites_enhanced = 64 // unlimited sprites per scanline (no flickering) - }; - void set_sprite_mode(sprite_mode_t n) { emu.ppu.sprite_limit = n; } - - // Set range of host palette entries to use in graphics buffer; default uses - // all of them. Begin will be rounded up to next multiple of palette_alignment. - // Use frame().palette_begin to find the adjusted beginning entry used. - enum - { - palette_alignment = 64 - }; - void set_palette_range(int begin, int end = 256); - - // Access to emulated memory, for viewer/cheater/debugger - - // CHR - uint8_t *chr_mem() const; - long chr_size() const; - void write_chr(void const *, long count, long offset); - - // Nametable - uint8_t *nametable_mem() const { return emu.ppu.impl->nt_ram; } - long nametable_size() const { return 0x1000; } - - // Built-in 2K memory - enum - { - low_mem_size = 0x800 - }; - - uint8_t *get_low_mem() const { return (uint8_t *)emu.low_mem; } - size_t get_low_mem_size() const { return low_mem_size; } - - // Optional 8K memory - enum - { - high_mem_size = 0x2000 - }; - uint8_t *high_mem() const { return emu.impl->sram; } - size_t get_high_mem_size() const { return high_mem_size; } - - // Sprite memory - uint8_t *spr_mem() const { return emu.ppu.getSpriteRAM(); } - uint16_t spr_mem_size() const { return emu.ppu.getSpriteRAMSize(); } - - // End of public interface - public: - const char *set_sample_rate(long rate, class Buffer *); - const char *set_sample_rate(long rate, class Nes_Effects_Buffer *); - void irq_changed() { emu.irq_changed(); } - - // Palette memory - uint8_t *pal_mem() const { return emu.ppu.getPaletteRAM(); } - uint16_t pal_mem_size() const { return emu.ppu.getPaletteRAMSize(); } - - uint8_t peek_prg(nes_addr_t addr) const { return *emu.get_code(addr); } - void poke_prg(nes_addr_t addr, uint8_t value) { *emu.get_code(addr) = value; } - uint8_t peek_ppu(int addr) { return emu.ppu.peekaddr(addr); } - - uint8_t get_ppu2000() const { return emu.ppu.w2000; } - - void get_regs(unsigned int *dest) const - { - dest[0] = emu.r.a; - dest[1] = emu.r.x; - dest[2] = emu.r.y; - dest[3] = emu.r.sp; - dest[4] = emu.r.pc; - dest[5] = emu.r.status; - } - - private: - frame_t *frame_; - int buffer_height_; - bool fade_sound_in; - bool fade_sound_out; - virtual const char *init_(); - - virtual void loading_state(State const &) {} - long timestamp() const { return 0; } - void set_timestamp(long t) {} - - private: - // noncopyable - Emu(const Emu &); - Emu &operator=(const Emu &); - - // sound - Multi_Buffer *default_sound_buf; - Multi_Buffer *sound_buf; - unsigned sound_buf_changed_count; - Silent_Buffer silent_buffer; - equalizer_t equalizer_; - int channel_count_; - bool sound_enabled; - void enable_sound(bool); - void clear_sound_buf(); - void fade_samples(blip_sample_t *, int size, int step); - - void *pixels_base_ptr; - char *host_pixels; - int host_palette_size; - frame_t single_frame; - Cart private_cart; - Core emu; // large; keep at end - - bool init_called; - const char *auto_init(); - - bool extra_fade_sound_in; - bool extra_fade_sound_out; - unsigned extra_sound_buf_changed_count; - - public: - void SaveAudioBufferState(); - void RestoreAudioBufferState(); - - inline void *get_pixels_base_ptr() - { - return pixels_base_ptr; - } -}; - -inline void Emu::set_pixels(void *p, long n) -{ - pixels_base_ptr = p; - host_pixels = (char *)p + n; - emu.ppu.host_row_bytes = n; -} - -inline uint8_t *Emu::chr_mem() const -{ - return cart()->chr_size() ? (uint8_t *)cart()->chr() : emu.ppu.impl->chr_ram; -} - -inline long Emu::chr_size() const -{ - return cart()->chr_size() ? cart()->chr_size() : emu.ppu.chr_addr_size; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper.cpp b/quicknes/source/quickerNES/core/mappers/mapper.cpp deleted file mode 100644 index 7becb10b3f7..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper.cpp +++ /dev/null @@ -1,294 +0,0 @@ - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" -#include "../core.hpp" -#include - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -/* - New mapping distribution by Sergio Martin (eien86) - https://github.com/SergioMartin86/jaffarPlus -*/ -#include "mapper000.hpp" -#include "mapper001.hpp" -#include "mapper002.hpp" -#include "mapper003.hpp" -#include "mapper004.hpp" -#include "mapper005.hpp" -#include "mapper007.hpp" -#include "mapper009.hpp" -#include "mapper010.hpp" -#include "mapper011.hpp" -#include "mapper015.hpp" -#include "mapper019.hpp" -#include "mapper021.hpp" -#include "mapper022.hpp" -#include "mapper023.hpp" -#include "mapper024.hpp" -#include "mapper025.hpp" -#include "mapper026.hpp" -#include "mapper030.hpp" -#include "mapper032.hpp" -#include "mapper033.hpp" -#include "mapper034.hpp" -#include "mapper060.hpp" -#include "mapper066.hpp" -#include "mapper069.hpp" -#include "mapper070.hpp" -#include "mapper071.hpp" -#include "mapper073.hpp" -#include "mapper075.hpp" -#include "mapper078.hpp" -#include "mapper079.hpp" -#include "mapper085.hpp" -#include "mapper086.hpp" -#include "mapper087.hpp" -#include "mapper088.hpp" -#include "mapper089.hpp" -#include "mapper093.hpp" -#include "mapper094.hpp" -#include "mapper097.hpp" -#include "mapper113.hpp" -#include "mapper140.hpp" -#include "mapper152.hpp" -#include "mapper154.hpp" -#include "mapper156.hpp" -#include "mapper180.hpp" -#include "mapper184.hpp" -#include "mapper190.hpp" -#include "mapper193.hpp" -#include "mapper206.hpp" -#include "mapper207.hpp" -#include "mapper232.hpp" -#include "mapper240.hpp" -#include "mapper241.hpp" -#include "mapper244.hpp" -#include "mapper246.hpp" - -namespace quickerNES -{ - -Mapper::Mapper() -{ - emu_ = NULL; - static char c; - state = &c; // TODO: state must not be null? - state_size = 0; -} - -Mapper::~Mapper() -{ -} - -// Sets mirroring, maps first 8K CHR in, first and last 16K of PRG, -// intercepts writes to upper half of memory, and clears registered state. -void Mapper::default_reset_state() -{ - int mirroring = cart_->mirroring(); - if (mirroring & 8) - mirror_full(); - else if (mirroring & 1) - mirror_vert(); - else - mirror_horiz(); - - set_chr_bank(0, bank_8k, 0); - - set_prg_bank(0x8000, bank_16k, 0); - set_prg_bank(0xC000, bank_16k, last_bank); - - intercept_writes(0x8000, 0x8000); - - memset(state, 0, state_size); -} - -void Mapper::reset() -{ - default_reset_state(); - reset_state(); - apply_mapping(); -} - -void mapper_state_t::write(const void *p, unsigned long s) -{ - size = s; - memcpy(data, p, s); -} - -int mapper_state_t::read(void *p, unsigned long s) const -{ - if ((long)s > size) - s = size; - memcpy(p, data, s); - return s; -} - -void Mapper::save_state(mapper_state_t &out) -{ - out.write(state, state_size); -} - -void Mapper::load_state(mapper_state_t const &in) -{ - default_reset_state(); - read_state(in); - apply_mapping(); -} - -void Mapper::read_state(mapper_state_t const &in) -{ - memset(state, 0, state_size); - in.read(state, state_size); - apply_mapping(); -} - -// Timing - -void Mapper::irq_changed() { emu_->irq_changed(); } - -nes_time_t Mapper::next_irq(nes_time_t) { return no_irq; } - -void Mapper::a12_clocked() {} - -void Mapper::run_until(nes_time_t) {} - -void Mapper::end_frame(nes_time_t) {} - -bool Mapper::ppu_enabled() const { return emu().ppu.w2001 & 0x08; } - -// Sound - -int Mapper::channel_count() const { return 0; } - -void Mapper::set_channel_buf(int, Blip_Buffer *) {} - -void Mapper::set_treble(blip_eq_t const &) {} - -// Memory mapping - -void Mapper::set_prg_bank(nes_addr_t addr, bank_size_t bs, int bank) -{ - int bank_size = 1 << bs; - - int bank_count = cart_->prg_size() >> bs; - if (bank < 0) - bank += bank_count; - - if (bank >= bank_count) - bank %= bank_count; - - emu().map_code(addr, bank_size, cart_->prg() + (bank << bs)); - - if (unsigned(addr - 0x6000) < 0x2000) - emu().enable_prg_6000(); -} - -void Mapper::set_chr_bank(nes_addr_t addr, bank_size_t bs, int bank) -{ - emu().ppu.render_until(emu().clock()); - emu().ppu.set_chr_bank(addr, 1 << bs, bank << bs); -} - -void Mapper::set_chr_bank_ex(nes_addr_t addr, bank_size_t bs, int bank) -{ - emu().ppu.render_until(emu().clock()); - emu().ppu.set_chr_bank_ex(addr, 1 << bs, bank << bs); -} - -void Mapper::mirror_manual(int page0, int page1, int page2, int page3) -{ - emu().ppu.render_bg_until(emu().clock()); - emu().ppu.set_nt_banks(page0, page1, page2, page3); -} - -void Mapper::intercept_reads(nes_addr_t addr, unsigned size) -{ - emu().add_mapper_intercept(addr, size, true, false); -} - -void Mapper::intercept_writes(nes_addr_t addr, unsigned size) -{ - emu().add_mapper_intercept(addr, size, false, true); -} - -void Mapper::enable_sram(bool enabled, bool read_only) -{ - emu_->enable_sram(enabled, read_only); -} - -Mapper *Mapper::getMapperFromCode(const int mapperCode) -{ - Mapper *mapper = nullptr; - - // Now checking if the detected mapper code is supported - if (mapperCode == 0) mapper = new Mapper000(); - if (mapperCode == 1) mapper = new Mapper001(); - if (mapperCode == 2) mapper = new Mapper002(); - if (mapperCode == 3) mapper = new Mapper003(); - if (mapperCode == 4) mapper = new Mapper004(); - if (mapperCode == 5) mapper = new Mapper005(); - if (mapperCode == 7) mapper = new Mapper007(); - if (mapperCode == 9) mapper = new Mapper009(); - if (mapperCode == 10) mapper = new Mapper010(); - if (mapperCode == 11) mapper = new Mapper011(); - if (mapperCode == 15) mapper = new Mapper015(); - if (mapperCode == 19) mapper = new Mapper019(); - if (mapperCode == 21) mapper = new Mapper021(); - if (mapperCode == 22) mapper = new Mapper022(); - if (mapperCode == 23) mapper = new Mapper023(); - if (mapperCode == 24) mapper = new Mapper024(); - if (mapperCode == 25) mapper = new Mapper025(); - if (mapperCode == 26) mapper = new Mapper026(); - if (mapperCode == 30) mapper = new Mapper030(); - if (mapperCode == 32) mapper = new Mapper032(); - if (mapperCode == 33) mapper = new Mapper033(); - if (mapperCode == 34) mapper = new Mapper034(); - if (mapperCode == 60) mapper = new Mapper060(); - if (mapperCode == 66) mapper = new Mapper066(); - if (mapperCode == 69) mapper = new Mapper069(); - if (mapperCode == 70) mapper = new Mapper070(); - if (mapperCode == 71) mapper = new Mapper071(); - if (mapperCode == 73) mapper = new Mapper073(); - if (mapperCode == 75) mapper = new Mapper075(); - if (mapperCode == 78) mapper = new Mapper078(); - if (mapperCode == 79) mapper = new Mapper079(); - if (mapperCode == 85) mapper = new Mapper085(); - if (mapperCode == 86) mapper = new Mapper086(); - if (mapperCode == 87) mapper = new Mapper087(); - if (mapperCode == 88) mapper = new Mapper088(); - if (mapperCode == 89) mapper = new Mapper089(); - if (mapperCode == 93) mapper = new Mapper093(); - if (mapperCode == 94) mapper = new Mapper094(); - if (mapperCode == 97) mapper = new Mapper097(); - if (mapperCode == 113) mapper = new Mapper113(); - if (mapperCode == 140) mapper = new Mapper140(); - if (mapperCode == 152) mapper = new Mapper152(); - if (mapperCode == 154) mapper = new Mapper154(); - if (mapperCode == 156) mapper = new Mapper156(); - if (mapperCode == 180) mapper = new Mapper180(); - if (mapperCode == 184) mapper = new Mapper184(); - if (mapperCode == 190) mapper = new Mapper190(); - if (mapperCode == 193) mapper = new Mapper193(); - if (mapperCode == 206) mapper = new Mapper206(); - if (mapperCode == 207) mapper = new Mapper207(); - if (mapperCode == 232) mapper = new Mapper232(); - if (mapperCode == 240) mapper = new Mapper240(); - if (mapperCode == 241) mapper = new Mapper241(); - if (mapperCode == 244) mapper = new Mapper244(); - if (mapperCode == 246) mapper = new Mapper246(); - - return mapper; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper.hpp b/quicknes/source/quickerNES/core/mappers/mapper.hpp deleted file mode 100644 index d7b083f6ab3..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper.hpp +++ /dev/null @@ -1,212 +0,0 @@ -#pragma once - -// NES mapper interface -// Emu 0.7.0 - -#include "../cart.hpp" -#include "../cpu.hpp" -#include - -namespace quickerNES -{ - -class Blip_Buffer; -class blip_eq_t; -class Core; - -// Increase this (and let me know) if your mapper requires more state. This only -// sets the size of the in-memory buffer; it doesn't affect the file format at all. -static unsigned const max_mapper_state_size = 512; // was 256, needed more for VRC7 audio state -struct mapper_state_t -{ - int size; - union - { - double align; - uint8_t data[max_mapper_state_size]; - }; - - void write(const void *p, unsigned long s); - int read(void *p, unsigned long s) const; -}; - -class Mapper -{ - public: - virtual ~Mapper(); - - // Reset mapper to power-up state. - virtual void reset(); - - // Save snapshot of mapper state. Default saves registered state. - virtual void save_state(mapper_state_t &); - - // Resets mapper, loads state, then applies it - virtual void load_state(mapper_state_t const &); - - // I/O - - // Read from memory - virtual int read(nes_time_t, nes_addr_t); - - // Write to memory - virtual void write(nes_time_t, nes_addr_t, int data) = 0; - - // Write to memory below 0x8000 (returns false if mapper didn't handle write) - virtual bool write_intercepted(nes_time_t, nes_addr_t, int data); - - // Timing - - // Time returned when current mapper state won't ever cause an IRQ - enum - { - no_irq = LONG_MAX / 2 - }; - - // Time next IRQ will occur at - virtual nes_time_t next_irq(nes_time_t present); - - // Run mapper until given time - virtual void run_until(nes_time_t); - - // End video frame of given length - virtual void end_frame(nes_time_t length); - - // Sound - - // Number of sound channels - virtual int channel_count() const; - - // Set sound buffer for channel to output to, or NULL to silence channel. - virtual void set_channel_buf(int index, Blip_Buffer *); - - // Set treble equalization - virtual void set_treble(blip_eq_t const &); - - // Misc - - // Called when bit 12 of PPU's VRAM address changes from 0 to 1 due to - // $2006 and $2007 accesses (but not due to PPU scanline rendering). - virtual void a12_clocked(); - - void *state; - unsigned state_size; - - protected: - // Services provided for derived mapper classes - Mapper(); - - // Register state data to automatically save and load. Be sure the binary - // layout is suitable for use in a file, including any byte-order issues. - // Automatically cleared to zero by default reset(). - void register_state(void *, unsigned); - - // Enable 8K of RAM at 0x6000-0x7FFF, optionally read-only. - void enable_sram(bool enabled = true, bool read_only = false); - - // Cause CPU writes within given address range to call mapper's write() function. - // Might map a larger address range, which the mapper can ignore and pass to - // Mapper::write(). The range 0x8000-0xffff is always intercepted by the mapper. - void intercept_writes(nes_addr_t addr, unsigned size); - - // Cause CPU reads within given address range to call mapper's read() function. - // Might map a larger address range, which the mapper can ignore and pass to - // Mapper::read(). CPU opcode/operand reads and low-memory reads always - // go directly to memory and cannot be intercepted. - void intercept_reads(nes_addr_t addr, unsigned size); - - // Bank sizes for mapping - enum bank_size_t - { // 1 << bank_Xk = X * 1024 - bank_1k = 10, - bank_2k = 11, - bank_4k = 12, - bank_8k = 13, - bank_16k = 14, - bank_32k = 15 - }; - - // Index of last PRG/CHR bank. Last_bank selects last bank, last_bank - 1 - // selects next-to-last bank, etc. - enum - { - last_bank = -1 - }; - - // Map 'size' bytes from 'PRG + bank * size' to CPU address space starting at 'addr' - void set_prg_bank(nes_addr_t addr, bank_size_t size, int bank); - - // Map 'size' bytes from 'CHR + bank * size' to PPU address space starting at 'addr' - void set_chr_bank(nes_addr_t addr, bank_size_t size, int bank); - void set_chr_bank_ex(nes_addr_t addr, bank_size_t size, int bank); - - // Set PPU mirroring. All mappings implemented using mirror_manual(). - void mirror_manual(int page0, int page1, int page2, int page3); - void mirror_single(int page); - void mirror_horiz(int page = 0); - void mirror_vert(int page = 0); - void mirror_full(); - - // True if PPU rendering is enabled. Some mappers watch PPU memory accesses to determine - // when scanlines occur, and can only do this when rendering is enabled. - bool ppu_enabled() const; - - // Cartridge being emulated - Cart const &cart() const { return *cart_; } - - // Must be called when next_irq()'s return value is earlier than previous, - // current CPU run can be stopped earlier. Best to call whenever time may - // have changed (no performance impact if called even when time didn't change). - void irq_changed(); - - // Handle data written to mapper that doesn't handle bus conflict arising due to - // PRG also reading data. Returns data that mapper should act as if were - // written. Currently always returns 'data' and just checks that data written is - // the same as byte in PRG at same address and writes debug message if it doesn't. - int handle_bus_conflict(nes_addr_t addr, int data); - - // Reference to emulator that uses this mapper. - Core &emu() const { return *emu_; } - - protected: - // Services derived classes provide - - // Read state from snapshot. Default reads data into registered state, then calls - // apply_mapping(). - virtual void read_state(mapper_state_t const &); - - // Called by default reset() before apply_mapping() is called. - virtual void reset_state() {} - - // End of general interface - - public: - Cart const *cart_; - Core *emu_; - - // Apply current mapping state to hardware. Called after reading mapper state - // from a snapshot. - virtual void apply_mapping() = 0; - - void default_reset_state(); - - static Mapper *getMapperFromCode(const int mapperCode); -}; - -inline int Mapper::handle_bus_conflict(nes_addr_t addr, int data) { return data; } -inline void Mapper::mirror_horiz(int p) { mirror_manual(p, p, p ^ 1, p ^ 1); } -inline void Mapper::mirror_vert(int p) { mirror_manual(p, p ^ 1, p, p ^ 1); } -inline void Mapper::mirror_single(int p) { mirror_manual(p, p, p, p); } -inline void Mapper::mirror_full() { mirror_manual(0, 1, 2, 3); } - -inline void Mapper::register_state(void *p, unsigned s) -{ - state = p; - state_size = s; -} - -inline bool Mapper::write_intercepted(nes_time_t, nes_addr_t, int) { return false; } - -inline int Mapper::read(nes_time_t, nes_addr_t) { return -1; } // signal to caller - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper000.hpp b/quicknes/source/quickerNES/core/mappers/mapper000.hpp deleted file mode 100644 index f62480983c0..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper000.hpp +++ /dev/null @@ -1,38 +0,0 @@ -#pragma once - -// Common simple mappers - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -// NROM - -namespace quickerNES -{ - -class Mapper000 : public Mapper -{ - public: - Mapper000() {} - - virtual void apply_mapping() {} - - virtual void write(nes_time_t, nes_addr_t, int) - { - // empty - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper001.hpp b/quicknes/source/quickerNES/core/mappers/mapper001.hpp deleted file mode 100644 index 0e609ee8e03..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper001.hpp +++ /dev/null @@ -1,129 +0,0 @@ -#pragma once - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" -#include - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -// MMC1 - -struct mmc1_state_t -{ - uint8_t regs[4]; // current registers (5 bits each) - uint8_t bit; // number of bits in buffer (0 to 4) - uint8_t buf; // currently buffered bits (new bits added to bottom) -}; -static_assert(sizeof(mmc1_state_t) == 6); - -class Mapper001 : public Mapper, mmc1_state_t -{ - public: - Mapper001() - { - mmc1_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual void reset_state() - { - regs[0] = 0x0f; - regs[1] = 0x00; - regs[2] = 0x01; - regs[3] = 0x00; - } - - virtual void apply_mapping() - { - enable_sram(); // early MMC1 always had SRAM enabled - register_changed(0); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - if (!(data & 0x80)) - { - buf |= (data & 1) << bit; - bit++; - - if (bit >= 5) - { - int reg = addr >> 13 & 3; - regs[reg] = buf & 0x1f; - - bit = 0; - buf = 0; - - register_changed(reg); - } - } - else - { - bit = 0; - buf = 0; - regs[0] |= 0x0c; - register_changed(0); - } - } - - void register_changed(int reg) - { - // Mirroring - if (reg == 0) - { - int mode = regs[0] & 3; - if (mode < 2) - mirror_single(mode & 1); - else if (mode == 2) - mirror_vert(); - else - mirror_horiz(); - } - - // CHR - if (reg < 3 && cart().chr_size() > 0) - { - if (regs[0] & 0x10) - { - set_chr_bank(0x0000, bank_4k, regs[1]); - set_chr_bank(0x1000, bank_4k, regs[2]); - } - else - { - set_chr_bank(0, bank_8k, regs[1] >> 1); - } - } - - // PRG - int bank = (regs[1] & 0x10) | (regs[3] & 0x0f); - if (!(regs[0] & 0x08)) - { - set_prg_bank(0x8000, bank_32k, bank >> 1); - } - else if (regs[0] & 0x04) - { - set_prg_bank(0x8000, bank_16k, bank); - set_prg_bank(0xC000, bank_16k, bank | 0x0f); - } - else - { - set_prg_bank(0x8000, bank_16k, bank & ~0x0f); - set_prg_bank(0xC000, bank_16k, bank); - } - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper002.hpp b/quicknes/source/quickerNES/core/mappers/mapper002.hpp deleted file mode 100644 index 5d2b5523db8..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper002.hpp +++ /dev/null @@ -1,48 +0,0 @@ -#pragma once - -// Common simple mappers - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -// UNROM - -class Mapper002 : public Mapper -{ - uint8_t bank; - - public: - Mapper002() - { - register_state(&bank, 1); - } - - virtual void apply_mapping() - { - enable_sram(); // at least one UNROM game needs sram (Bomberman 2) - set_prg_bank(0x8000, bank_16k, bank); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - bank = handle_bus_conflict(addr, data); - set_prg_bank(0x8000, bank_16k, data); - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper003.hpp b/quicknes/source/quickerNES/core/mappers/mapper003.hpp deleted file mode 100644 index d4bc5f33f0f..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper003.hpp +++ /dev/null @@ -1,47 +0,0 @@ -#pragma once - -// Common simple mappers - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -// CNROM - -class Mapper003 : public Mapper -{ - uint8_t bank; - - public: - Mapper003() - { - register_state(&bank, 1); - } - - virtual void apply_mapping() - { - set_chr_bank(0, bank_8k, bank & 7); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - bank = handle_bus_conflict(addr, data); - set_chr_bank(0, bank_8k, bank & 7); - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper004.hpp b/quicknes/source/quickerNES/core/mappers/mapper004.hpp deleted file mode 100644 index ad751dc20a5..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper004.hpp +++ /dev/null @@ -1,258 +0,0 @@ -#pragma once - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" - -#include "../core.hpp" -#include - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -// 264 or less breaks Gargoyle's Quest II -// 267 or less breaks Magician -int const irq_fine_tune = 268; -nes_time_t const first_scanline = 20 * Ppu::scanline_len + irq_fine_tune; -nes_time_t const last_scanline = first_scanline + 240 * Ppu::scanline_len; - -// MMC3 - -struct mmc3_state_t -{ - uint8_t banks[8]; // last writes to $8001 indexed by (mode & 7) - uint8_t mode; // $8000 - uint8_t mirror; // $a000 - uint8_t sram_mode; // $a001 - uint8_t irq_ctr; // internal counter - uint8_t irq_latch; // $c000 - uint8_t irq_enabled; // last write was to 0) $e000, 1) $e001 - uint8_t irq_flag; -}; -static_assert(sizeof(mmc3_state_t) == 15); - -class Mapper004 : public Mapper, mmc3_state_t -{ - public: - Mapper004() - { - mmc3_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual void reset_state() - { - memcpy(banks, "\0\2\4\5\6\7\0\1", sizeof banks); - - counter_just_clocked = 0; - next_time = 0; - mirror = 1; - - /* Cart specified vertical mirroring */ - if (cart().mirroring() & 1) - mirror = 0; - } - - void start_frame() { next_time = first_scanline; } - - virtual void apply_mapping() - { - write(0, 0xA000, mirror); - write(0, 0xA001, sram_mode); - update_chr_banks(); - update_prg_banks(); - start_frame(); - } - - void clock_counter() - { - if (counter_just_clocked) - counter_just_clocked--; - - if (!irq_ctr--) - { - irq_ctr = irq_latch; - // if ( !irq_latch ) - // dprintf( "MMC3 IRQ counter reloaded with 0\n" ); - } - - // dprintf( "%6d MMC3 IRQ clocked\n", time / ppu_overclock ); - if (irq_ctr == 0) - { - // if ( irq_enabled && !irq_flag ) - // dprintf( "%6d MMC3 IRQ triggered: %f\n", time / ppu_overclock, time / scanline_len.0 - 20 ); - irq_flag = irq_enabled; - } - } - - virtual void a12_clocked() - { - clock_counter(); - if (irq_enabled) - irq_changed(); - } - - virtual void end_frame(nes_time_t end_time) - { - run_until(end_time); - start_frame(); - } - - virtual nes_time_t next_irq(nes_time_t present) - { - run_until(present); - - if (!irq_enabled) - return no_irq; - - if (irq_flag) - return 0; - - if (!ppu_enabled()) - return no_irq; - - int remain = irq_ctr - 1; - if (remain < 0) - remain = irq_latch; - - long time = remain * 341L + next_time; - if (time > last_scanline) - return no_irq; - - return time / ppu_overclock + 1; - } - - void run_until(nes_time_t end_time) - { - bool bg_enabled = ppu_enabled(); - - if (next_time < 0) next_time = 0; - - end_time *= ppu_overclock; - while (next_time < end_time && next_time <= last_scanline) - { - if (bg_enabled) - clock_counter(); - next_time += Ppu::scanline_len; - } - } - - void update_chr_banks() - { - int chr_xor = (mode >> 7 & 1) * 0x1000; - set_chr_bank(0x0000 ^ chr_xor, bank_2k, banks[0] >> 1); - set_chr_bank(0x0800 ^ chr_xor, bank_2k, banks[1] >> 1); - set_chr_bank(0x1000 ^ chr_xor, bank_1k, banks[2]); - set_chr_bank(0x1400 ^ chr_xor, bank_1k, banks[3]); - set_chr_bank(0x1800 ^ chr_xor, bank_1k, banks[4]); - set_chr_bank(0x1c00 ^ chr_xor, bank_1k, banks[5]); - } - - void update_prg_banks() - { - set_prg_bank(0xA000, bank_8k, banks[7]); - nes_addr_t addr = 0x8000 + 0x4000 * (mode >> 6 & 1); - set_prg_bank(addr, bank_8k, banks[6]); - set_prg_bank(addr ^ 0x4000, bank_8k, last_bank - 1); - } - - void write_irq(nes_addr_t addr, int data) - { - switch (addr & 0xE001) - { - case 0xC000: - irq_latch = data; - break; - - case 0xC001: - /* MMC3 IRQ counter pathological behavior triggered if - * counter_just_clocked is 1 */ - counter_just_clocked = 2; - irq_ctr = 0; - break; - - case 0xE000: - irq_flag = false; - irq_enabled = false; - break; - - case 0xE001: - irq_enabled = true; - break; - } - if (irq_enabled) - irq_changed(); - } - - void write(nes_time_t time, nes_addr_t addr, int data) - { - switch (addr & 0xE001) - { - case 0x8000: - { - int changed = mode ^ data; - mode = data; - // avoid unnecessary bank updates - if (changed & 0x80) - update_chr_banks(); - if (changed & 0x40) - update_prg_banks(); - break; - } - - case 0x8001: - { - int bank = mode & 7; - banks[bank] = data; - if (bank < 6) - update_chr_banks(); - else - update_prg_banks(); - break; - } - - case 0xA000: - mirror = data; - if (!(cart().mirroring() & 0x08)) - { - if (mirror & 1) - mirror_horiz(); - else - mirror_vert(); - } - break; - - case 0xA001: - sram_mode = data; - // dprintf( "%02X->%04X\n", data, addr ); - - // Startropics 1 & 2 use MMC6 and always enable low 512 bytes of SRAM - if ((data & 0x3F) == 0x30) - enable_sram(true); - else - enable_sram(data & 0x80, data & 0x40); - break; - - default: - run_until(time); - write_irq(addr, data); - break; - } - } - - nes_time_t next_time; - int counter_just_clocked; // used only for debugging -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper005.hpp b/quicknes/source/quickerNES/core/mappers/mapper005.hpp deleted file mode 100644 index b1806d592a6..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper005.hpp +++ /dev/null @@ -1,152 +0,0 @@ -#pragma once - -// NES MMC5 mapper, currently only tailored for Castlevania 3 (U) - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "../core.hpp" -#include "mapper.hpp" -#include - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -struct mmc5_state_t -{ - enum - { - reg_count = 0x30 - }; - uint8_t regs[0x30]; - uint8_t irq_enabled; -}; -static_assert(sizeof(mmc5_state_t) == 0x31); - -// MMC5 - -class Mapper005 : public Mapper, mmc5_state_t -{ - public: - Mapper005() - { - mmc5_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual void reset_state() - { - irq_time = no_irq; - regs[0x00] = 2; - regs[0x01] = 3; - regs[0x14] = 0x7f; - regs[0x15] = 0x7f; - regs[0x16] = 0x7f; - regs[0x17] = 0x7f; - } - - virtual void read_state(mapper_state_t const &in) - { - Mapper::read_state(in); - irq_time = no_irq; - } - - enum - { - regs_addr = 0x5100 - }; - - virtual nes_time_t next_irq(nes_time_t) - { - if (irq_enabled & 0x80) - return irq_time; - - return no_irq; - } - - virtual bool write_intercepted(nes_time_t time, nes_addr_t addr, int data) - { - int reg = addr - regs_addr; - if ((unsigned)reg < reg_count) - { - regs[reg] = data; - switch (reg) - { - case 0x05: - mirror_manual(data & 3, data >> 2 & 3, data >> 4 & 3, data >> 6 & 3); - break; - - case 0x15: - set_prg_bank(0x8000, bank_16k, data >> 1 & 0x3f); - break; - - case 0x16: - set_prg_bank(0xC000, bank_8k, data & 0x7f); - break; - - case 0x17: - set_prg_bank(0xE000, bank_8k, data & 0x7f); - break; - - case 0x20: - case 0x21: - case 0x22: - case 0x23: - case 0x28: - case 0x29: - case 0x2a: - case 0x2b: - set_chr_bank(((reg >> 1 & 4) + (reg & 3)) * 0x400, bank_1k, data); - break; - } - } - else if (addr == 0x5203) - { - irq_time = no_irq; - if (data && data < 240) - { - irq_time = (341 * 21 + 128 + (data * 341)) / 3; - if (irq_time < time) - irq_time = no_irq; - } - irq_changed(); - } - else if (addr == 0x5204) - { - irq_enabled = data; - irq_changed(); - } - else - { - return false; - } - - return true; - } - - void apply_mapping() - { - static unsigned char list[] = { - 0x05, 0x15, 0x16, 0x17, 0x20, 0x21, 0x22, 0x23, 0x28, 0x29, 0x2a, 0x2b}; - - for (int i = 0; i < (int)sizeof list; i++) - write_intercepted(0, regs_addr + list[i], regs[list[i]]); - intercept_writes(0x5100, 0x200); - } - - virtual void write(nes_time_t, nes_addr_t, int) {} - - nes_time_t irq_time; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper007.hpp b/quicknes/source/quickerNES/core/mappers/mapper007.hpp deleted file mode 100644 index d557782aff8..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper007.hpp +++ /dev/null @@ -1,55 +0,0 @@ -#pragma once - -// Common simple mappers - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -// AOROM - -class Mapper007 : public Mapper -{ - uint8_t bank; - - public: - Mapper007() - { - register_state(&bank, 1); - } - - virtual void apply_mapping() - { - int b = bank; - bank = ~b; // force update - write(0, 0, b); - } - - virtual void write(nes_time_t, nes_addr_t, int data) - { - int changed = bank ^ data; - bank = data; - - if (changed & 0x10) - mirror_single(bank >> 4 & 1); - - if (changed & 0x0f) - set_prg_bank(0x8000, bank_32k, bank & 7); - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper009.hpp b/quicknes/source/quickerNES/core/mappers/mapper009.hpp deleted file mode 100644 index 709c1d79cba..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper009.hpp +++ /dev/null @@ -1,81 +0,0 @@ -#pragma once - -#include "mapper.hpp" -#include - -namespace quickerNES -{ - -// MMC2 - -class Mapper009 : public Mapper -{ - uint8_t regs[6]; // A,B,C,D,E,F - - void mirror(uint8_t val) - { - if (val & 1) - mirror_horiz(); - else - mirror_vert(); - } - - public: - Mapper009() - { - register_state(regs, sizeof(regs)); - } - - virtual void reset_state() - { - std::memset(regs, 0, sizeof(regs)); - } - - virtual void apply_mapping() - { - mirror(regs[5]); - set_prg_bank(0x8000, bank_8k, regs[0]); - set_prg_bank(0xa000, bank_8k, 13); - set_prg_bank(0xc000, bank_8k, 14); - set_prg_bank(0xe000, bank_8k, 15); - - set_chr_bank(0x0000, bank_4k, regs[1]); - set_chr_bank(0x1000, bank_4k, regs[3]); - - set_chr_bank_ex(0x0000, bank_4k, regs[2]); - set_chr_bank_ex(0x1000, bank_4k, regs[4]); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - switch (addr >> 12) - { - case 0xa: - regs[0] = data; - set_prg_bank(0x8000, bank_8k, data); - break; - case 0xb: - regs[1] = data; - set_chr_bank(0x0000, bank_4k, data); - break; - case 0xc: - regs[2] = data; - set_chr_bank_ex(0x0000, bank_4k, data); - break; - case 0xd: - regs[3] = data; - set_chr_bank(0x1000, bank_4k, data); - break; - case 0xe: - regs[4] = data; - set_chr_bank_ex(0x1000, bank_4k, data); - break; - case 0xf: - regs[5] = data; - mirror(data); - break; - } - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper010.hpp b/quicknes/source/quickerNES/core/mappers/mapper010.hpp deleted file mode 100644 index 7d0d5b7d250..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper010.hpp +++ /dev/null @@ -1,79 +0,0 @@ -#pragma once -#include "mapper.hpp" -#include - -namespace quickerNES -{ - -// MMC4 - -class Mapper010 : public Mapper -{ - uint8_t regs[6]; // A,B,C,D,E,F - - void mirror(uint8_t val) - { - if (val & 1) - mirror_horiz(); - else - mirror_vert(); - } - - public: - Mapper010() - { - register_state(regs, sizeof(regs)); - } - - virtual void reset_state() - { - std::memset(regs, 0, sizeof(regs)); - } - - virtual void apply_mapping() - { - enable_sram(); - - mirror(regs[5]); - set_prg_bank(0x8000, bank_16k, regs[0]); - - set_chr_bank(0x0000, bank_4k, regs[1]); - set_chr_bank(0x1000, bank_4k, regs[3]); - - set_chr_bank_ex(0x0000, bank_4k, regs[2]); - set_chr_bank_ex(0x1000, bank_4k, regs[4]); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - switch (addr >> 12) - { - case 0xa: - regs[0] = data; - set_prg_bank(0x8000, bank_16k, data); - break; - case 0xb: - regs[1] = data; - set_chr_bank(0x0000, bank_4k, data); - break; - case 0xc: - regs[2] = data; - set_chr_bank_ex(0x0000, bank_4k, data); - break; - case 0xd: - regs[3] = data; - set_chr_bank(0x1000, bank_4k, data); - break; - case 0xe: - regs[4] = data; - set_chr_bank_ex(0x1000, bank_4k, data); - break; - case 0xf: - regs[5] = data; - mirror(data); - break; - } - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper011.hpp b/quicknes/source/quickerNES/core/mappers/mapper011.hpp deleted file mode 100644 index 535070c4d41..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper011.hpp +++ /dev/null @@ -1,55 +0,0 @@ -#pragma once - -// Optional less-common simple mappers - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -// Color Dreams - -class Mapper011 : public Mapper -{ - uint8_t bank; - - public: - Mapper011() - { - register_state(&bank, 1); - } - - virtual void apply_mapping() - { - int b = bank; - bank = ~b; - write(0, 0, b); - } - - virtual void write(nes_time_t, nes_addr_t, int data) - { - int changed = bank ^ data; - bank = data; - - if (changed & 0x0f) - set_prg_bank(0x8000, bank_32k, bank & 0x0f); - - if (changed & 0xf0) - set_chr_bank(0, bank_8k, bank >> 4); - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper015.hpp b/quicknes/source/quickerNES/core/mappers/mapper015.hpp deleted file mode 100644 index 069d367e858..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper015.hpp +++ /dev/null @@ -1,97 +0,0 @@ -#pragma once - -/* Copyright (C) 2018. - * This module is free software; you - * can redistribute it and/or modify it under the terms of the GNU Lesser - * General Public License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. This - * module is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. You should have received a copy of the GNU Lesser General - * Public License along with this module; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * 100-in-1 Contra Function 16 - */ - -#include "mapper.hpp" - -namespace quickerNES -{ - -struct Mapper015_state_t -{ - uint8_t prg_bank[4]; - uint8_t mirroring; -}; - -static_assert(sizeof(Mapper015_state_t) == 5); - -// K-1029, K-1030P - -class Mapper015 : public Mapper, Mapper015_state_t -{ - public: - Mapper015() - { - i = 0; - Mapper015_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual void reset_state() - { - write(0, 0x8000, 0); - } - - virtual void apply_mapping() - { - enable_sram(); - set_chr_bank(0, bank_8k, 0); - for (i = 0; i < sizeof prg_bank; i++) - set_prg_bank(0x8000 + (i * 0x2000), bank_8k, prg_bank[i]); - switch (mirroring) - { - case 0: mirror_vert(); break; - case 1: mirror_horiz(); break; - } - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - uint8_t bank = (data & 0x3F) << 1; - uint8_t sbank = (data >> 7) & 1; - - mirroring = (data >> 6) & 1; - switch (addr & 3) - { - case 0: - for (i = 0; i < sizeof prg_bank; i++) - prg_bank[i] = bank + i; - apply_mapping(); - break; - case 2: - for (i = 0; i < sizeof prg_bank; i++) - prg_bank[i] = bank | sbank; - apply_mapping(); - break; - case 1: - case 3: - for (i = 0; i < sizeof prg_bank; i++) - { - if (i >= 2 && !(addr & 2)) - bank = 0x7E; - prg_bank[i] = bank + (i & 1); - } - apply_mapping(); - break; - } - } - - unsigned long int i; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper019.hpp b/quicknes/source/quickerNES/core/mappers/mapper019.hpp deleted file mode 100644 index 315cdd2f177..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper019.hpp +++ /dev/null @@ -1,202 +0,0 @@ -#pragma once - -// Namco 106 mapper - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "../apu/namco/apu_namco.hpp" -#include "mapper.hpp" - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -// to do: CHR mapping and nametable handling needs work - -namespace quickerNES -{ - -struct namco106_state_t -{ - uint8_t regs[16]; - uint16_t irq_ctr; - uint8_t irq_pending; - uint8_t unused1[1]; - namco_state_t sound_state; -}; -static_assert(sizeof(namco106_state_t) == 20 + sizeof(namco_state_t)); - -// Namco106 - -class Mapper019 : public Mapper, namco106_state_t -{ - public: - Mapper019() - { - namco106_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual int channel_count() const { return sound.osc_count; } - - virtual void set_channel_buf(int i, Blip_Buffer *b) { sound.osc_output(i, b); } - - virtual void set_treble(blip_eq_t const &eq) { sound.treble_eq(eq); } - - void reset_state() - { - regs[12] = 0; - regs[13] = 1; - regs[14] = last_bank - 1; - sound.reset(); - } - - virtual void apply_mapping() - { - last_time = 0; - enable_sram(); - intercept_writes(0x4800, 1); - intercept_reads(0x4800, 1); - - intercept_writes(0x5000, 0x1000); - intercept_reads(0x5000, 0x1000); - - for (int i = 0; i < (int)sizeof regs; i++) - write(0, 0x8000 + i * 0x800, regs[i]); - } - - virtual nes_time_t next_irq(nes_time_t time) - { - if (irq_pending) - return time; - - if (!(irq_ctr & 0x8000)) - return no_irq; - - return 0x10000 - irq_ctr + last_time; - } - - virtual void run_until(nes_time_t end_time) - { - long count = irq_ctr + (end_time - last_time); - if (irq_ctr & 0x8000) - { - if (count > 0xffff) - { - count = 0xffff; - irq_pending = true; - } - } - else if (count > 0x7fff) - { - count = 0x7fff; - } - - irq_ctr = count; - last_time = end_time; - } - - virtual void end_frame(nes_time_t end_time) - { - if (end_time > last_time) - run_until(end_time); - last_time -= end_time; - sound.end_frame(end_time); - } - - virtual int read(nes_time_t time, nes_addr_t addr) - { - if (addr == 0x4800) - return sound.read_data(); - - if (addr == 0x5000) - { - irq_pending = false; - return irq_ctr & 0xff; - } - - if (addr == 0x5800) - { - irq_pending = false; - return irq_ctr >> 8; - } - - return Mapper::read(time, addr); - } - - virtual bool write_intercepted(nes_time_t time, nes_addr_t addr, int data) - { - if (addr == 0x4800) - { - sound.write_data(time, data); - } - else if (addr == 0x5000) - { - irq_ctr = (irq_ctr & 0xff00) | data; - irq_pending = false; - irq_changed(); - } - else if (addr == 0x5800) - { - irq_ctr = (data << 8) | (irq_ctr & 0xff); - irq_pending = false; - irq_changed(); - } - else - { - return false; - } - - return true; - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - int reg = addr >> 11 & 0x0F; - regs[reg] = data; - - int prg_bank = reg - 0x0c; - if ((unsigned)prg_bank < 3) - { - if (prg_bank == 0 && (data & 0x40)) - mirror_vert(); - set_prg_bank(0x8000 | (prg_bank << bank_8k), bank_8k, data & 0x3F); - } - else if (reg < 8) - { - set_chr_bank(reg * 0x400, bank_1k, data); - } - else if (reg < 0x0c) - { - mirror_manual(regs[8] & 1, regs[9] & 1, regs[10] & 1, regs[11] & 1); - } - else - { - sound.write_addr(data); - } - } - - void save_state(mapper_state_t &out) - { - sound.save_state(&sound_state); - Mapper::save_state(out); - } - - void read_state(mapper_state_t const &in) - { - Mapper::read_state(in); - sound.load_state(sound_state); - } - - Namco_Apu sound; - nes_time_t last_time; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper021.hpp b/quicknes/source/quickerNES/core/mappers/mapper021.hpp deleted file mode 100644 index a3b629287ce..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper021.hpp +++ /dev/null @@ -1,259 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2004-2006 Shay Green - * Copyright (C) 2007 CaH4e3 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * General code is from FCEUX https://sourceforge.net/p/fceultra/code/HEAD/tree/fceu/trunk/src/boards/vrc2and4.cpp - * IRQ portion is from existing VRC6/VRC7 by Shay Green - * This mapper was ported by retrowertz for Libretro port of QuickNES. - * 3-19-2018 - * - * VRC-2/VRC-4 Konami - */ - -#include "mapper.hpp" - -namespace quickerNES -{ - -struct vrc2_state_t -{ - uint8_t prg_banks[2]; - uint8_t chr_banks[8]; - uint8_t mirroring; - uint8_t prg_swap; - uint8_t irq_latch; - uint8_t irq_control; - - // internal state - uint16_t next_time; - uint8_t irq_pending; -}; -static_assert(sizeof(vrc2_state_t) == 18); - -template -class Mapper_VRC2_4 : public Mapper, vrc2_state_t -{ - public: - Mapper_VRC2_4() - { - if (type_a && type_b) // mapper 21 - { - is22 = 0; - reg1mask = 0x42; - reg2mask = 0x84; - } - else if (!type_a && type_b) // mapper 22 - { - is22 = 1; - reg1mask = 2; - reg2mask = 1; - } - else if (!type_a && !type_b) // mapper 23 - { - is22 = 0; - reg1mask = 0x15; - reg2mask = 0x2a; - } - else if (type_a && !type_b) // mapper 25 - { - is22 = 0; - reg1mask = 0xa; - reg2mask = 0x5; - } - vrc2_state_t *state = this; - register_state(state, sizeof *state); - } - - void reset_state() - { - } - - void apply_mapping() - { - if (!is22) enable_sram(); - update_prg(); - update_chr(); - set_mirroring(); - } - - void reset_timer(nes_time_t present) - { - next_time = present + unsigned((0x100 - irq_latch) * timer_period) / 4; - } - - virtual void run_until(nes_time_t end_time) - { - if (irq_control & 2) - { - while (next_time < end_time) - { - // printf( "%d timer expired\n", next_time ); - irq_pending = true; - reset_timer(next_time); - } - } - } - - virtual void end_frame(nes_time_t end_time) - { - run_until(end_time); - - // to do: next_time might go negative if IRQ is disabled - next_time -= end_time; - } - - virtual nes_time_t next_irq(nes_time_t present) - { - if (irq_pending) - return present; - - if (irq_control & 2) - return next_time + 1; - - return no_irq; - } - - void write_irq(nes_time_t time, nes_addr_t addr, int data); - - void write(nes_time_t time, nes_addr_t addr, int data) - { - addr = (addr & 0xF000) | !!(addr & reg2mask) << 1 | !!(addr & reg1mask); - - if (addr >= 0xB000 && addr <= 0xE003) - { - unsigned banknumber = ((addr >> 1) & 1) | ((addr - 0xB000) >> 11); - unsigned offset = (addr & 1) << 2; - - chr_banks[banknumber] &= (0xF0) >> offset; - chr_banks[banknumber] |= (data & 0xF) << offset; - chr_banks[banknumber] |= (offset ? ((data & 0x10) << 4) : 0); - update_chr(); - } - else - { - switch (addr & 0xF003) - { - case 0x8000: - case 0x8001: - case 0x8002: - case 0x8003: - prg_banks[0] = data & 0x1F; - update_prg(); - break; - case 0xA000: - case 0xA001: - case 0xA002: - case 0xA003: - prg_banks[1] = data & 0x1F; - update_prg(); - break; - case 0x9000: - case 0x9001: - mirroring = data; - set_mirroring(); - break; - case 0x9002: - case 0x9003: - prg_swap = data; - update_prg(); - break; - case 0xF000: - case 0xF001: - case 0xF002: - case 0xF003: - write_irq(time, addr, data); - break; - } - } - } - - unsigned is22, reg1mask, reg2mask; - enum - { - timer_period = 113 * 4 + 3 - }; - - private: - void set_mirroring() - { - switch (mirroring & 3) - { - case 0: mirror_vert(); break; - case 1: mirror_horiz(); break; - case 2: - case 3: mirror_single(mirroring & 1); break; - } - } - - void update_prg() - { - if (prg_swap & 2) - { - set_prg_bank(0x8000, bank_8k, (0xFE)); - set_prg_bank(0xC000, bank_8k, prg_banks[0]); - } - else - { - set_prg_bank(0x8000, bank_8k, prg_banks[0]); - set_prg_bank(0xC000, bank_8k, (0xFE)); - } - - set_prg_bank(0xA000, bank_8k, prg_banks[1]); - set_prg_bank(0xE000, bank_8k, (0xFF)); - } - - void update_chr() - { - for (int i = 0; i < (int)sizeof chr_banks; i++) - set_chr_bank(i * 0x400, bank_1k, chr_banks[i] >> is22); - } -}; - -template -void Mapper_VRC2_4::write_irq(nes_time_t time, - nes_addr_t addr, - int data) -{ - // IRQ - run_until(time); - // printf("%6d VRC2_4 [%d] A:%04x V:%02x\n", time, addr & 3, addr, data); - switch (addr & 3) - { - case 0: - irq_latch = (irq_latch & 0xF0) | (data & 0xF); - break; - case 1: - irq_latch = (irq_latch & 0x0F) | ((data & 0xF) << 4); - break; - case 2: - irq_pending = false; - irq_control = data & 3; - if (data & 2) reset_timer(time); - break; - case 3: - irq_pending = false; - irq_control = (irq_control & ~2) | ((irq_control << 1) & 2); - break; - } - irq_changed(); -} - -typedef Mapper_VRC2_4 Mapper021; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper022.hpp b/quicknes/source/quickerNES/core/mappers/mapper022.hpp deleted file mode 100644 index 22920b8b097..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper022.hpp +++ /dev/null @@ -1,37 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2004-2006 Shay Green - * Copyright (C) 2007 CaH4e3 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * General code is from FCEUX https://sourceforge.net/p/fceultra/code/HEAD/tree/fceu/trunk/src/boards/vrc2and4.cpp - * IRQ portion is from existing VRC6/VRC7 by Shay Green - * This mapper was ported by retrowertz for Libretro port of QuickNES. - * 3-19-2018 - * - * VRC-2/VRC-4 Konami - */ - -#include "mapper.hpp" -#include "mapper021.hpp" - -namespace quickerNES -{ - -typedef Mapper_VRC2_4 Mapper022; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper023.hpp b/quicknes/source/quickerNES/core/mappers/mapper023.hpp deleted file mode 100644 index 37e29c9bcd0..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper023.hpp +++ /dev/null @@ -1,36 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2004-2006 Shay Green - * Copyright (C) 2007 CaH4e3 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * General code is from FCEUX https://sourceforge.net/p/fceultra/code/HEAD/tree/fceu/trunk/src/boards/vrc2and4.cpp - * IRQ portion is from existing VRC6/VRC7 by Shay Green - * This mapper was ported by retrowertz for Libretro port of QuickNES. - * 3-19-2018 - * - * VRC-2/VRC-4 Konami - */ - -#include "mapper.hpp" - -namespace quickerNES -{ - -typedef Mapper_VRC2_4 Mapper023; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper024.hpp b/quicknes/source/quickerNES/core/mappers/mapper024.hpp deleted file mode 100644 index bb9b092750d..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper024.hpp +++ /dev/null @@ -1,236 +0,0 @@ -#pragma once - -// Konami VRC6 mapper -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "../apu/vrc6/apu_vrc6.hpp" -#include "mapper.hpp" -#include - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -struct vrc6_state_t -{ - // written registers - uint8_t prg_16k_bank; - // could move sound regs int and out of vrc6_apu_state_t for state saving, - // allowing them to be stored here - uint8_t old_sound_regs[3][3]; // to do: eliminate this duplicate - uint8_t mirroring; - uint8_t prg_8k_bank; - uint8_t chr_banks[8]; - uint8_t irq_reload; - uint8_t irq_mode; - - // internal state - uint16_t next_time; - uint8_t irq_pending; - uint8_t unused; - - vrc6_apu_state_t sound_state; -}; -static_assert(sizeof(vrc6_state_t) == 26 + sizeof(vrc6_apu_state_t)); - -template -class Mapper_Vrc6 : public Mapper, vrc6_state_t -{ - public: - Mapper_Vrc6() - { - swap_mask = swapMask; - vrc6_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual int channel_count() const { return sound.osc_count; } - - virtual void set_channel_buf(int i, Blip_Buffer *b) { sound.osc_output(i, b); } - - virtual void set_treble(blip_eq_t const &eq) { sound.treble_eq(eq); } - - virtual void reset_state() - { - prg_8k_bank = last_bank - 1; - sound.reset(); - } - - virtual void save_state(mapper_state_t &out) - { - sound.save_state(&sound_state); - Mapper::save_state(out); - } - - virtual void apply_mapping() - { - enable_sram(); - set_prg_bank(0x8000, bank_16k, prg_16k_bank); - set_prg_bank(0xC000, bank_8k, prg_8k_bank); - - for (int i = 0; i < (int)sizeof chr_banks; i++) - set_chr_bank(i * 0x400, bank_1k, chr_banks[i]); - - write_bank(0xb003, mirroring); - } - - void reset_timer(nes_time_t present) - { - next_time = present + unsigned((0x100 - irq_reload) * timer_period) / 4; - } - - virtual void run_until(nes_time_t end_time) - { - if (irq_mode & 2) - { - while (next_time < end_time) - { - // dprintf( "%d timer expired\n", next_time ); - irq_pending = true; - reset_timer(next_time); - } - } - } - - virtual void end_frame(nes_time_t end_time) - { - run_until(end_time); - - // to do: next_time might go negative if IRQ is disabled - next_time -= end_time; - - sound.end_frame(end_time); - } - - virtual nes_time_t next_irq(nes_time_t present) - { - if (irq_pending) - return present; - - if (irq_mode & 2) - return next_time + 1; - - return no_irq; - } - - virtual void write(nes_time_t time, nes_addr_t addr, int data) - { - int osc = unsigned(addr - sound.base_addr) / sound.addr_step; - - if ((addr + 1) & 2) // optionally swap 1 and 2 - addr ^= swap_mask; - - int reg = addr & 3; - if ((unsigned)osc < sound.osc_count && reg < sound.reg_count) - sound.write_osc(time, osc, reg, data); - else if (addr < 0xf000) - write_bank(addr, data); - else - write_irq(time, addr, data); - } - int swap_mask; - Vrc6_Apu sound; - enum - { - timer_period = 113 * 4 + 3 - }; - - void read_state(mapper_state_t const &in) - { - Mapper::read_state(in); - - // to do: eliminate when format is updated - // old-style registers - static char zero[sizeof old_sound_regs] = {0}; - if (0 != memcmp(old_sound_regs, zero, sizeof zero)) - { - /* Using old VRC6 sound register format */ - memcpy(sound_state.regs, old_sound_regs, sizeof sound_state.regs); - memset(old_sound_regs, 0, sizeof old_sound_regs); - } - - sound.load_state(sound_state); - } - - void write_irq(nes_time_t time, nes_addr_t addr, int data) - { - // IRQ - run_until(time); - // dprintf( "%d VRC6 IRQ [%d] = %02X\n", time, addr & 3, data ); - switch (addr & 3) - { - case 0: - irq_reload = data; - break; - - case 1: - irq_pending = false; - irq_mode = data; - if (data & 2) - reset_timer(time); - break; - - case 2: - irq_pending = false; - irq_mode = (irq_mode & ~2) | ((irq_mode << 1) & 2); - break; - } - irq_changed(); - } - - void write_bank(nes_addr_t addr, int data) - { - switch (addr & 0xf003) - { - case 0x8000: - prg_16k_bank = data; - set_prg_bank(0x8000, bank_16k, data); - break; - - case 0xb003: - { - mirroring = data; - - // dprintf( "Change mirroring %d\n", data ); - // emu()->enable_sram( data & 0x80 ); // to do: needed? - int page = data >> 5 & 1; - if (data & 8) - mirror_single(((data >> 2) ^ page) & 1); - else if (data & 4) - mirror_horiz(page); - else - mirror_vert(page); - break; - } - - case 0xc000: - prg_8k_bank = data; - set_prg_bank(0xC000, bank_8k, data); - break; - - default: - int bank = (addr >> 11 & 4) | (addr & 3); - if (addr >= 0xd000) - { - // dprintf( "change chr bank %d\n", bank ); - chr_banks[bank] = data; - set_chr_bank(bank * 0x400, bank_1k, data); - } - break; - } - } -}; - -typedef Mapper_Vrc6<0> Mapper024; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper025.hpp b/quicknes/source/quickerNES/core/mappers/mapper025.hpp deleted file mode 100644 index 8ec42eeebdb..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper025.hpp +++ /dev/null @@ -1,36 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2004-2006 Shay Green - * Copyright (C) 2007 CaH4e3 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * General code is from FCEUX https://sourceforge.net/p/fceultra/code/HEAD/tree/fceu/trunk/src/boards/vrc2and4.cpp - * IRQ portion is from existing VRC6/VRC7 by Shay Green - * This mapper was ported by retrowertz for Libretro port of QuickNES. - * 3-19-2018 - * - * VRC-2/VRC-4 Konami - */ - -#include "mapper.hpp" - -namespace quickerNES -{ - -typedef Mapper_VRC2_4 Mapper025; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper026.hpp b/quicknes/source/quickerNES/core/mappers/mapper026.hpp deleted file mode 100644 index 22774f047e2..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper026.hpp +++ /dev/null @@ -1,14 +0,0 @@ -#pragma once - -// Konami VRC6 mapper - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" - -namespace quickerNES -{ - -typedef Mapper_Vrc6<3> Mapper026; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper030.hpp b/quicknes/source/quickerNES/core/mappers/mapper030.hpp deleted file mode 100644 index 5b9635e4da3..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper030.hpp +++ /dev/null @@ -1,56 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * 3/24/18 - * - * Unrom-512 - * - * NOTE: - * No flash and one screen mirroring support. - * Tested only on Troll Burner and Mystic Origins demo. - */ - -#include "mapper.hpp" - -// Unrom512 - -namespace quickerNES -{ - -class Mapper030 : public Mapper -{ - public: - Mapper030() {} - - void reset_state() {} - - void apply_mapping() {} - - void write(nes_time_t, nes_addr_t addr, int data) - { - if ((addr & 0xF000) >= 0x8000) - { - set_prg_bank(0x8000, bank_16k, data & 0x1F); - set_chr_bank(0x0000, bank_8k, (data >> 5) & 0x3); - } - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper032.hpp b/quicknes/source/quickerNES/core/mappers/mapper032.hpp deleted file mode 100644 index bf1a96281eb..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper032.hpp +++ /dev/null @@ -1,129 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 32 - Irem's G-101 - * - */ - -#include "mapper.hpp" - -namespace quickerNES -{ - -struct mapper32_state_t -{ - uint8_t chr_bank[8]; - uint8_t prg_bank[2]; - uint8_t prg_mode; - uint8_t mirr; -}; -static_assert(sizeof(mapper32_state_t) == 12); - -// Irem_G101 - -class Mapper032 : public Mapper, mapper32_state_t -{ - public: - Mapper032() - { - mapper32_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual void reset_state() - { - prg_bank[0] = ~1; - prg_bank[1] = ~0; - enable_sram(); - } - - virtual void apply_mapping() - { - if (prg_mode == 0) - { - set_prg_bank(0x8000, bank_8k, prg_bank[0]); - set_prg_bank(0xA000, bank_8k, prg_bank[1]); - set_prg_bank(0xC000, bank_8k, ~1); - set_prg_bank(0xE000, bank_8k, ~0); - } - else - { - set_prg_bank(0xC000, bank_8k, prg_bank[0]); - set_prg_bank(0xA000, bank_8k, prg_bank[1]); - set_prg_bank(0x8000, bank_8k, ~1); - set_prg_bank(0xE000, bank_8k, ~0); - } - - for (unsigned long int i = 0; i < sizeof chr_bank; i++) - set_chr_bank((i << 10), bank_1k, chr_bank[i]); - - switch (mirr) - { - case 0: mirror_vert(); break; - case 1: mirror_horiz(); break; - } - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - switch (addr & 0xF000) - { - case 0x8000: - prg_bank[0] = data; - switch (prg_mode) - { - case 0: set_prg_bank(0x8000, bank_8k, data); break; - case 1: set_prg_bank(0xC000, bank_8k, data); break; - } - break; - case 0x9000: - mirr = data & 1; - prg_mode = (data >> 1) & 1; - switch (data & 1) - { - case 0: mirror_vert(); break; - case 1: mirror_horiz(); break; - } - break; - case 0xA000: - prg_bank[1] = data; - set_prg_bank(0xA000, bank_8k, data); - break; - } - - switch (addr & 0xF007) - { - case 0xB000: - case 0xB001: - case 0xB002: - case 0xB003: - case 0xB004: - case 0xB005: - case 0xB006: - case 0xB007: - chr_bank[addr & 0x07] = data; - set_chr_bank((addr & 0x07) << 10, bank_1k, data); - break; - } - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper033.hpp b/quicknes/source/quickerNES/core/mappers/mapper033.hpp deleted file mode 100644 index fcce4d26334..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper033.hpp +++ /dev/null @@ -1,106 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 33 - Taito TC0190 - * - */ - -#include "mapper.hpp" - -namespace quickerNES -{ - -struct tc0190_state_t -{ - uint8_t preg[2]; - uint8_t creg[6]; - uint8_t mirr; -}; -static_assert(sizeof(tc0190_state_t) == 9); - -// TaitoTC0190 - -class Mapper033 : public Mapper, tc0190_state_t -{ - public: - Mapper033() - { - tc0190_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - for (int i = 0; i < 2; i++) - { - set_prg_bank(0x8000 + (i << 13), bank_8k, preg[i]); - set_chr_bank(0x0000 + (i << 11), bank_2k, creg[i]); - } - - for (int i = 0; i < 4; i++) - set_chr_bank(0x1000 + (i << 10), bank_1k, creg[2 + i]); - - if (mirr) - mirror_horiz(); - else - mirror_vert(); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - switch (addr & 0xA003) - { - case 0x8000: - preg[0] = data & 0x3F; - mirr = data >> 6; - set_prg_bank(0x8000, bank_8k, preg[0]); - if (mirr) - mirror_horiz(); - else - mirror_vert(); - break; - case 0x8001: - preg[1] = data & 0x3F; - set_prg_bank(0xA000, bank_8k, preg[1]); - break; - case 0x8002: - case 0x8003: - addr &= 0x01; - creg[addr] = data; - set_chr_bank(addr << 11, bank_2k, creg[addr]); - break; - case 0xA000: - case 0xA001: - case 0xA002: - case 0xA003: - addr &= 0x03; - creg[2 + addr] = data; - set_chr_bank(0x1000 | (addr << 10), bank_1k, creg[2 + addr]); - break; - } - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper034.hpp b/quicknes/source/quickerNES/core/mappers/mapper034.hpp deleted file mode 100644 index c8c5e178564..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper034.hpp +++ /dev/null @@ -1,47 +0,0 @@ -#pragma once - -// Optional less-common simple mappers - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -// Nina-1 (Deadly Towers only) - -namespace quickerNES -{ - -class Mapper034 : public Mapper -{ - uint8_t bank; - - public: - Mapper034() - { - register_state(&bank, 1); - } - - virtual void apply_mapping() - { - write(0, 0, bank); - } - - virtual void write(nes_time_t, nes_addr_t, int data) - { - bank = data; - set_prg_bank(0x8000, bank_32k, bank); - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper060.hpp b/quicknes/source/quickerNES/core/mappers/mapper060.hpp deleted file mode 100644 index c4ee3fe2be7..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper060.hpp +++ /dev/null @@ -1,56 +0,0 @@ -#pragma once - -/* Copyright (C) 2018. - * This module is free software; you - * can redistribute it and/or modify it under the terms of the GNU Lesser - * General Public License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. This - * module is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. You should have received a copy of the GNU Lesser General - * Public License along with this module; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * 4-in-1 Multicart ( Reset-based ) - */ - -#include "mapper.hpp" - -// NROM-128 4-in-1 multicart - -namespace quickerNES -{ - -class Mapper060 : public Mapper -{ - public: - Mapper060() - { - last_game = 2; - register_state(&game_sel, 1); - } - - virtual void reset_state() - { - game_sel = last_game; - game_sel++; - game_sel &= 3; - } - - virtual void apply_mapping() - { - set_prg_bank(0x8000, bank_16k, game_sel); - set_prg_bank(0xC000, bank_16k, game_sel); - set_chr_bank(0, bank_8k, game_sel); - last_game = game_sel; - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) {} - - uint8_t game_sel, last_game; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper066.hpp b/quicknes/source/quickerNES/core/mappers/mapper066.hpp deleted file mode 100644 index d58b4278f53..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper066.hpp +++ /dev/null @@ -1,55 +0,0 @@ -#pragma once - -// Optional less-common simple mappers - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -// GNROM - -namespace quickerNES -{ - -class Mapper066 : public Mapper -{ - uint8_t bank; - - public: - Mapper066() - { - register_state(&bank, 1); - } - - virtual void apply_mapping() - { - int b = bank; - bank = ~b; - write(0, 0, b); - } - - virtual void write(nes_time_t, nes_addr_t, int data) - { - int changed = bank ^ data; - bank = data; - - if (changed & 0x30) - set_prg_bank(0x8000, bank_32k, bank >> 4 & 3); - - if (changed & 0x03) - set_chr_bank(0, bank_8k, bank & 3); - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper069.hpp b/quicknes/source/quickerNES/core/mappers/mapper069.hpp deleted file mode 100644 index 6055bd2fa09..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper069.hpp +++ /dev/null @@ -1,193 +0,0 @@ -#pragma once - -// Sunsoft FME-7 mapper - -// Emu 0.7.0. http://www.slack.net/~ant/libs/ - -#include "../apu/fme7/apu_fme7.hpp" -#include "mapper.hpp" - -/* Copyright (C) 2005 Chris Moeller */ -/* Copyright (C) 2005-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -struct fme7_state_t -{ - // first 16 bytes in register order - uint8_t regs[13]; - uint8_t irq_mode; - uint16_t irq_count; - - uint8_t command; - uint8_t irq_pending; - fme7_apu_state_t sound_state; // only used when saving/restoring state -}; -static_assert(sizeof(fme7_state_t) == 18 + sizeof(fme7_apu_state_t)); - -// Fme7 - -class Mapper069 : public Mapper, fme7_state_t -{ - public: - Mapper069() - { - fme7_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual int channel_count() const { return sound.osc_count; } - - virtual void set_channel_buf(int i, Blip_Buffer *b) { sound.osc_output(i, b); } - - virtual void set_treble(blip_eq_t const &eq) { sound.treble_eq(eq); } - - virtual void reset_state() - { - regs[8] = 0x40; // wram disabled - irq_count = 0xFFFF; - sound.reset(); - } - - virtual void save_state(mapper_state_t &out) - { - sound.save_state(&sound_state); - Mapper::save_state(out); - } - - virtual void read_state(mapper_state_t const &in) - { - Mapper::read_state(in); - sound.load_state(sound_state); - } - - virtual void apply_mapping() - { - last_time = 0; - for (int i = 0; i < (int)sizeof regs; i++) - write_register(i, regs[i]); - } - - virtual void run_until(nes_time_t end_time) - { - int new_count = irq_count - (end_time - last_time); - last_time = end_time; - - if (new_count <= 0 && (irq_mode & 0x81) == 0x81) - irq_pending = true; - - if (irq_mode & 0x01) - irq_count = new_count & 0xFFFF; - } - - virtual nes_time_t next_irq(nes_time_t) - { - if (irq_pending) - return 0; - - if ((irq_mode & 0x81) == 0x81) - return last_time + irq_count + 1; - - return no_irq; - } - - virtual void end_frame(nes_time_t end_time) - { - if (end_time > last_time) - run_until(end_time); - - last_time -= end_time; - - sound.end_frame(end_time); - } - - virtual void write(nes_time_t time, nes_addr_t addr, int data) - { - switch (addr & 0xE000) - { - case 0x8000: - command = data & 0x0F; - break; - - case 0xA000: - if (command < 0x0D) - write_register(command, data); - else - write_irq(time, command, data); - break; - - case 0xC000: - sound.write_latch(data); - break; - - case 0xE000: - sound.write_data(time, data); - break; - } - } - - void write_irq(nes_time_t time, int index, int data) - { - run_until(time); - switch (index) - { - case 0x0D: - irq_mode = data; - irq_pending = false; - irq_changed(); - break; - - case 0x0E: - irq_count = (irq_count & 0xFF00) | data; - break; - - case 0x0F: - irq_count = data << 8 | (irq_count & 0xFF); - break; - } - } - - void write_register(int index, int data) - { - regs[index] = data; - int prg_bank = index - 0x09; - if ((unsigned)prg_bank < 3) // most common - { - set_prg_bank(0x8000 | (prg_bank << bank_8k), bank_8k, data); - } - else if (index == 0x08) - { - enable_sram((data & 0xC0) == 0xC0); - if (!(data & 0xC0)) - set_prg_bank(0x6000, bank_8k, data & 0x3F); - } - else if (index < 0x08) - { - set_chr_bank(index * 0x400, bank_1k, data); - } - else - { - if (data & 2) - mirror_single(data & 1); - else if (data & 1) - mirror_horiz(); - else - mirror_vert(); - } - } - - nes_time_t last_time; - Fme7_Apu sound; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper070.hpp b/quicknes/source/quickerNES/core/mappers/mapper070.hpp deleted file mode 100644 index a25b468b95c..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper070.hpp +++ /dev/null @@ -1,87 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 180 Crazy Climber - * - */ - -#include "mapper.hpp" - -// Mapper_74x161x162x32 - -namespace quickerNES -{ - -template -class Mapper_74x161x162x32 : public Mapper -{ - public: - Mapper_74x161x162x32() - { - register_state(&bank, 1); - } - - virtual void reset_state() - { - if (mapperId == 86) - bank = ~0; - } - - virtual void apply_mapping() - { - if (mapperId == 152) write(0, 0, bank); - if (mapperId == 70) write(0, 0, bank); - if (mapperId == 86) - { - intercept_writes(0x6000, 1); - write_intercepted(0, 0x6000, bank); - } - } - - virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) - { - if (addr != 0x6000) return false; - if (mapperId == 152) return false; - if (mapperId == 70) return false; - - bank = data; - set_prg_bank(0x8000, bank_32k, (bank >> 4) & 0x03); - set_chr_bank(0x0000, bank_8k, ((bank >> 4) & 0x04) | (bank & 0x03)); - - return true; - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - if (mapperId == 86) return; - - bank = handle_bus_conflict(addr, data); - set_prg_bank(0x8000, bank_16k, (bank >> 4) & 0x07); - set_chr_bank(0x0000, bank_8k, bank & 0x0F); - mirror_single((bank >> 7) & 0x01); - } - - uint8_t bank; -}; - -typedef Mapper_74x161x162x32<70> Mapper070; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper071.hpp b/quicknes/source/quickerNES/core/mappers/mapper071.hpp deleted file mode 100644 index 4edc182567e..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper071.hpp +++ /dev/null @@ -1,57 +0,0 @@ -#pragma once - -// Optional less-common simple mappers - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -// Camerica - -namespace quickerNES -{ - -class Mapper071 : public Mapper -{ - uint8_t regs[3]; - - public: - Mapper071() - { - register_state(regs, sizeof regs); - } - - virtual void apply_mapping() - { - write(0, 0xc000, regs[0]); - if (regs[1] & 0x80) - write(0, 0x9000, regs[1]); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - if (addr >= 0xc000) - { - regs[0] = data; - set_prg_bank(0x8000, bank_16k, data); - } - else if ((addr & 0xf000) == 0x9000) - { - regs[1] = 0x80 | data; - mirror_single((data >> 4) & 1); - } - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper073.hpp b/quicknes/source/quickerNES/core/mappers/mapper073.hpp deleted file mode 100644 index a17dfa589a9..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper073.hpp +++ /dev/null @@ -1,137 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * 3/24/18 - * - * VRC-3 Konami, Salamander - */ - -#include "mapper.hpp" - -namespace quickerNES -{ - -struct vrc3_state_t -{ - bool irq_enable; - bool irq_awk; - uint16_t irq_latch; - uint16_t irq_counter; - - uint8_t irq_pending; - uint16_t next_time; -}; - -// VRC3 - -class Mapper073 : public Mapper, vrc3_state_t -{ - public: - Mapper073() - { - vrc3_state_t *state = this; - register_state(state, sizeof *state); - } - - void reset_state() - { - } - - void apply_mapping() - { - enable_sram(); - mirror_vert(); - } - - virtual void run_until(nes_time_t end_time) - { - if (irq_enable) - { - long counter = irq_counter + (end_time - next_time); - - if (counter > 0xFFFF) - { - irq_pending = true; - irq_enable = irq_awk; - irq_counter = irq_latch; - } - else - irq_counter = counter; - } - - next_time = end_time; - } - - virtual void end_frame(nes_time_t end_time) - { - if (end_time > next_time) - run_until(end_time); - - next_time -= end_time; - } - - virtual nes_time_t next_irq(nes_time_t present) - { - if (irq_pending) - return present; - - if (!irq_enable) - return no_irq; - - return 0x10000 - irq_counter + next_time; - } - - void write_irq_counter(int shift, int data) - { - irq_latch &= ~(0xF << shift); - irq_latch |= data << shift; - } - - void write(nes_time_t time, nes_addr_t addr, int data) - { - data &= 0xF; - - switch (addr >> 12) - { - case 0xF: set_prg_bank(0x8000, bank_16k, data); break; - case 0x8: write_irq_counter(0, data); break; - case 0x9: write_irq_counter(4, data); break; - case 0xA: write_irq_counter(8, data); break; - case 0xB: write_irq_counter(12, data); break; - case 0xC: - irq_pending = false; - irq_awk = data & 1; - irq_enable = data & 2; - - if (irq_enable) - irq_counter = irq_latch; - - break; - case 0xD: - irq_pending = false; - irq_enable = irq_awk; - break; - } - - irq_changed(); - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper075.hpp b/quicknes/source/quickerNES/core/mappers/mapper075.hpp deleted file mode 100644 index 583e36a10c4..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper075.hpp +++ /dev/null @@ -1,113 +0,0 @@ -#pragma once - -/* Copyright (C) 2018. - * This module is free software; you - * can redistribute it and/or modify it under the terms of the GNU Lesser - * General Public License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. This - * module is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. You should have received a copy of the GNU Lesser General - * Public License along with this module; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * VRC-1 Konami - */ - -#include "mapper.hpp" - -namespace quickerNES -{ - -struct vrc1_state_t -{ - uint8_t prg_banks[3]; - uint8_t chr_banks[2]; - uint8_t chr_banks_hi[2]; - uint8_t mirroring; -}; -static_assert(sizeof(vrc1_state_t) == 8); - -// VRC1 - -class Mapper075 : public Mapper, vrc1_state_t -{ - public: - Mapper075() - { - vrc1_state_t *state = this; - register_state(state, sizeof *state); - } - - void reset_state() - { - } - - void apply_mapping() - { - update_prg_banks(); - update_chr_banks(); - update_mirroring(); - } - - void write(nes_time_t, nes_addr_t addr, int data) - { - switch (addr & 0xF000) - { - case 0x8000: - prg_banks[0] = data & 0xF; - update_prg_banks(); - break; - case 0x9000: - mirroring = data & 1; - chr_banks_hi[0] = (data & 2) << 3; - chr_banks_hi[1] = (data & 4) << 2; - update_chr_banks(); - update_mirroring(); - break; - case 0xa000: - prg_banks[1] = data & 0xF; - update_prg_banks(); - break; - case 0xc000: - prg_banks[2] = data & 0xF; - update_prg_banks(); - break; - case 0xe000: - chr_banks[0] = data & 0xF; - update_chr_banks(); - break; - case 0xf000: - chr_banks[1] = data & 0xF; - update_chr_banks(); - break; - } - } - - void update_prg_banks() - { - set_prg_bank(0x8000, bank_8k, prg_banks[0]); - set_prg_bank(0xa000, bank_8k, prg_banks[1]); - set_prg_bank(0xc000, bank_8k, prg_banks[2]); - } - - void update_chr_banks() - { - set_chr_bank(0x0000, bank_4k, chr_banks[0] | chr_banks_hi[0]); - set_chr_bank(0x1000, bank_4k, chr_banks[1] | chr_banks_hi[1]); - } - - void update_mirroring() - { - switch (mirroring & 1) - { - case 1: mirror_horiz(); break; - case 0: mirror_vert(); break; - } - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper078.hpp b/quicknes/source/quickerNES/core/mappers/mapper078.hpp deleted file mode 100644 index 7408cc7c5fc..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper078.hpp +++ /dev/null @@ -1,80 +0,0 @@ -#pragma once - -#include "mapper.hpp" - -// Holy Diver and Uchuusen - Cosmo Carrier. - -namespace quickerNES -{ - -class Mapper078 : public Mapper -{ - // lower 8 bits are the reg at 8000:ffff - // next two bits are autodetecting type - // 0 = unknown 1 = cosmo carrier 2 = holy diver - int reg; - void writeinternal(int data, int changed) - { - reg &= 0x300; - reg |= data; - - if (changed & 0x07) - set_prg_bank(0x8000, bank_16k, reg & 0x07); - if (changed & 0xf0) - set_chr_bank(0x0000, bank_8k, (reg >> 4) & 0x0f); - if (changed & 0x08) - { - // set mirroring based on memorized board type - if (reg & 0x100) - { - mirror_single((reg >> 3) & 1); - } - else if (reg & 0x200) - { - if (reg & 0x08) - mirror_vert(); - else - mirror_horiz(); - } - else - { - // if you don't set something here, holy diver dumps with 4sc set will - // savestate as 4k NTRAM. then when you later set H\V mapping, state size mismatch. - mirror_single(1); - } - } - } - - public: - Mapper078() - { - register_state(®, 4); - } - - virtual void reset_state() - { - reg = 0; - } - - virtual void apply_mapping() - { - writeinternal(reg, 0xff); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - // heuristic: if the first write ever to the register is 0, - // we're on holy diver, otherwise, carrier. it works for these two games... - if (!(reg & 0x300)) - { - reg |= data ? 0x100 : 0x200; - writeinternal(data, 0xff); - } - else - { - writeinternal(data, reg ^ data); - } - } -}; - -} // namespace quickerNES diff --git a/quicknes/source/quickerNES/core/mappers/mapper079.hpp b/quicknes/source/quickerNES/core/mappers/mapper079.hpp deleted file mode 100644 index 8142c393725..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper079.hpp +++ /dev/null @@ -1,98 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 079 - * Mapper 113 - * Nina-03 / Nina-06 - */ - -#include "mapper.hpp" - -namespace quickerNES -{ - -template -class Mapper_AveNina : public Mapper -{ - public: - Mapper_AveNina() - { - register_state(®s, 1); - } - - void write_regs(); - - virtual void reset_state() - { - intercept_writes(0x4000, 0x1000); - intercept_writes(0x5000, 0x1000); - } - - virtual void apply_mapping() - { - write_intercepted(0, 0x4100, regs); - } - - virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) - { - if (addr < 0x4100 || addr > 0x5FFF) - return false; - - if (addr & 0x100) - regs = data; - - write_regs(); - return true; - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - if (multicart == 0 && - ((addr == 0x8000) || (addr & 0xFCB0) == 0xFCB0)) - set_chr_bank(0, bank_8k, data & 0x07); - } - - uint8_t regs; -}; - -template -void Mapper_AveNina::write_regs() -{ - if (multicart == 0) - { - set_prg_bank(0x8000, bank_32k, (regs >> 3) & 0x01); - set_chr_bank(0, bank_8k, regs & 0x07); - } - else - { - set_prg_bank(0x8000, bank_32k, (regs >> 3) & 0x07); - set_chr_bank(0x0000, bank_8k, ((regs >> 3) & 0x08) | (regs & 0x07)); - if (regs & 0x80) - mirror_vert(); - else - mirror_horiz(); - } -} - -typedef Mapper_AveNina Mapper079; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper085.hpp b/quicknes/source/quickerNES/core/mappers/mapper085.hpp deleted file mode 100644 index c61068f0f4b..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper085.hpp +++ /dev/null @@ -1,228 +0,0 @@ -#pragma once - -// Emu 0.5.4. http://www.slack.net/~ant/ - -#include "../apu/vrc7/apu_vrc7.hpp" -#include "mapper.hpp" -#include - -/* Copyright (C) 2004-2005 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -struct vrc7_state_t -{ - // written registers - uint8_t mirroring; - uint8_t prg_banks[3]; - uint8_t chr_banks[8]; - uint8_t irq_reload; - uint8_t irq_mode; - - // internal state - uint16_t next_time; - uint8_t irq_pending; - uint8_t unused; - - vrc7_snapshot_t sound_state; -}; -static_assert(sizeof(vrc7_state_t) == 20 + sizeof(vrc7_snapshot_t)); - -// Vrc7 - -class Mapper085 : public Mapper, vrc7_state_t -{ - public: - Mapper085() - { - vrc7_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual int channel_count() const { return sound.osc_count; } - - virtual void set_channel_buf(int i, Blip_Buffer *b) { sound.osc_output(i, b); } - - virtual void set_treble(blip_eq_t const &eq) { sound.treble_eq(eq); } - - virtual void save_state(mapper_state_t &out) - { - sound.save_snapshot(&sound_state); - Mapper::save_state(out); - } - - virtual void load_state(mapper_state_t const &in) - { - Mapper::load_state(in); - sound.load_snapshot(sound_state, in.size); - } - - virtual void reset_state() - { - mirroring = 0; - - memset(prg_banks, 0, sizeof prg_banks); - memset(chr_banks, 0, sizeof chr_banks); - memset(&sound_state, 0, sizeof sound_state); - - irq_reload = 0; - irq_mode = 0; - irq_pending = false; - - next_time = 0; - sound.reset(); - - set_prg_bank(0xE000, bank_8k, last_bank); - apply_mapping(); - } - - void write_prg_bank(int bank, int data) - { - prg_banks[bank] = data; - set_prg_bank(0x8000 | (bank << bank_8k), bank_8k, data); - } - - void write_chr_bank(int bank, int data) - { - // dprintf( "change chr bank %d\n", bank ); - chr_banks[bank] = data; - set_chr_bank(bank * 0x400, bank_1k, data); - } - - void write_mirroring(int data) - { - mirroring = data; - - // dprintf( "Change mirroring %d\n", data ); - enable_sram(data & 128, data & 64); - - if (data & 2) - mirror_single(data & 1); - else if (data & 1) - mirror_horiz(); - else - mirror_vert(); - } - - void apply_mapping() - { - size_t i; - - for (i = 0; i < sizeof prg_banks; i++) - write_prg_bank(i, prg_banks[i]); - - for (i = 0; i < sizeof chr_banks; i++) - write_chr_bank(i, chr_banks[i]); - - write_mirroring(mirroring); - } - - void reset_timer(nes_time_t present) - { - next_time = present + unsigned((0x100 - irq_reload) * timer_period) / 4; - } - - virtual void run_until(nes_time_t end_time) - { - if (irq_mode & 2) - { - while (next_time < end_time) - { - // dprintf( "%d timer expired\n", next_time ); - irq_pending = true; - reset_timer(next_time); - } - } - } - - virtual void end_frame(nes_time_t end_time) - { - run_until(end_time); - - next_time -= end_time; - - sound.end_frame(end_time); - } - - virtual nes_time_t next_irq(nes_time_t present) - { - if (irq_pending) - return present; - - if (irq_mode & 2) - return next_time + 1; - - return no_irq; - } - - virtual void write(nes_time_t time, nes_addr_t addr, int data) - { - addr |= (addr & 8) << 1; - - if (addr >= 0xe010) - { - // IRQ - run_until(time); - // dprintf( "%d VRC6 IRQ [%d] = %02X\n", time, addr & 3, data ); - switch (addr & 0xf010) - { - case 0xe010: - irq_reload = data; - break; - - case 0xf000: - irq_pending = false; - irq_mode = data; - if (data & 2) - reset_timer(time); - break; - - case 0xf010: - irq_pending = false; - irq_mode = (irq_mode & ~2) | ((irq_mode << 1) & 2); - break; - } - irq_changed(); - } - else if ((unsigned)(addr - 0xa000) < 0x4000) - { - write_chr_bank(((addr >> 4) & 1) | (((addr - 0xa000) >> 11) & ~1), data); - } - else - switch (addr & 0xf010) - { - case 0x8000: write_prg_bank(0, data); break; - case 0x8010: write_prg_bank(1, data); break; - case 0x9000: write_prg_bank(2, data); break; - - case 0xe000: - write_mirroring(data); - break; - - case 0x9010: - if (addr & 0x20) - sound.write_data(time, data); - else - sound.write_reg(data); - break; - } - } - - Vrc7 sound; - enum - { - timer_period = 113 * 4 + 3 - }; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper086.hpp b/quicknes/source/quickerNES/core/mappers/mapper086.hpp deleted file mode 100644 index 7d70f56e6a9..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper086.hpp +++ /dev/null @@ -1,29 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - */ - -namespace quickerNES -{ - -typedef Mapper_74x161x162x32<86> Mapper086; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper087.hpp b/quicknes/source/quickerNES/core/mappers/mapper087.hpp deleted file mode 100644 index 8c945152ef2..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper087.hpp +++ /dev/null @@ -1,53 +0,0 @@ -#pragma once - -// Optional less-common simple mappers -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -// Jaleco/Konami/Taito - -namespace quickerNES -{ - -class Mapper087 : public Mapper -{ - uint8_t bank; - - public: - Mapper087() - { - register_state(&bank, 1); - } - - void apply_mapping() - { - intercept_writes(0x6000, 1); - write(0, 0x6000, bank); - } - - bool write_intercepted(nes_time_t, nes_addr_t addr, int data) - { - if (addr != 0x6000) - return false; - - bank = data; - set_chr_bank(0, bank_8k, data >> 1); - return true; - } - - void write(nes_time_t, nes_addr_t, int) {} -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper088.hpp b/quicknes/source/quickerNES/core/mappers/mapper088.hpp deleted file mode 100644 index 53ae611eef2..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper088.hpp +++ /dev/null @@ -1,114 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * 3/24/18 - * - * Mapper 88 - * Mapper 154 - * Mapper 206 - */ - -#include "mapper.hpp" - -namespace quickerNES -{ - -struct namco_34x3_state_t -{ - uint8_t bank[8]; - uint8_t mirr; - uint8_t mode; -}; -static_assert(sizeof(namco_34x3_state_t) == 10); - -template -class Mapper_Namco_34x3 : public Mapper, namco_34x3_state_t -{ - public: - Mapper_Namco_34x3() - { - namco_34x3_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - set_chr_bank(0x0000, bank_2k, bank[0]); - set_chr_bank(0x0800, bank_2k, bank[1]); - for (int i = 0; i < 4; i++) - set_chr_bank(0x1000 + (i << 10), bank_1k, bank[i + 2]); - - set_prg_bank(0x8000, bank_8k, bank[6]); - set_prg_bank(0xA000, bank_8k, bank[7]); - set_prg_bank(0xC000, bank_8k, ~1); - set_prg_bank(0xE000, bank_8k, ~0); - - if (_is154) - mirror_single(mirr); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - switch (addr & 0xE001) - { - case 0x8000: - mode = data; - mirr = (data >> 6) & 0x01; - if (_is154) - mirror_single(mirr); - break; - case 0x8001: - mode &= 0x07; - switch (mode) - { - case 0: - case 1: - bank[mode] = data >> 1; - set_chr_bank(0x0000 + (mode << 11), bank_2k, bank[mode]); - break; - case 2: - case 3: - case 4: - case 5: - bank[mode] = data | 0x40; - set_chr_bank(0x1000 + ((mode - 2) << 10), bank_1k, bank[mode]); - break; - case 6: - case 7: - bank[mode] = data; - set_prg_bank(0x8000 + ((mode - 6) << 13), bank_8k, bank[mode]); - break; - } - break; - case 0xC000: - mirr = (data >> 6) & 0x01; - if (_is154) - mirror_single(mirr); - } - } -}; - -typedef Mapper_Namco_34x3 Mapper088; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper089.hpp b/quicknes/source/quickerNES/core/mappers/mapper089.hpp deleted file mode 100644 index 20ff21526ff..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper089.hpp +++ /dev/null @@ -1,62 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 93 - Sunsoft-2 - */ - -#include "mapper.hpp" - -// Sunsoft2b - -namespace quickerNES -{ - -class Mapper089 : public Mapper -{ - public: - Mapper089() - { - register_state(®s, 1); - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - set_prg_bank(0xC000, bank_16k, last_bank); - write(0, 0x8000, regs); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - regs = handle_bus_conflict(addr, data); - - set_chr_bank(0x0000, bank_8k, ((data >> 4) & 0x08) | (data & 0x07)); - set_prg_bank(0x8000, bank_16k, (data >> 4) & 0x07); - mirror_single((data >> 3) & 1); - } - - uint8_t regs; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper093.hpp b/quicknes/source/quickerNES/core/mappers/mapper093.hpp deleted file mode 100644 index a04d891e18a..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper093.hpp +++ /dev/null @@ -1,61 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 93 - Sunsoft-2 - */ - -#include "mapper.hpp" - -// Sunsoft2a - -namespace quickerNES -{ - -class Mapper093 : public Mapper -{ - public: - Mapper093() - { - register_state(®s, 1); - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - set_prg_bank(0xC000, bank_16k, last_bank); - write(0, 0x8000, regs); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - regs = handle_bus_conflict(addr, data); - - set_chr_bank(0x0000, bank_8k, data & 0x0F); - set_prg_bank(0x8000, bank_16k, (data >> 4) & 0x07); - } - - uint8_t regs; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper094.hpp b/quicknes/source/quickerNES/core/mappers/mapper094.hpp deleted file mode 100644 index e5b4e653c56..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper094.hpp +++ /dev/null @@ -1,60 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 94 - HVC-UN1ROM - * Senjou no Ookami (Japanese version of Commando) - * - */ - -#include "mapper.hpp" - -// Un1rom - -namespace quickerNES -{ - -class Mapper094 : public Mapper -{ - public: - Mapper094() - { - register_state(&bank, 1); - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - write(0, 0, bank); - } - - virtual void write(nes_time_t, nes_addr_t, int data) - { - bank = data; - set_prg_bank(0x8000, bank_16k, bank >> 2); - } - - uint8_t bank; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper097.hpp b/quicknes/source/quickerNES/core/mappers/mapper097.hpp deleted file mode 100644 index a5b524b83f7..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper097.hpp +++ /dev/null @@ -1,69 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 97 - Kaiketsu Yanchamaru - * - */ - -#include "mapper.hpp" - -// Irem_Tam_S1 - -namespace quickerNES -{ - -class Mapper097 : public Mapper -{ - public: - Mapper097() - { - register_state(&bank, 1); - } - - virtual void reset_state() - { - bank = ~0; - } - - virtual void apply_mapping() - { - write(0, 0, bank); - } - - virtual void write(nes_time_t, nes_addr_t, int data) - { - bank = data; - set_prg_bank(0x8000, bank_16k, ~0); - set_prg_bank(0xC000, bank_16k, bank & 0x0F); - - switch ((bank >> 6) & 0x03) - { - case 1: mirror_horiz(); break; - case 2: mirror_vert(); break; - case 0: - case 3: mirror_single(bank & 0x01); break; - } - } - - uint8_t bank; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper113.hpp b/quicknes/source/quickerNES/core/mappers/mapper113.hpp deleted file mode 100644 index 2cd28d27d0a..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper113.hpp +++ /dev/null @@ -1,33 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 079 - * Mapper 113 - * Nina-03 / Nina-06 - */ - -namespace quickerNES -{ - -typedef Mapper_AveNina Mapper113; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper140.hpp b/quicknes/source/quickerNES/core/mappers/mapper140.hpp deleted file mode 100644 index 9c2223f2de0..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper140.hpp +++ /dev/null @@ -1,69 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 140 - Jaleco's JF-11 and JF-14 - * - */ - -#include "mapper.hpp" - -// Jaleco_JF11 - -namespace quickerNES -{ - -class Mapper140 : public Mapper -{ - public: - Mapper140() - { - register_state(®s, 1); - } - - virtual void reset_state() - { - intercept_writes(0x6000, 1); - } - - virtual void apply_mapping() - { - write_intercepted(0, 0x6000, regs); - } - - bool write_intercepted(nes_time_t time, nes_addr_t addr, int data) - { - if (addr < 0x6000 || addr > 0x7FFF) - return false; - - regs = data; - set_prg_bank(0x8000, bank_32k, data >> 4); - set_chr_bank(0, bank_8k, data); - - return true; - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) {} - - uint8_t regs; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper152.hpp b/quicknes/source/quickerNES/core/mappers/mapper152.hpp deleted file mode 100644 index 97246d4cc33..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper152.hpp +++ /dev/null @@ -1,29 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - */ - -namespace quickerNES -{ - -typedef Mapper_74x161x162x32<152> Mapper152; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper154.hpp b/quicknes/source/quickerNES/core/mappers/mapper154.hpp deleted file mode 100644 index 0573c808a86..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper154.hpp +++ /dev/null @@ -1,33 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * 3/24/18 - * - * Mapper 88 - * Mapper 154 - * Mapper 206 - */ - -namespace quickerNES -{ - -typedef Mapper_Namco_34x3 Mapper154; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper156.hpp b/quicknes/source/quickerNES/core/mappers/mapper156.hpp deleted file mode 100644 index 9306b6e4db0..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper156.hpp +++ /dev/null @@ -1,65 +0,0 @@ -#pragma once - -#include "mapper.hpp" - -// DIS23C01 DAOU ROM CONTROLLER - -namespace quickerNES -{ - -struct m156_state_t -{ - uint8_t prg_bank; - uint8_t chr_banks[8]; -}; -static_assert(sizeof(m156_state_t) == 9); - -class Mapper156 : public Mapper, m156_state_t -{ - public: - Mapper156() - { - m156_state_t *state = this; - register_state(state, sizeof *state); - } - - void reset_state() - { - prg_bank = 0; - for (unsigned i = 0; i < 8; i++) chr_banks[i] = i; - enable_sram(); - apply_mapping(); - } - - void apply_mapping() - { - mirror_single(0); - set_prg_bank(0x8000, bank_16k, prg_bank); - - for (int i = 0; i < (int)sizeof chr_banks; i++) - set_chr_bank(i * 0x400, bank_1k, chr_banks[i]); - } - - void write(nes_time_t, nes_addr_t addr, int data) - { - unsigned int reg = addr - 0xC000; - if (addr == 0xC010) - { - prg_bank = data; - set_prg_bank(0x8000, bank_16k, data); - } - else if (reg < 4) - { - chr_banks[reg] = data; - set_chr_bank(reg * 0x400, bank_1k, data); - } - else if ((reg - 8) < 4) - { - reg -= 4; - chr_banks[reg] = data; - set_chr_bank(reg * 0x400, bank_1k, data); - } - } -}; - -} // namespace quickerNES diff --git a/quicknes/source/quickerNES/core/mappers/mapper180.hpp b/quicknes/source/quickerNES/core/mappers/mapper180.hpp deleted file mode 100644 index 6614efeac0e..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper180.hpp +++ /dev/null @@ -1,60 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 180 Crazy Climber - * - */ - -#include "mapper.hpp" - -// UxROM (inverted) - -namespace quickerNES -{ - -class Mapper180 : public Mapper -{ - public: - Mapper180() - { - register_state(&bank, 1); - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - set_prg_bank(0x8000, bank_16k, 0); - write(0, 0, bank); - } - - virtual void write(nes_time_t, nes_addr_t, int data) - { - bank = data; - set_prg_bank(0xC000, bank_16k, data); - } - - uint8_t bank; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper184.hpp b/quicknes/source/quickerNES/core/mappers/mapper184.hpp deleted file mode 100644 index 6d8f1d7b5e0..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper184.hpp +++ /dev/null @@ -1,70 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 184 - Sunsoft-1 - */ - -#include "mapper.hpp" - -// Sunsoft1 - -namespace quickerNES -{ - -class Mapper184 : public Mapper -{ - public: - Mapper184() - { - register_state(®s, 1); - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - set_prg_bank(0x8000, bank_32k, 0); - intercept_writes(0x6000, 1); - write_intercepted(0, 0x6000, regs); - } - - virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) - { - if (addr != 0x6000) - return false; - - regs = data; - set_chr_bank(0x0000, bank_4k, data & 0x07); - set_chr_bank(0x1000, bank_4k, (data >> 4) & 0x07); - - return true; - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - } - - uint8_t regs; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper190.hpp b/quicknes/source/quickerNES/core/mappers/mapper190.hpp deleted file mode 100644 index 9190ff6ed2a..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper190.hpp +++ /dev/null @@ -1,60 +0,0 @@ -#pragma once - -#include "mapper.hpp" - -// Magic Kid Googoo - -namespace quickerNES -{ - -class Mapper190 : public Mapper -{ - public: - Mapper190() - { - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - mirror_vert(); - enable_sram(); - set_prg_bank(0xc000, bank_16k, 0); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - switch (addr >> 12) - { - case 0x8: - case 0x9: - case 0xc: - case 0xd: - set_prg_bank(0x8000, bank_16k, (((addr >> 11) & 8) | (data & 7))); - break; - case 0xa: - case 0xb: - switch (addr & 3) - { - case 0: - set_chr_bank(0x0000, bank_2k, data); - break; - case 1: - set_chr_bank(0x0800, bank_2k, data); - break; - case 2: - set_chr_bank(0x1000, bank_2k, data); - break; - case 3: - set_chr_bank(0x1800, bank_2k, data); - break; - } - break; - } - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper193.hpp b/quicknes/source/quickerNES/core/mappers/mapper193.hpp deleted file mode 100644 index 642cfb6b4f5..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper193.hpp +++ /dev/null @@ -1,81 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 193 - NTDEC TC-112 - * Fighting Hero (Unl) - * War in the Gulf & (its Brazilian localization) - * - */ - -#include "mapper.hpp" - -// NTDEC's TC-112 mapper IC. - -namespace quickerNES -{ - -class Mapper193 : public Mapper -{ - public: - Mapper193() - { - register_state(regs, sizeof regs); - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - for (size_t i = 0; i < sizeof regs; i++) - write_intercepted(0, 0x6000 + i, regs[i]); - set_prg_bank(0xA000, bank_8k, ~2); - set_prg_bank(0xC000, bank_8k, ~1); - set_prg_bank(0xE000, bank_8k, ~0); - intercept_writes(0x6000, 0x03); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - } - - virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) - { - if (addr < 0x6000 || addr > 0x6003) - return false; - - regs[addr & 0x03] = data; - switch (addr & 0x03) - { - case 0: set_chr_bank(0x0000, bank_4k, regs[0] >> 2); break; - case 1: set_chr_bank(0x1000, bank_2k, regs[1] >> 1); break; - case 2: set_chr_bank(0x1800, bank_2k, regs[2] >> 1); break; - case 3: set_prg_bank(0x8000, bank_8k, regs[3]); break; - } - - return true; - } - - uint8_t regs[4]; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper206.hpp b/quicknes/source/quickerNES/core/mappers/mapper206.hpp deleted file mode 100644 index 2f2d224c056..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper206.hpp +++ /dev/null @@ -1,103 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * 3/24/18 - * - * Mapper 88 - * Mapper 154 - * Mapper 206 - */ - -#include "mapper.hpp" - -namespace quickerNES -{ - -struct namco_34xx_state_t -{ - uint8_t bank[8]; - uint8_t mirr; - uint8_t mode; -}; -static_assert(sizeof(namco_34xx_state_t) == 10); - -// Namco_34xx - -class Mapper206 : public Mapper, namco_34xx_state_t -{ - public: - Mapper206() - { - namco_34xx_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - set_chr_bank(0x0000, bank_2k, bank[0]); - set_chr_bank(0x0800, bank_2k, bank[1]); - for (int i = 0; i < 4; i++) - set_chr_bank(0x1000 + (i << 10), bank_1k, bank[i + 2]); - - set_prg_bank(0x8000, bank_8k, bank[6]); - set_prg_bank(0xA000, bank_8k, bank[7]); - set_prg_bank(0xC000, bank_8k, ~1); - set_prg_bank(0xE000, bank_8k, ~0); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - switch (addr & 0xE001) - { - case 0x8000: - mode = data; - break; - case 0x8001: - mode &= 0x07; - switch (mode) - { - case 0: - case 1: - bank[mode] = data >> 1; - set_chr_bank(0x0000 + (mode << 11), bank_2k, bank[mode]); - break; - case 2: - case 3: - case 4: - case 5: - bank[mode] = data; - set_chr_bank(0x1000 + ((mode - 2) << 10), bank_1k, bank[mode]); - break; - case 6: - case 7: - bank[mode] = data; - set_prg_bank(0x8000 + ((mode - 6) << 13), bank_8k, bank[mode]); - break; - } - break; - } - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper207.hpp b/quicknes/source/quickerNES/core/mappers/mapper207.hpp deleted file mode 100644 index 262f292a8af..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper207.hpp +++ /dev/null @@ -1,96 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Taito's X1-005 ( Rev. B ) Fudou Myouou Den - * - */ - -#include "mapper.hpp" - -namespace quickerNES -{ - -struct taito_x1005_state_t -{ - uint8_t preg[3]; - uint8_t creg[6]; - uint8_t nametable[2]; -}; -static_assert(sizeof(taito_x1005_state_t) == 11); - -// TaitoX1005 - -class Mapper207 : public Mapper, taito_x1005_state_t -{ - public: - Mapper207() - { - taito_x1005_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - int i; - intercept_writes(0x7EF0, 1); - for (i = 0; i < 3; i++) - set_prg_bank(0x8000 + (i << 13), bank_8k, preg[i]); - for (i = 0; i < 2; i++) - set_chr_bank(0x0000 + (i << 11), bank_2k, creg[i] >> 1); - for (i = 0; i < 4; i++) - set_chr_bank(0x1000 + (i << 10), bank_1k, creg[2 + i]); - mirror_manual(nametable[0], nametable[0], nametable[1], nametable[1]); - } - - virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) - { - if (addr < 0x7EF0 || addr > 0x7EFF) - return false; - - if ((addr & 0x0F) < 6) - { - creg[addr & 0x07] = data; - if ((addr & 0x0F) < 2) - { - nametable[addr & 0x01] = data >> 7; - mirror_manual(nametable[0], nametable[0], nametable[1], nametable[1]); - set_chr_bank((addr << 11) & 0x800, bank_2k, creg[addr & 0x01] >> 1); - return true; - } - - set_chr_bank(0x1000 | ((addr - 0x7EF2) << 10), bank_1k, creg[addr & 0x07]); - return true; - } - - addr = (addr - 0x7EFA) >> 1; - preg[addr] = data; - set_prg_bank(0x8000 | (addr << 13), bank_8k, preg[addr]); - return true; - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) {} -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper232.hpp b/quicknes/source/quickerNES/core/mappers/mapper232.hpp deleted file mode 100644 index c6c86f5e1ea..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper232.hpp +++ /dev/null @@ -1,59 +0,0 @@ - -#pragma once - -// Optional less-common simple mappers - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "mapper.hpp" - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -// Quattro - -namespace quickerNES -{ - -class Mapper232 : public Mapper -{ - uint8_t regs[2]; - - public: - Mapper232() - { - register_state(regs, sizeof regs); - } - - virtual void reset_state() - { - regs[0] = 0; - regs[1] = 3; - } - - virtual void apply_mapping() - { - int bank = regs[0] >> 1 & 0x0c; - set_prg_bank(0x8000, bank_16k, bank + (regs[1] & 3)); - set_prg_bank(0xC000, bank_16k, bank + 3); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - if (addr < 0xc000) - regs[0] = data; - else - regs[1] = data; - Mapper232::apply_mapping(); - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper240.hpp b/quicknes/source/quickerNES/core/mappers/mapper240.hpp deleted file mode 100644 index aa2ee357f4e..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper240.hpp +++ /dev/null @@ -1,69 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - */ - -#include "mapper.hpp" - -// https://www.nesdev.org/wiki/INES_Mapper240 - -namespace quickerNES -{ - -class Mapper240 : public Mapper -{ - public: - Mapper240() - { - register_state(®s, 1); - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - enable_sram(); - intercept_writes(0x4020, 1); - write_intercepted(0, 0x4120, regs); - } - - virtual void write(nes_time_t, nes_addr_t, int data) - { - } - - virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) - { - if (addr < 0x4020 || addr > 0x5FFF) - return false; - - regs = data; - set_chr_bank(0x0000, bank_8k, data & 0x0F); - set_prg_bank(0x8000, bank_32k, data >> 4); - - return true; - } - - uint8_t regs; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper241.hpp b/quicknes/source/quickerNES/core/mappers/mapper241.hpp deleted file mode 100644 index ec6999d3946..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper241.hpp +++ /dev/null @@ -1,58 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - */ - -#include "mapper.hpp" - -// https://www.nesdev.org/wiki/INES_Mapper241 - -namespace quickerNES -{ - -class Mapper241 : public Mapper -{ - public: - Mapper241() - { - register_state(&bank, 1); - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - enable_sram(); - write(0, 0, bank); - } - - virtual void write(nes_time_t, nes_addr_t, int data) - { - bank = data; - set_prg_bank(0x8000, bank_32k, bank); - } - - uint8_t bank; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper244.hpp b/quicknes/source/quickerNES/core/mappers/mapper244.hpp deleted file mode 100644 index fb5a7710ce1..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper244.hpp +++ /dev/null @@ -1,75 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 244 - Decathlon - * - */ - -#include "mapper.hpp" - -// https://www.nesdev.org/wiki/INES_Mapper244 - -namespace quickerNES -{ - -struct mapper244_state_t -{ - uint8_t preg; - uint8_t creg; -}; -static_assert(sizeof(mapper244_state_t) == 2); - -class Mapper244 : public Mapper, mapper244_state_t -{ - public: - Mapper244() - { - mapper244_state_t *state = this; - register_state(state, sizeof *state); - } - - virtual void reset_state() - { - } - - virtual void apply_mapping() - { - set_prg_bank(0x8000, bank_32k, preg); - set_chr_bank(0x0000, bank_8k, creg); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - if (addr >= 0x8065 && addr <= 0x80A4) - { - preg = (addr - 0x8065) & 0x03; - set_prg_bank(0x8000, bank_32k, preg); - } - - if (addr >= 0x80A5 && addr <= 0x80E4) - { - creg = (addr - 0x80A5) & 0x07; - set_chr_bank(0x0000, bank_8k, creg); - } - } -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/mappers/mapper246.hpp b/quicknes/source/quickerNES/core/mappers/mapper246.hpp deleted file mode 100644 index cc0f60b89c9..00000000000 --- a/quicknes/source/quickerNES/core/mappers/mapper246.hpp +++ /dev/null @@ -1,80 +0,0 @@ -#pragma once - -/* Copyright notice for this file: - * Copyright (C) 2018 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * This mapper was added by retrowertz for Libretro port of QuickNES. - * - * Mapper 246 - Feng Shen Bang (Asia) (Ja) (Unl) - * - */ - -#include "mapper.hpp" - -// https://www.nesdev.org/wiki/INES_Mapper246 - -namespace quickerNES -{ - -class Mapper246 : public Mapper -{ - public: - Mapper246() - { - register_state(regs, sizeof regs); - } - - virtual void reset_state() - { - regs[3] = ~0; - } - - virtual void apply_mapping() - { - enable_sram(); - intercept_writes(0x6000, 0x07); - for (size_t i = 0; i < sizeof regs; i++) - write_intercepted(0, 0x6000 + i, regs[i]); - } - - virtual void write(nes_time_t, nes_addr_t addr, int data) - { - } - - virtual bool write_intercepted(nes_time_t, nes_addr_t addr, int data) - { - int bank = addr & 0x07; - - if (addr < 0x6000 || addr > 0x67FF) - return false; - - regs[bank] = data; - if (bank < 4) - { - set_prg_bank(0x8000 + (bank << 13), bank_8k, data); - return true; - } - - set_chr_bank(0x0000 + ((bank & 0x03) << 11), bank_2k, data); - - return true; - } - - uint8_t regs[8]; -}; - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppu.cpp b/quicknes/source/quickerNES/core/ppu/ppu.cpp deleted file mode 100644 index ebddebd190e..00000000000 --- a/quicknes/source/quickerNES/core/ppu/ppu.cpp +++ /dev/null @@ -1,659 +0,0 @@ - -// Timing and behavior of PPU - -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "ppu.hpp" -#include "../core.hpp" -#include - -namespace quickerNES -{ - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -// to do: remove unnecessary run_until() calls - -// Timing - -ppu_time_t const scanline_len = Ppu::scanline_len; - -// if non-zero, report sprite max at fixed time rather than calculating it -nes_time_t const fixed_sprite_max_time = 0; // 1 * ((21 + 164) * scanline_len + 100) / ppu_overclock; -int const sprite_max_cpu_offset = 2420 + 3; - -ppu_time_t const t_to_v_time = 20 * scanline_len + 302; -ppu_time_t const even_odd_time = 20 * scanline_len + 328; - -ppu_time_t const first_scanline_time = 21 * scanline_len + 60; // this can be varied -ppu_time_t const first_hblank_time = 21 * scanline_len + 252; - -ppu_time_t const earliest_sprite_max = sprite_max_cpu_offset * ppu_overclock; -ppu_time_t const earliest_sprite_hit = 21 * scanline_len + 339; // needs to be 22 * scanline_len when fixed_sprite_max_time is set - -nes_time_t const vbl_end_time = 2272; -ppu_time_t const max_frame_length = 262 * scanline_len; -// ppu_time_t const max_frame_length = 320 * scanline_len; // longer frame for testing movie resync -nes_time_t const earliest_vbl_end_time = max_frame_length / ppu_overclock - 10; - -// Scanline rendering - -void Ppu::render_bg_until_(nes_time_t cpu_time) -{ - ppu_time_t time = ppu_time(cpu_time); - ppu_time_t const frame_duration = scanline_len * 261; - if (time > frame_duration) - time = frame_duration; - - // one-time events - if (frame_phase <= 1) - { - if (frame_phase < 1) - { - // vtemp->vaddr - frame_phase = 1; - if (w2001 & 0x08) - vram_addr = vram_temp; - } - - // variable-length scanline - if (time <= even_odd_time) - { - next_bg_time = nes_time(even_odd_time); - return; - } - frame_phase = 2; - if (!(w2001 & 0x08) || emu.nes.frame_count & 1) - { - if (--frame_length_extra < 0) - { - frame_length_extra = 2; - frame_length_++; - } - burst_phase--; - } - burst_phase = (burst_phase + 2) % 3; - } - - // scanlines - if (scanline_time < time) - { - int count = (time - scanline_time + scanline_len) / scanline_len; - - // hblank before next scanline - if (hblank_time < scanline_time) - { - hblank_time += scanline_len; - run_hblank(1); - } - - scanline_time += count * scanline_len; - - hblank_time += scanline_len * (count - 1); - int saved_vaddr = vram_addr; - - int start = scanline_count; - scanline_count += count; - draw_background(start, count); - - vram_addr = saved_vaddr; // to do: this is cheap - run_hblank(count - 1); - } - - // hblank after current scanline - ppu_time_t next_ppu_time = hblank_time; - if (hblank_time < time) - { - hblank_time += scanline_len; - run_hblank(1); - next_ppu_time = scanline_time; // scanline will run next - } - // either hblank or scanline comes next - next_bg_time = nes_time(next_ppu_time); -} - -void Ppu::render_until_(nes_time_t time) -{ - // render bg scanlines then render sprite scanlines up to wherever bg was rendered to - - render_bg_until(time); - next_sprites_time = nes_time(scanline_time); - if (host_pixels) - { - int start = next_sprites_scanline; - int count = scanline_count - start; - if (count > 0) - { - next_sprites_scanline += count; - draw_sprites(start, count); - } - } -} - -// Frame events - -inline void Ppu::end_vblank() -{ - // clear VBL, sprite hit, and max sprites flags first time after 20 scanlines - r2002 &= end_vbl_mask; - end_vbl_mask = ~0; -} - -inline void Ppu::run_end_frame(nes_time_t time) -{ - if (!frame_ended) - { - // update frame_length - render_bg_until(time); - - // set VBL when end of frame is reached - nes_time_t len = frame_length(); - if (time >= len) - { - r2002 |= 0x80; - frame_ended = true; - if (w2000 & 0x80) - nmi_time_ = len + 2 - (frame_length_extra >> 1); - } - } -} - -// Sprite max - -inline void Ppu::invalidate_sprite_max_() -{ - next_sprite_max_run = earliest_sprite_max / ppu_overclock; - sprite_max_set_time = 0; -} - -void Ppu::run_sprite_max_(nes_time_t cpu_time) -{ - end_vblank(); // might get run outside $2002 handler - - // 577.0 / 0x10000 ~= 1.0 / 113.581, close enough to accurately calculate which scanline it is - int start_scanline = next_sprite_max_scanline; - next_sprite_max_scanline = unsigned((cpu_time - sprite_max_cpu_offset) * 577) / 0x10000u; - - if (!sprite_max_set_time) - { - if (!(w2001 & 0x18)) - return; - - long t = recalc_sprite_max(start_scanline); - sprite_max_set_time = indefinite_time; - if (t > 0) - sprite_max_set_time = t / 3 + sprite_max_cpu_offset; - next_sprite_max_run = sprite_max_set_time; - // dprintf( "sprite_max_set_time: %d\n", sprite_max_set_time ); - } - - if (cpu_time > sprite_max_set_time) - { - r2002 |= 0x20; - // dprintf( "Sprite max flag set: %d\n", sprite_max_set_time ); - next_sprite_max_run = indefinite_time; - } -} - -inline void Ppu::run_sprite_max(nes_time_t t) -{ - if (!fixed_sprite_max_time && t > next_sprite_max_run) - run_sprite_max_(t); -} - -inline void Ppu::invalidate_sprite_max(nes_time_t t) -{ - if (!fixed_sprite_max_time && !(r2002 & 0x20)) - { - run_sprite_max(t); - invalidate_sprite_max_(); - } -} - -// Sprite 0 hit - -inline int Ppu_Impl::first_opaque_sprite_line() -{ - // advance earliest time if sprite has blank lines at beginning - uint8_t const *p = map_chr(sprite_tile_index(spr_ram) * 16); - int twice = w2000 >> 5 & 1; // loop twice if double height is set - int line = 0; - do - { - for (int n = 8; n--; p++) - { - if (p[0] | p[8]) - return line; - line++; - } - - p += 8; - } while (!--twice); - return line; -} - -void Ppu::update_sprite_hit(nes_time_t cpu_time) -{ - ppu_time_t earliest = earliest_sprite_hit + spr_ram[0] * scanline_len + spr_ram[3]; - // ppu_time_t latest = earliest + sprite_height() * scanline_len; - - earliest += first_opaque_sprite_line() * scanline_len; - - ppu_time_t time = ppu_time(cpu_time); - next_sprite_hit_check = indefinite_time; - - if (false) - if (earliest < time) - { - r2002 |= 0x40; - return; - } - - if (time < earliest) - { - next_sprite_hit_check = nes_time(earliest); - return; - } - - // within possible range; render scanline and compare pixels - int count_needed = 2 + (time - earliest_sprite_hit - spr_ram[3]) / scanline_len; - if (count_needed > 240) - count_needed = 240; - while (scanline_count < count_needed) - render_bg_until(std::max(cpu_time, next_bg_time + 1)); - - if (sprite_hit_found < 0) - return; // sprite won't hit - - if (!sprite_hit_found) - { - // check again next scanline - next_sprite_hit_check = nes_time(earliest_sprite_hit + spr_ram[3] + - (scanline_count - 1) * scanline_len); - } - else - { - // hit found - ppu_time_t hit_time = earliest_sprite_hit + sprite_hit_found - scanline_len; - - if (time < hit_time) - { - next_sprite_hit_check = nes_time(hit_time); - return; - } - - // dprintf( "Sprite hit x: %d, y: %d, scanline_count: %d\n", - // sprite_hit_found % 341, sprite_hit_found / 341, scanline_count ); - - r2002 |= 0x40; - } -} - -// $2002 - -inline void Ppu::query_until(nes_time_t time) -{ - end_vblank(); - - // sprite hit - if (time > next_sprite_hit_check) - update_sprite_hit(time); - - // sprite max - if (!fixed_sprite_max_time) - run_sprite_max(time); - else if (time >= fixed_sprite_max_time) - r2002 |= (w2001 << 1 & 0x20) | (w2001 << 2 & 0x20); -} - -int Ppu::read_2002(nes_time_t time) -{ - nes_time_t next = next_status_event; - next_status_event = vbl_end_time; - int extra_clock = extra_clocks ? (extra_clocks - 1) >> 2 & 1 : 0; - if (time > next && time > vbl_end_time + extra_clock) - { - query_until(time); - - next_status_event = next_sprite_hit_check; - nes_time_t const next_max = fixed_sprite_max_time ? fixed_sprite_max_time : next_sprite_max_run; - if (next_status_event > next_max) - next_status_event = next_max; - - if (time > earliest_open_bus_decay()) - { - next_status_event = earliest_open_bus_decay(); - update_open_bus(time); - } - - if (time > earliest_vbl_end_time) - { - if (next_status_event > earliest_vbl_end_time) - next_status_event = earliest_vbl_end_time; - run_end_frame(time); - - // special vbl behavior when read is just before or at clock when it's set - if (extra_clocks != 1) - { - if (time == frame_length()) - { - nmi_time_ = indefinite_time; - // dprintf( "Suppressed NMI\n" ); - } - } - else if (time == frame_length() - 1) - { - r2002 &= ~0x80; - frame_ended = true; - nmi_time_ = indefinite_time; - // dprintf( "Suppressed NMI\n" ); - } - } - } - emu.set_ppu_2002_time(next_status_event); - - int result = r2002; - second_write = false; - r2002 = result & ~0x80; - poke_open_bus(time, result, 0xE0); - update_open_bus(time); - return (result & 0xE0) | (open_bus & 0x1F); -} - -void Ppu::dma_sprites(nes_time_t time, void const *in) -{ - // dprintf( "%d sprites written\n", time ); - render_until(time); - - invalidate_sprite_max(time); - - memcpy(spr_ram + w2003, in, 0x100 - w2003); - memcpy(spr_ram, (char *)in + 0x100 - w2003, w2003); -} - -// Read - -inline int Ppu_Impl::read_2007(int addr) -{ - int result = r2007; - if (addr < 0x2000) - { - r2007 = *map_chr(addr); - } - else - { - r2007 = get_nametable(addr)[addr & 0x3ff]; - if (addr >= 0x3f00) - { - return palette[map_palette(addr)] | (open_bus & 0xC0); - } - } - return result; -} - -int Ppu::read(unsigned addr, nes_time_t time) -{ - switch (addr & 7) - { - // status - case 2: // handled inline - return read_2002(time); - - // sprite ram - case 4: - { - int result = spr_ram[w2003]; - if ((w2003 & 3) == 2) - result &= 0xe3; - poke_open_bus(time, result, ~0); - return result; - } - - // video ram - case 7: - { - render_bg_until(time); - int addr = vram_addr; - int new_addr = addr + addr_inc; - vram_addr = new_addr; - if (~addr & new_addr & vaddr_clock_mask) - { - emu.mapper->a12_clocked(); - addr = vram_addr - addr_inc; // avoid having to save across func call - } - int result = read_2007(addr & 0x3fff); - poke_open_bus(time, result, ((addr & 0x3fff) >= 0x3f00) ? 0x3F : ~0); - return result; - } - - default: - /* Read from unimplemented PPU register */ - break; - } - - update_open_bus(time); - - return open_bus; -} - -// Write - -void Ppu::write(nes_time_t time, unsigned addr, int data) -{ - switch (addr & 7) - { - case 0: - { // control - int changed = w2000 ^ data; - - if (changed & 0x28) - render_until(time); // obj height or pattern addr changed - else if (changed & 0x10) - render_bg_until(time); // bg pattern addr changed - else if (((data << 10) ^ vram_temp) & 0x0C00) - render_bg_until(time); // nametable changed - - if (changed & 0x80) - { - if (time > vbl_end_time + ((extra_clocks - 1) >> 2 & 1)) - end_vblank(); // to do: clean this up - - if (data & 0x80 & r2002) - { - nmi_time_ = time + 2; - emu.event_changed(); - } - if (time >= earliest_vbl_end_time) - run_end_frame(time - 1 + (extra_clocks & 1)); - } - - // nametable select - vram_temp = (vram_temp & ~0x0C00) | ((data & 3) * 0x400); - - if (changed & 0x20) // sprite height changed - invalidate_sprite_max(time); - w2000 = data; - addr_inc = data & 4 ? 32 : 1; - - break; - } - - case 1: - { // sprites, bg enable - int changed = w2001 ^ data; - - if (changed & 0xE1) - { - render_until(time + 1); // emphasis/monochrome bits changed - palette_changed = 0x18; - } - - if (changed & 0x14) - render_until(time + 1); // sprite enable/clipping changed - else if (changed & 0x0A) - render_bg_until(time + 1); // bg enable/clipping changed - - if (changed & 0x08) // bg enabled changed - emu.mapper->run_until(time); - - if (!(w2001 & 0x18) != !(data & 0x18)) - invalidate_sprite_max(time); // all rendering just turned on or off - - w2001 = data; - - if (changed & 0x08) - emu.irq_changed(); - - break; - } - - case 3: // spr addr - w2003 = data; - poke_open_bus(time, w2003, ~0); - break; - - case 4: - // dprintf( "%d sprites written\n", time ); - if (time > first_scanline_time / ppu_overclock) - { - render_until(time); - invalidate_sprite_max(time); - } - spr_ram[w2003] = data; - w2003 = (w2003 + 1) & 0xff; - break; - - case 5: - render_bg_until(time); - if ((second_write ^= 1)) - { - pixel_x = data & 7; - vram_temp = (vram_temp & ~0x1f) | (data >> 3); - } - else - { - vram_temp = (vram_temp & ~0x73e0) | - (data << 12 & 0x7000) | (data << 2 & 0x03e0); - } - break; - - case 6: - render_bg_until(time); - if ((second_write ^= 1)) - { - vram_temp = (vram_temp & 0xff) | (data << 8 & 0x3f00); - } - else - { - int changed = ~vram_addr & vram_temp; - vram_addr = vram_temp = (vram_temp & 0xff00) | data; - if (changed & vaddr_clock_mask) - emu.mapper->a12_clocked(); - } - break; - - default: - /* Wrote to unimplemented PPU register */ - break; - } - - poke_open_bus(time, data, ~0); -} - -// Frame begin/end - -nes_time_t Ppu::begin_frame(ppu_time_t timestamp) -{ - // current time - int cpu_timestamp = timestamp / ppu_overclock; - extra_clocks = timestamp - cpu_timestamp * ppu_overclock; - - // frame end - ppu_time_t const frame_end = max_frame_length - 1 - extra_clocks; - frame_length_ = (frame_end + (ppu_overclock - 1)) / ppu_overclock; - frame_length_extra = frame_length_ * ppu_overclock - frame_end; - - // nmi - nmi_time_ = indefinite_time; - if (w2000 & 0x80 & r2002) - nmi_time_ = 2 - (extra_clocks >> 1); - - // bg rendering - frame_phase = 0; - scanline_count = 0; - hblank_time = first_hblank_time; - scanline_time = first_scanline_time; - next_bg_time = nes_time(t_to_v_time); - - // sprite rendering - next_sprites_scanline = 0; - next_sprites_time = 0; - - // status register - frame_ended = false; - end_vbl_mask = ~0xE0; - next_status_event = 0; - sprite_hit_found = 0; - next_sprite_hit_check = 0; - next_sprite_max_scanline = 0; - invalidate_sprite_max_(); - - decay_low += cpu_timestamp; - decay_high += cpu_timestamp; - - base::begin_frame(); - - // dprintf( "cpu_timestamp: %d\n", cpu_timestamp ); - return cpu_timestamp; -} - -ppu_time_t Ppu::end_frame(nes_time_t end_time) -{ - render_bg_until(end_time); - render_until(end_time); - query_until(end_time); - run_end_frame(end_time); - - update_open_bus(end_time); - decay_low -= end_time; - decay_high -= end_time; - - // to do: do more PPU RE to get exact behavior - if (w2001 & 0x08) - { - unsigned a = vram_addr + 2; - if ((vram_addr & 0xff) >= 0xfe) - a = (vram_addr ^ 0x400) - 0x1e; - vram_addr = a; - } - - if (w2001 & 0x10) - w2003 = 0; - - suspend_rendering(); - - return (end_time - frame_length_) * ppu_overclock + frame_length_extra; -} - -void Ppu::poke_open_bus(nes_time_t time, int data, int mask) -{ - open_bus = (open_bus & ~mask) | (data & mask); - if (mask & 0x1F) decay_low = time + scanline_len * 100 / ppu_overclock; - if (mask & 0xE0) decay_high = time + scanline_len * 100 / ppu_overclock; -} - -nes_time_t Ppu::earliest_open_bus_decay() -{ - return (decay_low < decay_high) ? decay_low : decay_high; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppu.hpp b/quicknes/source/quickerNES/core/ppu/ppu.hpp deleted file mode 100644 index c786ed92c2d..00000000000 --- a/quicknes/source/quickerNES/core/ppu/ppu.hpp +++ /dev/null @@ -1,146 +0,0 @@ -#pragma once - -// NES PPU emulator -// Emu 0.7.0 - -#include "ppuRendering.hpp" -#include - -namespace quickerNES -{ - -class Mapper; -class Core; - -typedef long nes_time_t; -typedef long ppu_time_t; // ppu_time_t = nes_time_t * ppu_overclock - -ppu_time_t const ppu_overclock = 3; // PPU clocks for each CPU clock - -class Ppu : public Ppu_Rendering -{ - typedef Ppu_Rendering base; - - public: - Ppu(Core *); - - // Begin PPU frame and return beginning CPU timestamp - nes_time_t begin_frame(ppu_time_t); - - nes_time_t nmi_time() { return nmi_time_; } - void acknowledge_nmi() { nmi_time_ = LONG_MAX / 2 + 1; } - - int read_2002(nes_time_t); - int read(unsigned addr, nes_time_t); - void write(nes_time_t, unsigned addr, int); - - void render_bg_until(nes_time_t); - void render_until(nes_time_t); - - // CPU time that frame will have ended by - int frame_length() const { return frame_length_; } - - // End frame rendering and return PPU timestamp for next frame - ppu_time_t end_frame(nes_time_t); - - // Do direct memory copy to sprite RAM - void dma_sprites(nes_time_t, void const *in); - - int burst_phase; - - private: - Core &emu; - - enum - { - indefinite_time = LONG_MAX / 2 + 1 - }; - - void suspend_rendering(); - int read_(unsigned addr, nes_time_t); // note swapped arguments! - - // NES<->PPU time conversion - int extra_clocks; - ppu_time_t ppu_time(nes_time_t t) const { return t * ppu_overclock + extra_clocks; } - nes_time_t nes_time(ppu_time_t t) const { return (t - extra_clocks) / ppu_overclock; } - - // frame - nes_time_t nmi_time_; - int end_vbl_mask; - int frame_length_; - int frame_length_extra; - bool frame_ended; - void end_vblank(); - void run_end_frame(nes_time_t); - - // bg rendering - nes_time_t next_bg_time; - ppu_time_t scanline_time; - ppu_time_t hblank_time; - int scanline_count; - int frame_phase; - void render_bg_until_(nes_time_t); - void run_scanlines(int count); - - // sprite rendering - ppu_time_t next_sprites_time; - int next_sprites_scanline; - void render_until_(nes_time_t); - - // $2002 status register - nes_time_t next_status_event; - void query_until(nes_time_t); - - // sprite hit - nes_time_t next_sprite_hit_check; - void update_sprite_hit(nes_time_t); - - // open bus decay - void update_open_bus(nes_time_t); - void poke_open_bus(nes_time_t, int, int mask); - nes_time_t earliest_open_bus_decay(); - - // sprite max - nes_time_t next_sprite_max_run; // doesn't need to run until this time - nes_time_t sprite_max_set_time; // if 0, needs to be recalculated - int next_sprite_max_scanline; - void run_sprite_max_(nes_time_t); - void run_sprite_max(nes_time_t); - void invalidate_sprite_max_(); - void invalidate_sprite_max(nes_time_t); - - friend int nes_cpu_read_likely_ppu(class Core *, unsigned, nes_time_t); -}; - -inline void Ppu::suspend_rendering() -{ - next_bg_time = indefinite_time; - next_sprites_time = indefinite_time; - extra_clocks = 0; -} - -inline Ppu::Ppu(Core *e) : emu(*e) -{ - burst_phase = 0; - suspend_rendering(); -} - -inline void Ppu::render_until(nes_time_t t) -{ - if (t > next_sprites_time) - render_until_(t); -} - -inline void Ppu::render_bg_until(nes_time_t t) -{ - if (t > next_bg_time) - render_bg_until_(t); -} - -inline void Ppu::update_open_bus(nes_time_t time) -{ - if (time >= decay_low) open_bus &= ~0x1F; - if (time >= decay_high) open_bus &= ~0xE0; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppuImpl.cpp b/quicknes/source/quickerNES/core/ppu/ppuImpl.cpp deleted file mode 100644 index 2790b105efa..00000000000 --- a/quicknes/source/quickerNES/core/ppu/ppuImpl.cpp +++ /dev/null @@ -1,436 +0,0 @@ -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "ppuImpl.hpp" -#include -#include -#include - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -int const cache_line_size = 128; // tile cache is kept aligned to this boundary - -inline void set_be32(void *p, unsigned long n) -{ - ((unsigned char *)p)[0] = (unsigned char)(n >> 24); - ((unsigned char *)p)[1] = (unsigned char)(n >> 16); - ((unsigned char *)p)[2] = (unsigned char)(n >> 8); - ((unsigned char *)p)[3] = (unsigned char)n; -} - -#define SET_BE32(addr, data) set_be32(addr, data) - -Ppu_Impl::Ppu_Impl() -{ - impl = NULL; - chr_data = NULL; - chr_size = 0; - tile_cache = NULL; - host_palette = NULL; - max_palette_size = 0; - tile_cache_mem = NULL; - ppu_state_t::unused = 0; - - mmc24_enabled = false; - mmc24_latched[0] = 0; - mmc24_latched[1] = 0; -} - -Ppu_Impl::~Ppu_Impl() -{ - close_chr(); - delete impl; -} - -void Ppu_Impl::all_tiles_modified() -{ - any_tiles_modified = true; - memset(modified_tiles, ~0, sizeof modified_tiles); -} - -const char *Ppu_Impl::open_chr(uint8_t const *new_chr, long chr_data_size) -{ - close_chr(); - - if (!impl) - { - impl = new impl_t; - chr_ram = impl->chr_ram; - } - - chr_data = new_chr; - chr_size = chr_data_size; - chr_is_writable = false; - - if (chr_data_size == 0) - { - // CHR RAM - chr_data = impl->chr_ram; - chr_size = sizeof impl->chr_ram; - chr_is_writable = true; - } - - // allocate aligned memory for cache - long tile_count = chr_size / bytes_per_tile; - tile_cache_mem = new uint8_t[tile_count * sizeof(cached_tile_t) * 2 + cache_line_size]; - tile_cache = (cached_tile_t *)(tile_cache_mem + cache_line_size - - (uintptr_t)tile_cache_mem % cache_line_size); - flipped_tiles = tile_cache + tile_count; - - // rebuild cache - all_tiles_modified(); - if (!chr_is_writable) - { - any_tiles_modified = false; - rebuild_chr(0, chr_size); - } - - return 0; -} - -void Ppu_Impl::close_chr() -{ - delete[] tile_cache_mem; - tile_cache_mem = NULL; -} - -void Ppu_Impl::set_chr_bank(int addr, int size, long data) -{ - if (data + size > chr_size) - data %= chr_size; - - int count = (unsigned)size / chr_page_size; - - int page = (unsigned)addr / chr_page_size; - while (count--) - { - chr_pages[page] = data - page * chr_page_size; - page++; - data += chr_page_size; - } -} - -void Ppu_Impl::set_chr_bank_ex(int addr, int size, long data) -{ - mmc24_enabled = true; - - // check( !chr_is_writable || addr == data ); // to do: is CHR RAM ever bank-switched? - // dprintf( "Tried to set CHR RAM bank at %04X to CHR+%04X\n", addr, data ); - - if (data + size > chr_size) - data %= chr_size; - - int count = (unsigned)size / chr_page_size; - // assert( chr_page_size * count == size ); - // assert( addr + size <= chr_addr_size ); - - int page = (unsigned)addr / chr_page_size; - while (count--) - { - chr_pages_ex[page] = data - page * chr_page_size; - page++; - data += chr_page_size; - } -} - -static uint8_t const initial_palette[0x20] = - { - 0x0f, 0x01, 0x00, 0x01, 0x00, 0x02, 0x02, 0x0D, 0x08, 0x10, 0x08, 0x24, 0x00, 0x00, 0x04, 0x2C, 0x00, 0x01, 0x34, 0x03, 0x00, 0x04, 0x00, 0x14, 0x00, 0x3A, 0x00, 0x02, 0x00, 0x20, 0x2C, 0x08}; - -void Ppu_Impl::reset(bool full_reset) -{ - w2000 = 0; - w2001 = 0; - r2002 = 0x80; - r2007 = 0; - open_bus = 0; - decay_low = 0; - decay_high = 0; - second_write = false; - vram_temp = 0; - pixel_x = 0; - - if (full_reset) - { - vram_addr = 0; - w2003 = 0; - memset(impl->chr_ram, 0xff, sizeof impl->chr_ram); - memset(impl->nt_ram, 0xff, sizeof impl->nt_ram); - memcpy(palette, initial_palette, sizeof palette); - } - - set_nt_banks(0, 0, 0, 0); - set_chr_bank(0, chr_addr_size, 0); - memset(spr_ram, 0xff, sizeof spr_ram); - all_tiles_modified(); - if (max_palette_size > 0) - memset(host_palette, 0, max_palette_size * sizeof *host_palette); -} - -void Ppu_Impl::capture_palette() -{ - if (palette_size + palette_increment <= max_palette_size) - { - palette_offset = (palette_begin + palette_size) * 0x01010101; - - short *out = host_palette + palette_size; - palette_size += palette_increment; - - int i; - - int emph = w2001 << 1 & 0x1C0; - int mono = (w2001 & 1 ? 0x30 : 0x3F); - - for (i = 0; i < 32; i++) - out[i] = (palette[i] & mono) | emph; - - int bg = out[0]; - for (i = 4; i < 32; i += 4) - out[i] = bg; - - memcpy(out + 32, out, 32 * sizeof *out); - } -} - -void Ppu_Impl::run_hblank(int count) -{ - long addr = (vram_addr & 0x7be0) + (vram_temp & 0x41f) + (count * 0x1000); - if (w2001 & 0x08) - { - while (addr >= 0x8000) - { - int y = (addr + 0x20) & 0x3e0; - addr = (addr - 0x8000) & ~0x3e0; - if (y == 30 * 0x20) - y = 0x800; - addr ^= y; - } - vram_addr = addr; - } -} - -#ifdef __MWERKS__ - #pragma ppc_unroll_factor_limit 1 // messes up calc_sprite_max_scanlines loop -static int zero = 0; -#else -const int zero = 0; -#endif - -// Tile cache - -inline unsigned long reorder(unsigned long n) -{ - n |= n << 7; - return ((n << 14) | n); -} - -inline void Ppu_Impl::update_tile(int index) -{ - const uint8_t *in = chr_data + (index)*bytes_per_tile; - uint8_t *out = (uint8_t *)tile_cache[index]; - uint8_t *flipped_out = (uint8_t *)flipped_tiles[index]; - - unsigned long bit_mask = 0x11111111 + zero; - - for (int n = 4; n--;) - { - // Reorder two lines of two-bit pixels. No bits are wasted, so - // reordered version is also four bytes. - // - // 12345678 to A0E4B1F5C2G6D3H7 - // ABCDEFGH - unsigned long c = - ((reorder(in[0]) & bit_mask) << 0) | - ((reorder(in[8]) & bit_mask) << 1) | - ((reorder(in[1]) & bit_mask) << 2) | - ((reorder(in[9]) & bit_mask) << 3); - in += 2; - - SET_BE32(out, c); - out += 4; - - // make horizontally-flipped version - c = ((c >> 28) & 0x000f) | - ((c >> 20) & 0x00f0) | - ((c >> 12) & 0x0f00) | - ((c >> 4) & 0xf000) | - ((c & 0xf000) << 4) | - ((c & 0x0f00) << 12) | - ((c & 0x00f0) << 20) | - ((c & 0x000f) << 28); - SET_BE32(flipped_out, c); - flipped_out += 4; - } -} - -void Ppu_Impl::rebuild_chr(unsigned long begin, unsigned long end) -{ - unsigned end_index = (end + bytes_per_tile - 1) / bytes_per_tile; - for (unsigned index = begin / bytes_per_tile; index < end_index; index++) - update_tile(index); -} - -void Ppu_Impl::update_tiles(int first_tile) -{ - int chunk = 0; - do - { - if (!(uint32_t &)modified_tiles[chunk]) - { - chunk += 4; - } - else - { - do - { - int modified = modified_tiles[chunk]; - if (modified) - { - modified_tiles[chunk] = 0; - - int index = first_tile + chunk * 8; - do - { - if (modified & 1) - update_tile(index); - index++; - } while ((modified >>= 1) != 0); - } - } while (++chunk & 3); - } - } while (chunk < chr_tile_count / 8); -} - -// Sprite max - -template -struct calc_sprite_max_scanlines -{ - static unsigned long func(uint8_t const *sprites, uint8_t *scanlines, int begin) - { - unsigned long any_hits = 0; - unsigned long const offset = 0x01010101 + zero; - unsigned limit = 239 + height - begin; - for (int n = 64; n; --n) - { - int top = *sprites; - sprites += 4; - uint8_t *p = scanlines + top; - if ((unsigned)(239 - top) < limit) - { - unsigned long p0 = ((uint32_t *)p)[0] + offset; - unsigned long p4 = ((uint32_t *)p)[1] + offset; - ((uint32_t *)p)[0] = p0; - any_hits |= p0; - ((uint32_t *)p)[1] = p4; - any_hits |= p4; - if (height > 8) - { - unsigned long p0 = ((uint32_t *)p)[2] + offset; - unsigned long p4 = ((uint32_t *)p)[3] + offset; - ((uint32_t *)p)[2] = p0; - any_hits |= p0; - ((uint32_t *)p)[3] = p4; - any_hits |= p4; - } - } - } - - return any_hits; - } -}; - -long Ppu_Impl::recalc_sprite_max(int scanline) -{ - int const max_scanline_count = image_height; - - uint8_t sprite_max_scanlines[256 + 16]; - - // recalculate sprites per scanline - memset(sprite_max_scanlines + scanline, 0x78, last_sprite_max_scanline - scanline); - unsigned long any_hits; - if (w2000 & 0x20) - any_hits = calc_sprite_max_scanlines<16>::func(spr_ram, sprite_max_scanlines, scanline); - else - any_hits = calc_sprite_max_scanlines<8>::func(spr_ram, sprite_max_scanlines, scanline); - - // cause search to terminate past max_scanline_count if none have 8 or more sprites - (uint32_t &)sprite_max_scanlines[max_scanline_count] = 0; - sprite_max_scanlines[max_scanline_count + 3] = 0x80; - - // avoid scan if no possible hits - if (!(any_hits & 0x80808080)) - return 0; - - // find soonest scanline with 8 or more sprites - while (true) - { - unsigned long const mask = 0x80808080 + zero; - - // check four at a time - uint8_t *pos = &sprite_max_scanlines[scanline]; - unsigned long n = *((uint32_t *)pos); - while (1) - { - unsigned long x = n & mask; - pos += 4; - n = *((uint32_t *)pos); - if (x) - break; - } - - int height = sprite_height(); - int remain = 8; - int i = 0; - - // find which of the four - pos -= 3 + (pos[-4] >> 7 & 1); - pos += 1 - (*pos >> 7 & 1); - pos += 1 - (*pos >> 7 & 1); - - scanline = pos - sprite_max_scanlines; - if (scanline >= max_scanline_count) - break; - - // find time that max sprites flag is set (or that it won't be set) - do - { - int relative = scanline - spr_ram[i]; - i += 4; - if ((unsigned)relative < (unsigned)height && !--remain) - { - // now use screwey search for 9th sprite - int offset = 0; - while (i < 0x100) - { - int relative = scanline - spr_ram[i + offset]; - // dprintf( "Checking sprite %d [%d]\n", i / 4, offset ); - i += 4; - offset = (offset + 1) & 3; - if ((unsigned)relative < (unsigned)height) - { - // dprintf( "sprite max on scanline %d\n", scanline ); - return scanline * scanline_len + (unsigned)i / 2; - } - } - break; - } - } while (i < 0x100); - scanline++; - } - - return 0; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppuImpl.hpp b/quicknes/source/quickerNES/core/ppu/ppuImpl.hpp deleted file mode 100644 index a3805899b2d..00000000000 --- a/quicknes/source/quickerNES/core/ppu/ppuImpl.hpp +++ /dev/null @@ -1,263 +0,0 @@ -#pragma once - -// NES PPU misc functions and setup -// Emu 0.7.0 - -#include - -namespace quickerNES -{ - -struct ppu_state_t -{ - uint8_t w2000; // control - uint8_t w2001; // control - uint8_t r2002; // status - uint8_t w2003; // sprite ram addr - uint8_t r2007; // vram read buffer - uint8_t second_write; // next write to $2005/$2006 is second since last $2002 read - uint16_t vram_addr; // loopy_v - uint16_t vram_temp; // loopy_t - uint8_t pixel_x; // fine-scroll (0-7) - uint8_t unused; - uint8_t palette[0x20]; // entries $10, $14, $18, $1c should be ignored - uint16_t decay_low; - uint16_t decay_high; - uint8_t open_bus; - uint8_t unused2[3]; -}; -static_assert(sizeof(ppu_state_t) == 20 + 0x20); - -class Ppu_Impl : public ppu_state_t -{ - public: - Ppu_Impl(); - ~Ppu_Impl(); - - void reset(bool full_reset); - - // Setup - const char *open_chr(const uint8_t *, long size); - void rebuild_chr(unsigned long begin, unsigned long end); - void close_chr(); - - static const uint16_t image_width = 256; - static const uint16_t image_height = 240; - static const uint16_t image_left = 8; - static const uint16_t buffer_width = image_width + 16; - static const uint16_t buffer_height = image_height; - enum - { - spr_ram_size = 0x100 - }; - - uint8_t *nt_banks[4]; - bool chr_is_writable; - long chr_size; - - int write_2007(int); - - // Host palette - static const uint8_t palette_increment = 64; - short *host_palette; - int palette_begin; - int max_palette_size; - int palette_size; // set after frame is rendered - - // Mapping - static const uint16_t vaddr_clock_mask = 0x1000; - void set_nt_banks(int bank0, int bank1, int bank2, int bank3); - void set_chr_bank(int addr, int size, long data); - void set_chr_bank_ex(int addr, int size, long data); - - // Nametable and CHR RAM - static const uint16_t nt_ram_size = 0x1000; - static const uint16_t chr_addr_size = 0x2000; - static const uint8_t bytes_per_tile = 16; - static const uint16_t chr_tile_count = chr_addr_size / bytes_per_tile; - static const uint8_t mini_offscreen_height = 16; // double-height sprite - - struct impl_t - { - uint8_t nt_ram[nt_ram_size]; - uint8_t chr_ram[chr_addr_size]; - union - { - uint32_t clip_buf[256 * 2]; - uint8_t mini_offscreen[buffer_width * mini_offscreen_height]; - }; - }; - impl_t *impl; - - long map_chr_addr_peek(unsigned a) const - { - return chr_pages[a / chr_page_size] + a; - } - - int peekaddr(int addr) - { - if (addr < 0x2000) - return chr_data[map_chr_addr_peek(addr)]; - else - return get_nametable(addr)[addr & 0x3ff]; - } - - static const uint16_t scanline_len = 341; - - uint8_t *getSpriteRAM() const { return (uint8_t *)spr_ram; } - uint16_t getSpriteRAMSize() const { return spr_ram_size; } - - uint8_t *getPaletteRAM() const { return (uint8_t *)palette; } - uint16_t getPaletteRAMSize() const { return sizeof(palette); } - - uint8_t spr_ram[spr_ram_size]; - void all_tiles_modified(); - - protected: - void begin_frame(); - void run_hblank(int); - int sprite_height() const { return (w2000 >> 2 & 8) + 8; } - - protected: // friend class Ppu; private: - int addr_inc; // pre-calculated $2007 increment (based on w2001 & 0x04) - int read_2007(int addr); - - static const uint16_t last_sprite_max_scanline = 240; - long recalc_sprite_max(int scanline); - int first_opaque_sprite_line(); - - protected: // friend class Ppu_Rendering; private: - unsigned long palette_offset; - int palette_changed; - void capture_palette(); - - bool any_tiles_modified; - void update_tiles(int first_tile); - - typedef uint32_t cache_t; - typedef cache_t cached_tile_t[4]; - cached_tile_t const &get_bg_tile(int index); - cached_tile_t const &get_sprite_tile(uint8_t const *sprite); - uint8_t *get_nametable(int addr) { return nt_banks[addr >> 10 & 3]; }; - - private: - static int map_palette(int addr); - int sprite_tile_index(uint8_t const *sprite) const; - - // Mapping - static const uint16_t chr_page_size = 0x400; - long chr_pages[chr_addr_size / chr_page_size]; - long chr_pages_ex[chr_addr_size / chr_page_size]; - long map_chr_addr(unsigned a) /*const*/ - { - if (!mmc24_enabled) - return chr_pages[a / chr_page_size] + a; - - int page = a >> 12 & 1; - int newval0 = (a & 0xff0) != 0xfd0; - int newval1 = (a & 0xff0) == 0xfe0; - - long ret; - if (mmc24_latched[page]) - ret = chr_pages_ex[a / chr_page_size] + a; - else - ret = chr_pages[a / chr_page_size] + a; - - mmc24_latched[page] &= newval0; - mmc24_latched[page] |= newval1; - - return ret; - } - - bool mmc24_enabled; - uint8_t mmc24_latched[2]; - - // CHR data - uint8_t const *chr_data; // points to chr ram when there is no read-only data - uint8_t *chr_ram; // always points to impl->chr_ram; makes write_2007() faster - uint8_t const *map_chr(int addr) { return &chr_data[map_chr_addr(addr)]; } - - // CHR cache - cached_tile_t *tile_cache; - cached_tile_t *flipped_tiles; - uint8_t *tile_cache_mem; - union - { - uint8_t modified_tiles[chr_tile_count / 8]; - uint32_t align_; - }; - - void update_tile(int index); -}; - -inline void Ppu_Impl::set_nt_banks(int bank0, int bank1, int bank2, int bank3) -{ - uint8_t *nt_ram = impl->nt_ram; - nt_banks[0] = &nt_ram[bank0 * 0x400]; - nt_banks[1] = &nt_ram[bank1 * 0x400]; - nt_banks[2] = &nt_ram[bank2 * 0x400]; - nt_banks[3] = &nt_ram[bank3 * 0x400]; -} - -inline int Ppu_Impl::map_palette(int addr) -{ - if ((addr & 3) == 0) - addr &= 0x0f; // 0x10, 0x14, 0x18, 0x1c map to 0x00, 0x04, 0x08, 0x0c - return addr & 0x1f; -} - -inline int Ppu_Impl::sprite_tile_index(uint8_t const *sprite) const -{ - int tile = sprite[1] + (w2000 << 5 & 0x100); - if (w2000 & 0x20) - tile = (tile & 1) * 0x100 + (tile & 0xfe); - return tile; -} - -inline int Ppu_Impl::write_2007(int data) -{ - int addr = vram_addr; - uint8_t *chr_ram = this->chr_ram; // pre-read - int changed = addr + addr_inc; - unsigned const divisor = bytes_per_tile * 8; - int mod_index = (unsigned)addr / divisor % (0x4000 / divisor); - vram_addr = changed; - changed ^= addr; - addr &= 0x3fff; - - // use index into modified_tiles [] since it's calculated sooner than addr is masked - if ((unsigned)mod_index < 0x2000 / divisor) - { - // Avoid overhead of checking for read-only CHR; if that is the case, - // this modification will be ignored. - int mod = modified_tiles[mod_index]; - chr_ram[addr] = data; - any_tiles_modified = true; - modified_tiles[mod_index] = mod | (1 << ((unsigned)addr / bytes_per_tile % 8)); - } - else if (addr < 0x3f00) - { - get_nametable(addr)[addr & 0x3ff] = data; - } - else - { - data &= 0x3f; - uint8_t &entry = palette[map_palette(addr)]; - int changed = entry ^ data; - entry = data; - if (changed) - palette_changed = 0x18; - } - - return changed; -} - -inline void Ppu_Impl::begin_frame() -{ - palette_changed = 0x18; - palette_size = 0; - palette_offset = palette_begin * 0x01010101; - addr_inc = w2000 & 4 ? 32 : 1; -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppuRendering.cpp b/quicknes/source/quickerNES/core/ppu/ppuRendering.cpp deleted file mode 100644 index 5f89f8bcf45..00000000000 --- a/quicknes/source/quickerNES/core/ppu/ppuRendering.cpp +++ /dev/null @@ -1,506 +0,0 @@ -// Emu 0.7.0. http://www.slack.net/~ant/ - -#include "ppuRendering.hpp" -#include -#include -#include - -/* Copyright (C) 2004-2006 Shay Green. This module is free software; you -can redistribute it and/or modify it under the terms of the GNU Lesser -General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. This -module is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -more details. You should have received a copy of the GNU Lesser General -Public License along with this module; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -namespace quickerNES -{ - -static unsigned zero = 0; // helps CodeWarrior optimizer when added to constants - -inline Ppu_Impl::cached_tile_t const & -Ppu_Impl::get_sprite_tile(uint8_t const *sprite) -{ - cached_tile_t *tiles = tile_cache; - if (sprite[2] & 0x40) - tiles = flipped_tiles; - int index = sprite_tile_index(sprite); - - // use index directly, since cached tile is same size as native tile - static_assert(sizeof(cached_tile_t) == bytes_per_tile); - return *(Ppu_Impl::cached_tile_t *)((uint8_t *)tiles + map_chr_addr(index * bytes_per_tile)); -} - -inline Ppu_Impl::cached_tile_t const &Ppu_Impl::get_bg_tile(int index) -{ - // use index directly, since cached tile is same size as native tile - static_assert(sizeof(cached_tile_t) == bytes_per_tile); - return *(Ppu_Impl::cached_tile_t *)((uint8_t *)tile_cache + map_chr_addr(index * bytes_per_tile)); -} - -// Fill - -void Ppu_Rendering::fill_background(int count) -{ - ptrdiff_t const next_line = scanline_row_bytes - image_width; - uint32_t *pixels = (uint32_t *)scanline_pixels; - - unsigned long fill = palette_offset; - if ((vram_addr & 0x3f00) == 0x3f00) - { - // PPU uses current palette entry if addr is within palette ram - int color = vram_addr & 0x1f; - if (!(color & 3)) - color &= 0x0f; - fill += color * 0x01010101; - } - - for (int n = count; n--;) - { - for (int n = image_width / 16; n--;) - { - pixels[0] = fill; - pixels[1] = fill; - pixels[2] = fill; - pixels[3] = fill; - pixels += 4; - } - pixels = (uint32_t *)((uint8_t *)pixels + next_line); - } -} - -void Ppu_Rendering::clip_left(int count) -{ - ptrdiff_t next_line = scanline_row_bytes; - uint8_t *p = scanline_pixels; - unsigned long fill = palette_offset; - - for (int n = count; n--;) - { - ((uint32_t *)p)[0] = fill; - ((uint32_t *)p)[1] = fill; - p += next_line; - } -} - -void Ppu_Rendering::save_left(int count) -{ - ptrdiff_t next_line = scanline_row_bytes; - uint8_t *in = scanline_pixels; - uint32_t *out = impl->clip_buf; - - for (int n = count; n--;) - { - unsigned long in0 = ((uint32_t *)in)[0]; - unsigned long in1 = ((uint32_t *)in)[1]; - in += next_line; - out[0] = in0; - out[1] = in1; - out += 2; - } -} - -void Ppu_Rendering::restore_left(int count) -{ - ptrdiff_t next_line = scanline_row_bytes; - uint8_t *out = scanline_pixels; - uint32_t *in = impl->clip_buf; - - for (int n = count; n--;) - { - unsigned long in0 = in[0]; - unsigned long in1 = in[1]; - in += 2; - ((uint32_t *)out)[0] = in0; - ((uint32_t *)out)[1] = in1; - out += next_line; - } -} - -// Background - -void Ppu_Rendering::draw_background_(int remain) -{ - // Draws 'remain' background scanlines. Does not modify vram_addr. - - int vram_addr = this->vram_addr & 0x7fff; - uint8_t *row_pixels = scanline_pixels - pixel_x; - int left_clip = (w2001 >> 1 & 1) ^ 1; - row_pixels += left_clip * 8; - do - { - // scanlines until next row - int height = 8 - (vram_addr >> 12); - if (height > remain) - height = remain; - - // handle hscroll change before next scanline - int hscroll_changed = (vram_addr ^ vram_temp) & 0x41f; - int addr = vram_addr; - if (hscroll_changed) - { - vram_addr ^= hscroll_changed; - height = 1; // hscroll will change after first line - } - remain -= height; - - // increment address for next row - vram_addr += height << 12; - if (vram_addr & 0x8000) - { - int y = (vram_addr + 0x20) & 0x3e0; - vram_addr &= 0x7fff & ~0x3e0; - if (y == 30 * 0x20) - y = 0x800; // toggle vertical nametable - vram_addr ^= y; - } - - // nametable change usually occurs in middle of row - uint8_t const *nametable = get_nametable(addr); - uint8_t const *nametable2 = get_nametable(addr ^ 0x400); - int count2 = addr & 31; - int count = 32 - count2 - left_clip; - // if ( pixel_x ) - count2++; - - uint8_t const *attr_table = &nametable[0x3c0 | (addr >> 4 & 0x38)]; - int bg_bank = (w2000 << 4) & 0x100; - addr += left_clip; - - // output pixels - ptrdiff_t const row_bytes = scanline_row_bytes; - uint8_t *pixels = row_pixels; - row_pixels += height * row_bytes; - - unsigned long const mask = 0x03030303 + zero; - unsigned long const attrib_factor = 0x04040404 + zero; - - const int fine_y = (height == 8) ? 0 : addr >> 12; - const int clipped = (height == 8) ? false : true; - addr &= 0x03ff; - if (height == 8) height -= fine_y & 1; - - while (true) - { - while (count--) - { - int attrib = attr_table[addr >> 2 & 0x07]; - attrib >>= (addr >> 4 & 4) | (addr & 2); - unsigned long offset = (attrib & 3) * attrib_factor + this->palette_offset; - - // draw one tile - cache_t const *lines = this->get_bg_tile(nametable[addr] + bg_bank); - uint8_t *p = pixels; - addr++; - pixels += 8; // next tile - - if (!clipped) - { - // optimal case: no clipping - for (int n = 4; n--;) - { - unsigned long line = *lines++; - ((uint32_t *)p)[0] = (line >> 4 & mask) + offset; - ((uint32_t *)p)[1] = (line & mask) + offset; - p += row_bytes; - ((uint32_t *)p)[0] = (line >> 6 & mask) + offset; - ((uint32_t *)p)[1] = (line >> 2 & mask) + offset; - p += row_bytes; - } - } - else - { - lines += fine_y >> 1; - - if (fine_y & 1) - { - unsigned long line = *lines++; - ((uint32_t *)p)[0] = (line >> 6 & mask) + offset; - ((uint32_t *)p)[1] = (line >> 2 & mask) + offset; - p += row_bytes; - } - - for (int n = height >> 1; n--;) - { - unsigned long line = *lines++; - ((uint32_t *)p)[0] = (line >> 4 & mask) + offset; - ((uint32_t *)p)[1] = (line & mask) + offset; - p += row_bytes; - ((uint32_t *)p)[0] = (line >> 6 & mask) + offset; - ((uint32_t *)p)[1] = (line >> 2 & mask) + offset; - p += row_bytes; - } - - if (height & 1) - { - unsigned long line = *lines; - ((uint32_t *)p)[0] = (line >> 4 & mask) + offset; - ((uint32_t *)p)[1] = (line & mask) + offset; - } - } - } - - count = count2; - count2 = 0; - addr -= 32; - attr_table = attr_table - nametable + nametable2; - nametable = nametable2; - if (!count) - break; - } - - } while (remain); -} - -// Sprites - -void Ppu_Rendering::draw_sprites_(int begin, int end) -{ - // Draws sprites on scanlines begin through end - 1. Handles clipping. - - int const sprite_height = this->sprite_height(); - int end_minus_one = end - 1; - int begin_minus_one = begin - 1; - int index = 0; - do - { - uint8_t const *sprite = &spr_ram[index]; - index += 4; - - // find if sprite is visible - int top_minus_one = sprite[0]; - int visible = end_minus_one - top_minus_one; - if (visible <= 0) - continue; // off bottom - - // quickly determine whether sprite is unclipped - int neg_vis = visible - sprite_height; - int neg_skip = top_minus_one - begin_minus_one; - if ((neg_skip | neg_vis) >= 0) // neg_skip >= 0 && neg_vis >= 0 - { - int const skip = 0; - int visible = sprite_height; - -#define CLIPPED 0 -#include "ppuSprites.hpp" - } - else - { - // clipped - if (neg_vis > 0) - visible -= neg_vis; - - if (neg_skip > 0) - neg_skip = 0; - visible += neg_skip; - - if (visible <= 0) - continue; // off top - - int skip = -neg_skip; - - // dprintf( "begin: %d, end: %d, top: %d, skip: %d, visible: %d\n", - // begin, end, top_minus_one + 1, skip, visible ); - -#define CLIPPED 1 -#include "ppuSprites.hpp" - } - } while (index < 0x100); -} - -void Ppu_Rendering::check_sprite_hit(int begin, int end) -{ - // Checks for sprite 0 hit on scanlines begin through end - 1. - // Updates sprite_hit_found. Background (but not sprites) must have - // already been rendered for the scanlines. - - // clip - int top = spr_ram[0] + 1; - int skip = begin - top; - if (skip < 0) - skip = 0; - - top += skip; - int visible = end - top; - if (visible <= 0) - return; // not visible - - int height = sprite_height(); - if (visible >= height) - { - visible = height; - sprite_hit_found = -1; // signal that no more hit checking will take place - } - - // pixels - ptrdiff_t next_row = this->scanline_row_bytes; - uint8_t const *bg = this->scanline_pixels + spr_ram[3] + (top - begin) * next_row; - cache_t const *lines = get_sprite_tile(spr_ram); - - // left edge clipping - int start_x = 0; - if (spr_ram[3] < 8 && (w2001 & 0x01e) != 0x1e) - { - if (spr_ram[3] == 0) - return; // won't hit - start_x = 8 - spr_ram[3]; - } - - // vertical flip - int final = skip + visible; - if (spr_ram[2] & 0x80) - { - skip += height - 1; - final = skip - visible; - } - - // check each line - unsigned long const mask = 0x01010101 + zero; - do - { - // get pixels for line - unsigned long line = lines[skip >> 1]; - unsigned long hit0 = ((uint32_t *)bg)[0]; - unsigned long hit1 = ((uint32_t *)bg)[1]; - bg += next_row; - line >>= skip << 1 & 2; - line |= line >> 1; - - // check for hits - hit0 = ((hit0 >> 1) | hit0) & (line >> 4); - hit1 = ((hit1 >> 1) | hit1) & line; - if ((hit0 | hit1) & mask) - { - // write to memory to avoid endian issues - uint32_t quads[3]; - quads[0] = hit0; - quads[1] = hit1; - - // find which pixel hit - int x = start_x; - do - { - if (((uint8_t *)quads)[x] & 1) - { - x += spr_ram[3]; - if (x >= 255) - break; // ignore right edge - - if (spr_ram[2] & 0x80) - skip = height - 1 - skip; // vertical flip - int y = spr_ram[0] + 1 + skip; - sprite_hit_found = y * scanline_len + x; - - return; - } - } while (x++ < 7); - } - if (skip > final) - skip -= 2; - skip++; - } while (skip != final); -} - -// Draw scanlines - -inline bool Ppu_Rendering::sprite_hit_possible(int scanline) const -{ - return !sprite_hit_found && spr_ram[0] <= scanline && (w2001 & 0x18) == 0x18; -} - -void Ppu_Rendering::draw_scanlines(int start, int count, uint8_t *pixels, long pitch, int mode) -{ - scanline_pixels = pixels + image_left; - scanline_row_bytes = pitch; - - int const obj_mask = 2; - int const bg_mask = 1; - int draw_mode = (w2001 >> 3) & 3; - int clip_mode = (~w2001 >> 1) & draw_mode; - - if (!(draw_mode & bg_mask)) - { - // no background - clip_mode |= bg_mask; // avoid unnecessary save/restore - if (mode & bg_mask) - fill_background(count); - } - - if (start == 0 && mode & 1) - memset(sprite_scanlines, max_sprites - sprite_limit, 240); - - if ((draw_mode &= mode)) - { - // sprites and/or background are being rendered - - if (any_tiles_modified && chr_is_writable) - { - any_tiles_modified = false; - update_tiles(0); - } - - if (draw_mode & bg_mask) - { - // dprintf( "bg %3d-%3d\n", start, start + count - 1 ); - draw_background_(count); - - if (clip_mode == bg_mask) - clip_left(count); - - if (sprite_hit_possible(start + count)) - check_sprite_hit(start, start + count); - } - - if (draw_mode & obj_mask) - { - // when clipping just sprites, save left strip then restore after drawing them - if (clip_mode == obj_mask) - save_left(count); - - // dprintf( "obj %3d-%3d\n", start, start + count - 1 ); - - draw_sprites_(start, start + count); - - if (clip_mode == obj_mask) - restore_left(count); - - if (clip_mode == (obj_mask | bg_mask)) - clip_left(count); - } - } - - scanline_pixels = NULL; -} - -void Ppu_Rendering::draw_background(int start, int count) -{ - // always capture palette at least once per frame - if ((start + count >= 240 && !palette_size) || (w2001 & palette_changed)) - { - palette_changed = false; - capture_palette(); - } - - if (host_pixels) - { - draw_scanlines(start, count, host_pixels + host_row_bytes * start, host_row_bytes, 1); - } - else if (sprite_hit_possible(start + count)) - { - // not rendering, but still handle sprite hit using mini graphics buffer - int y = spr_ram[0] + 1; - int skip = std::min(count, std::max(y - start, 0)); - int visible = std::min(count - skip, sprite_height()); - - if (visible > 0) - { - run_hblank(skip); - draw_scanlines(start + skip, visible, impl->mini_offscreen, buffer_width, 3); - } - } -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppuRendering.hpp b/quicknes/source/quickerNES/core/ppu/ppuRendering.hpp deleted file mode 100644 index 31ac831b2e9..00000000000 --- a/quicknes/source/quickerNES/core/ppu/ppuRendering.hpp +++ /dev/null @@ -1,64 +0,0 @@ -#pragma once - -// NES PPU emulator graphics rendering -// Emu 0.7.0 - -#include "ppuImpl.hpp" - -namespace quickerNES -{ - -class Ppu_Rendering : public Ppu_Impl -{ - typedef Ppu_Impl base; - - public: - Ppu_Rendering(); - - int sprite_limit; - - uint8_t *host_pixels; - long host_row_bytes; - - protected: - long sprite_hit_found; // -1: sprite 0 didn't hit, 0: no hit so far, > 0: y * 341 + x - void draw_background(int start, int count); - void draw_sprites(int start, int count); - - private: - void draw_scanlines(int start, int count, uint8_t *pixels, long pitch, int mode); - void draw_background_(int count); - - // destination for draw functions; avoids extra parameters - uint8_t *scanline_pixels; - long scanline_row_bytes; - - // fill/copy - void fill_background(int count); - void clip_left(int count); - void save_left(int count); - void restore_left(int count); - - // sprites - enum - { - max_sprites = 64 - }; - uint8_t sprite_scanlines[image_height]; // number of sprites on each scanline - void draw_sprites_(int start, int count); - bool sprite_hit_possible(int scanline) const; - void check_sprite_hit(int begin, int end); -}; - -inline Ppu_Rendering::Ppu_Rendering() -{ - sprite_limit = 8; - host_pixels = nullptr; -} - -inline void Ppu_Rendering::draw_sprites(int start, int count) -{ - draw_scanlines(start, count, host_pixels + host_row_bytes * start, host_row_bytes, 2); -} - -} // namespace quickerNES \ No newline at end of file diff --git a/quicknes/source/quickerNES/core/ppu/ppuSprites.hpp b/quicknes/source/quickerNES/core/ppu/ppuSprites.hpp deleted file mode 100644 index 737b92b6099..00000000000 --- a/quicknes/source/quickerNES/core/ppu/ppuSprites.hpp +++ /dev/null @@ -1,132 +0,0 @@ -int sprite_2 = sprite[2]; - -// pixels -ptrdiff_t next_row = this->scanline_row_bytes; -uint8_t *out = this->scanline_pixels + sprite[3] + - (top_minus_one + skip - begin_minus_one) * next_row; -cache_t const *lines = get_sprite_tile(sprite); - -int dir = 1; -uint8_t *scanlines = this->sprite_scanlines + 1 + top_minus_one + skip; - -if (sprite_2 & 0x80) -{ - // vertical flip - out -= next_row; - out += visible * next_row; - next_row = -next_row; - dir = -1; - scanlines += visible - 1; -#if CLIPPED - int height = this->sprite_height(); - skip = height - skip - visible; -#endif -} - -// attributes -unsigned long offset = (sprite_2 & 3) * 0x04040404 + (this->palette_offset + 0x10101010); - -unsigned long const mask = 0x03030303 + zero; -unsigned long const maskgen = 0x80808080 + zero; - -#define DRAW_PAIR(shift) \ - { \ - int sprite_count = *scanlines; \ - CALC_FOUR(((uint32_t *)out)[0], (line >> (shift + 4)), out0) \ - CALC_FOUR(((uint32_t *)out)[1], (line >> shift), out1) \ - if (sprite_count < this->max_sprites) \ - { \ - ((uint32_t *)out)[0] = out0; \ - ((uint32_t *)out)[1] = out1; \ - } \ - if (CLIPPED) visible--; \ - out += next_row; \ - *scanlines = sprite_count + 1; \ - scanlines += dir; \ - if (CLIPPED && !visible) break; \ - } - -if (!(sprite_2 & 0x20)) -{ - // front - unsigned long const maskgen2 = 0x7f7f7f7f + zero; - -#define CALC_FOUR(in, line, out) \ - unsigned long out; \ - { \ - unsigned long bg = in; \ - unsigned long sp = line & mask; \ - unsigned long bgm = maskgen2 + ((bg >> 4) & mask); \ - unsigned long spm = (maskgen - sp) & maskgen2; \ - unsigned long m = (bgm & spm) >> 2; \ - out = (bg & ~m) | ((sp + offset) & m); \ - } - -#if CLIPPED - lines += skip >> 1; - unsigned long line = *lines++; - if (skip & 1) - goto front_skip; - - while (true) - { - DRAW_PAIR(0) - front_skip: - DRAW_PAIR(2) - line = *lines++; - } -#else - for (int n = visible >> 1; n--;) - { - unsigned long line = *lines++; - DRAW_PAIR(0) - DRAW_PAIR(2) - } -#endif - -#undef CALC_FOUR -} -else -{ - // behind - unsigned long const omask = 0x20202020 + zero; - unsigned long const bg_or = 0xc3c3c3c3 + zero; - -#define CALC_FOUR(in, line, out) \ - unsigned long out; \ - { \ - unsigned long bg = in; \ - unsigned long sp = line & mask; \ - unsigned long bgm = maskgen - (bg & mask); \ - unsigned long spm = maskgen - sp; \ - out = (bg & (bgm | bg_or)) | (spm & omask) | \ - (((offset & spm) + sp) & ~(bgm >> 2)); \ - } - -#if CLIPPED - lines += skip >> 1; - unsigned long line = *lines++; - if (skip & 1) - goto back_skip; - - while (true) - { - DRAW_PAIR(0) - back_skip: - DRAW_PAIR(2) - line = *lines++; - } -#else - for (int n = visible >> 1; n--;) - { - unsigned long line = *lines++; - DRAW_PAIR(0) - DRAW_PAIR(2) - } -#endif - -#undef CALC_FOUR -} - -#undef CLIPPED -#undef DRAW_PAIR diff --git a/quicknes/source/quickerNES/meson.build b/quicknes/source/quickerNES/meson.build deleted file mode 100644 index 6136d3076e1..00000000000 --- a/quicknes/source/quickerNES/meson.build +++ /dev/null @@ -1,47 +0,0 @@ -# quickerNES Core sources - -quickerNESAPUSrc = [ - 'core/apu/apu.cpp', - 'core/apu/oscs.cpp', - 'core/apu/buffer.cpp', - 'core/apu/blipBuffer.cpp', - 'core/apu/NESEffectsBuffer.cpp', - 'core/apu/effectsBuffer.cpp', - 'core/apu/multiBuffer.cpp', - 'core/apu/namco/apu_namco.cpp', - 'core/apu/vrc6/apu_vrc6.cpp', - 'core/apu/vrc7/emu2413.cpp', - 'core/apu/vrc7/emu2413_state.cpp', - 'core/apu/vrc7/apu_vrc7.cpp', - 'core/apu/fme7/apu_fme7.cpp', -] - -quickerNESPPUSrc = [ - 'core/ppu/ppu.cpp', - 'core/ppu/ppuImpl.cpp', - 'core/ppu/ppuRendering.cpp', -] - -quickerNESSrc = quickerNESAPUSrc + quickerNESPPUSrc + [ - 'core/mappers/mapper.cpp', - 'core/emu.cpp', - 'core/cpu.cpp' -] - -quickerNESCompileArgs = [ ] - -# Checking for arkanoid input support -if get_option('enableArkanoidInputs') == true - quickerNESCompileArgs += '-D_QUICKERNES_SUPPORT_ARKANOID_INPUTS' -endif - -# quickerNES Core Configuration - - quickerNESDependency = declare_dependency( - compile_args : quickerNESCompileArgs, - include_directories : include_directories(['.', '..']), - sources : [ quickerNESSrc ], - dependencies : [ - dependency('sdl2'), - ] - ) \ No newline at end of file diff --git a/quicknes/source/quickerNES/nesInstance.hpp b/quicknes/source/quickerNES/nesInstance.hpp deleted file mode 100644 index e0ff0f02f72..00000000000 --- a/quicknes/source/quickerNES/nesInstance.hpp +++ /dev/null @@ -1,79 +0,0 @@ -#pragma once - -#include "../nesInstanceBase.hpp" -#include "core/emu.hpp" - -typedef quickerNES::Emu emulator_t; - -class NESInstance final : public NESInstanceBase -{ - public: - NESInstance(const nlohmann::json &config) : NESInstanceBase(config) - { - _nes.setControllerType(quickerNES::Core::controllerType_t::joypad_t); - if (_inputParser->_controller1Type == jaffar::InputParser::controller_t::arkanoidFamicom) _nes.setControllerType(quickerNES::Core::controllerType_t::arkanoidFamicom_t); - if (_inputParser->_controller1Type == jaffar::InputParser::controller_t::arkanoidNES) _nes.setControllerType(quickerNES::Core::controllerType_t::arkanoidNES_t); - } - - uint8_t *getLowMem() const override { return _nes.get_low_mem(); }; - size_t getLowMemSize() const override { return _nes.get_low_mem_size(); }; - - uint8_t *getWorkMem() const { return _nes.high_mem(); }; - size_t getWorkMemSize() const { return _nes.get_high_mem_size(); }; - - uint8_t *getNametableMem() const { return _nes.nametable_mem(); }; - size_t getNametableMemSize() const { return _nes.nametable_size(); }; - - uint8_t *getSpriteMem() const { return _nes.spr_mem(); }; - size_t getSpriteMemSize() const { return _nes.spr_mem_size(); }; - - uint8_t *getCHRMem() const { return _nes.chr_mem(); }; - size_t getCHRMemSize() const { return _nes.chr_size(); }; - - void serializeState(jaffarCommon::serializer::Base &serializer) const override { _nes.serializeState(serializer); } - void deserializeState(jaffarCommon::deserializer::Base &deserializer) override { _nes.deserializeState(deserializer); } - - std::string getCoreName() const override { return "QuickerNES"; } - - void doSoftReset() override { _nes.reset(false); } - void doHardReset() override { _nes.reset(true); } - - void *getInternalEmulatorPointer() override { return &_nes; } - - inline size_t getFullStateSize() const override - { - jaffarCommon::serializer::Contiguous serializer; - serializeState(serializer); - return serializer.getOutputSize(); - } - - inline size_t getDifferentialStateSize() const override - { - jaffarCommon::serializer::Differential serializer; - serializeState(serializer); - return serializer.getOutputSize(); - } - - void setNTABBlockSize(const size_t size) override { _nes.setNTABBlockSize(size); } - - void advanceState(const jaffar::input_t &input) override - { - if (_doRendering == true) _nes.emulate_frame(input.port1, input.port2, input.arkanoidLatch, input.arkanoidFire); - if (_doRendering == false) _nes.emulate_skip_frame(input.port1, input.port2, input.arkanoidLatch, input.arkanoidFire); - } - - protected: - bool loadROMImpl(const uint8_t *romData, const size_t romSize) override - { - // Loading rom data - _nes.load_ines(romData); - return true; - } - - void enableStateBlockImpl(const std::string &block) override { _nes.enableStateBlock(block); }; - void disableStateBlockImpl(const std::string &block) override { _nes.disableStateBlock(block); }; - - private: - // Emulator instance - emulator_t _nes; -}; diff --git a/quicknes/source/tester.cpp b/quicknes/source/tester.cpp deleted file mode 100644 index 5b89b13507d..00000000000 --- a/quicknes/source/tester.cpp +++ /dev/null @@ -1,286 +0,0 @@ -#include "nesInstance.hpp" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -int main(int argc, char *argv[]) -{ - // Parsing command line arguments - argparse::ArgumentParser program("tester", "1.0"); - - program.add_argument("scriptFile") - .help("Path to the test script file to run.") - .required(); - - program.add_argument("--cycleType") - .help("Specifies the emulation actions to be performed per each input. Possible values: 'Simple': performs only advance state, 'Rerecord': performs load/advance/save, and 'Full': performs load/advance/save/advance.") - .default_value(std::string("Simple")); - - program.add_argument("--hashOutputFile") - .help("Path to write the hash output to.") - .default_value(std::string("")); - - // Try to parse arguments - try - { - program.parse_args(argc, argv); - } - catch (const std::runtime_error &err) - { - JAFFAR_THROW_LOGIC("%s\n%s", err.what(), program.help().str().c_str()); - } - - // Getting test script file path - std::string scriptFilePath = program.get("scriptFile"); - - // Getting path where to save the hash output (if any) - std::string hashOutputFile = program.get("--hashOutputFile"); - - // Getting reproduce flag - std::string cycleType = program.get("--cycleType"); - - // Loading script file - std::string scriptJsonRaw; - if (jaffarCommon::file::loadStringFromFile(scriptJsonRaw, scriptFilePath) == false) JAFFAR_THROW_LOGIC("Could not find/read script file: %s\n", scriptFilePath.c_str()); - - // Parsing script - const auto scriptJson = nlohmann::json::parse(scriptJsonRaw); - - // Getting rom file path - if (scriptJson.contains("Rom File") == false) JAFFAR_THROW_LOGIC("Script file missing 'Rom File' entry\n"); - if (scriptJson["Rom File"].is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Rom File' entry is not a string\n"); - std::string romFilePath = scriptJson["Rom File"].get(); - - // Getting initial state file path - if (scriptJson.contains("Initial State File") == false) JAFFAR_THROW_LOGIC("Script file missing 'Initial State File' entry\n"); - if (scriptJson["Initial State File"].is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Initial State File' entry is not a string\n"); - std::string initialStateFilePath = scriptJson["Initial State File"].get(); - - // Getting sequence file path - if (scriptJson.contains("Sequence File") == false) JAFFAR_THROW_LOGIC("Script file missing 'Sequence File' entry\n"); - if (scriptJson["Sequence File"].is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Sequence File' entry is not a string\n"); - std::string sequenceFilePath = scriptJson["Sequence File"].get(); - - // Getting expected ROM SHA1 hash - if (scriptJson.contains("Expected ROM SHA1") == false) JAFFAR_THROW_LOGIC("Script file missing 'Expected ROM SHA1' entry\n"); - if (scriptJson["Expected ROM SHA1"].is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Expected ROM SHA1' entry is not a string\n"); - std::string expectedROMSHA1 = scriptJson["Expected ROM SHA1"].get(); - - // Parsing disabled blocks in lite state serialization - std::vector stateDisabledBlocks; - std::string stateDisabledBlocksOutput; - if (scriptJson.contains("Disable State Blocks") == false) JAFFAR_THROW_LOGIC("Script file missing 'Disable State Blocks' entry\n"); - if (scriptJson["Disable State Blocks"].is_array() == false) JAFFAR_THROW_LOGIC("Script file 'Disable State Blocks' is not an array\n"); - for (const auto &entry : scriptJson["Disable State Blocks"]) - { - if (entry.is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Disable State Blocks' entry is not a string\n"); - stateDisabledBlocks.push_back(entry.get()); - stateDisabledBlocksOutput += entry.get() + std::string(" "); - } - - // Getting Controller 1 type - if (scriptJson.contains("Controller 1 Type") == false) JAFFAR_THROW_LOGIC("Script file missing 'Controller 1 Type' entry\n"); - if (scriptJson["Controller 1 Type"].is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Controller 1 Type' entry is not a string\n"); - std::string controller1Type = scriptJson["Controller 1 Type"].get(); - - // Getting Controller 2 type - if (scriptJson.contains("Controller 2 Type") == false) JAFFAR_THROW_LOGIC("Script file missing 'Controller 2 Type' entry\n"); - if (scriptJson["Controller 2 Type"].is_string() == false) JAFFAR_THROW_LOGIC("Script file 'Controller 2 Type' entry is not a string\n"); - std::string controller2Type = scriptJson["Controller 2 Type"].get(); - - // Getting differential compression configuration - if (scriptJson.contains("Differential Compression") == false) JAFFAR_THROW_LOGIC("Script file missing 'Differential Compression' entry\n"); - if (scriptJson["Differential Compression"].is_object() == false) JAFFAR_THROW_LOGIC("Script file 'Differential Compression' entry is not a key/value object\n"); - const auto &differentialCompressionJs = scriptJson["Differential Compression"]; - - if (differentialCompressionJs.contains("Enabled") == false) JAFFAR_THROW_LOGIC("Script file missing 'Differential Compression / Enabled' entry\n"); - if (differentialCompressionJs["Enabled"].is_boolean() == false) JAFFAR_THROW_LOGIC("Script file 'Differential Compression / Enabled' entry is not a boolean\n"); - const auto differentialCompressionEnabled = differentialCompressionJs["Enabled"].get(); - - if (differentialCompressionJs.contains("Max Differences") == false) JAFFAR_THROW_LOGIC("Script file missing 'Differential Compression / Max Differences' entry\n"); - if (differentialCompressionJs["Max Differences"].is_number() == false) JAFFAR_THROW_LOGIC("Script file 'Differential Compression / Max Differences' entry is not a number\n"); - const auto differentialCompressionMaxDifferences = differentialCompressionJs["Max Differences"].get(); - - if (differentialCompressionJs.contains("Use Zlib") == false) JAFFAR_THROW_LOGIC("Script file missing 'Differential Compression / Use Zlib' entry\n"); - if (differentialCompressionJs["Use Zlib"].is_boolean() == false) JAFFAR_THROW_LOGIC("Script file 'Differential Compression / Use Zlib' entry is not a boolean\n"); - const auto differentialCompressionUseZlib = differentialCompressionJs["Use Zlib"].get(); - - // Creating emulator instance - NESInstance e(scriptJson); - - // Loading ROM File - std::string romFileData; - if (jaffarCommon::file::loadStringFromFile(romFileData, romFilePath) == false) JAFFAR_THROW_LOGIC("Could not rom file: %s\n", romFilePath.c_str()); - e.loadROM((uint8_t *)romFileData.data(), romFileData.size()); - - // Calculating ROM SHA1 - auto romSHA1 = jaffarCommon::hash::getSHA1String(romFileData); - - // If an initial state is provided, load it now - if (initialStateFilePath != "") - { - std::string stateFileData; - if (jaffarCommon::file::loadStringFromFile(stateFileData, initialStateFilePath) == false) JAFFAR_THROW_LOGIC("Could not initial state file: %s\n", initialStateFilePath.c_str()); - jaffarCommon::deserializer::Contiguous d(stateFileData.data()); - e.deserializeState(d); - } - - // Disabling requested blocks from state serialization - for (const auto &block : stateDisabledBlocks) e.disableStateBlock(block); - - // Disable rendering - e.disableRendering(); - - // Getting full state size - const auto stateSize = e.getFullStateSize(); - - // Getting differential state size - const auto fixedDiferentialStateSize = e.getDifferentialStateSize(); - const auto fullDifferentialStateSize = fixedDiferentialStateSize + differentialCompressionMaxDifferences; - - // Checking with the expected SHA1 hash - if (romSHA1 != expectedROMSHA1) JAFFAR_THROW_LOGIC("Wrong ROM SHA1. Found: '%s', Expected: '%s'\n", romSHA1.c_str(), expectedROMSHA1.c_str()); - - // Loading sequence file - std::string sequenceRaw; - if (jaffarCommon::file::loadStringFromFile(sequenceRaw, sequenceFilePath) == false) JAFFAR_THROW_LOGIC("[ERROR] Could not find or read from input sequence file: %s\n", sequenceFilePath.c_str()); - - // Building sequence information - const auto sequence = jaffarCommon::string::split(sequenceRaw, '\n'); - - // Getting sequence lenght - const auto sequenceLength = sequence.size(); - - // Getting input parser from the emulator - const auto inputParser = e.getInputParser(); - - // Getting decoded emulator input for each entry in the sequence - std::vector decodedSequence; - for (const auto &inputString : sequence) decodedSequence.push_back(inputParser->parseInputString(inputString)); - - // Getting emulation core name - std::string emulationCoreName = e.getCoreName(); - - // Printing test information - printf("[] -----------------------------------------\n"); - printf("[] Running Script: '%s'\n", scriptFilePath.c_str()); - printf("[] Cycle Type: '%s'\n", cycleType.c_str()); - printf("[] Emulation Core: '%s'\n", emulationCoreName.c_str()); - printf("[] ROM File: '%s'\n", romFilePath.c_str()); - printf("[] ROM Hash: 'SHA1: %s'\n", romSHA1.c_str()); - printf("[] Sequence File: '%s'\n", sequenceFilePath.c_str()); - printf("[] Sequence Length: %lu\n", sequenceLength); - printf("[] State Size: %lu bytes - Disabled Blocks: [ %s ]\n", stateSize, stateDisabledBlocksOutput.c_str()); - printf("[] Use Differential Compression: %s\n", differentialCompressionEnabled ? "true" : "false"); - if (differentialCompressionEnabled == true) - { - printf("[] + Max Differences: %lu\n", differentialCompressionMaxDifferences); - printf("[] + Use Zlib: %s\n", differentialCompressionUseZlib ? "true" : "false"); - printf("[] + Fixed Diff State Size: %lu\n", fixedDiferentialStateSize); - printf("[] + Full Diff State Size: %lu\n", fullDifferentialStateSize); - } - printf("[] ********** Running Test **********\n"); - - fflush(stdout); - - // Serializing initial state - auto currentState = (uint8_t *)malloc(stateSize); - { - jaffarCommon::serializer::Contiguous cs(currentState); - e.serializeState(cs); - } - - // Serializing differential state data (in case it's used) - uint8_t *differentialStateData = nullptr; - size_t differentialStateMaxSizeDetected = 0; - - // Allocating memory for differential data and performing the first serialization - if (differentialCompressionEnabled == true) - { - differentialStateData = (uint8_t *)malloc(fullDifferentialStateSize); - auto s = jaffarCommon::serializer::Differential(differentialStateData, fullDifferentialStateSize, currentState, stateSize, differentialCompressionUseZlib); - e.serializeState(s); - differentialStateMaxSizeDetected = s.getOutputSize(); - } - - // Check whether to perform each action - bool doPreAdvance = cycleType == "Full"; - bool doDeserialize = cycleType == "Rerecord" || cycleType == "Full"; - bool doSerialize = cycleType == "Rerecord" || cycleType == "Full"; - - // Actually running the sequence - auto t0 = std::chrono::high_resolution_clock::now(); - for (const auto &input : decodedSequence) - { - if (doPreAdvance == true) e.advanceState(input); - - if (doDeserialize == true) - { - if (differentialCompressionEnabled == true) - { - jaffarCommon::deserializer::Differential d(differentialStateData, fullDifferentialStateSize, currentState, stateSize, differentialCompressionUseZlib); - e.deserializeState(d); - } - - if (differentialCompressionEnabled == false) - { - jaffarCommon::deserializer::Contiguous d(currentState, stateSize); - e.deserializeState(d); - } - } - - e.advanceState(input); - - if (doSerialize == true) - { - if (differentialCompressionEnabled == true) - { - auto s = jaffarCommon::serializer::Differential(differentialStateData, fullDifferentialStateSize, currentState, stateSize, differentialCompressionUseZlib); - e.serializeState(s); - differentialStateMaxSizeDetected = std::max(differentialStateMaxSizeDetected, s.getOutputSize()); - } - - if (differentialCompressionEnabled == false) - { - auto s = jaffarCommon::serializer::Contiguous(currentState, stateSize); - e.serializeState(s); - } - } - } - auto tf = std::chrono::high_resolution_clock::now(); - - // Calculating running time - auto dt = std::chrono::duration_cast(tf - t0).count(); - double elapsedTimeSeconds = (double)dt * 1.0e-9; - - // Calculating final state hash - auto result = jaffarCommon::hash::calculateMetroHash(e.getLowMem(), e.getLowMemSize()); - - // Creating hash string - char hashStringBuffer[256]; - sprintf(hashStringBuffer, "0x%lX%lX", result.first, result.second); - - // Printing time information - printf("[] Elapsed time: %3.3fs\n", (double)dt * 1.0e-9); - printf("[] Performance: %.3f inputs / s\n", (double)sequenceLength / elapsedTimeSeconds); - printf("[] Final State Hash: %s\n", hashStringBuffer); - if (differentialCompressionEnabled == true) - { - printf("[] Differential State Max Size Detected: %lu\n", differentialStateMaxSizeDetected); - } - // If saving hash, do it now - if (hashOutputFile != "") jaffarCommon::file::saveStringToFile(std::string(hashStringBuffer), hashOutputFile.c_str()); - - // If reached this point, everything ran ok - return 0; -} diff --git a/quicknes/tests/.gitignore b/quicknes/tests/.gitignore deleted file mode 100644 index 0a169d860ab..00000000000 --- a/quicknes/tests/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -*.nes -*.Identifier -*.zip -*.fds -test.sol -*.hash -*.out -*.sh - diff --git a/quicknes/tests/README.md b/quicknes/tests/README.md deleted file mode 100644 index 9b501b7702b..00000000000 --- a/quicknes/tests/README.md +++ /dev/null @@ -1,20 +0,0 @@ -Some of the sequences hosted in this folder correspond to movies published in tasvideos.org under the Creative Commons 2.0 license. These movies were created by the author of this code (Sergio Martin, a.k.a. eien86) and collaborators, unless otherwise stated. - -Notes: - -Sprilo is a open-source free game. This rom was obtained from - - https://itch.io/jam/game-off-2017 - - https://github.com/cbrwn/gameoff - - We use the movie https://tasvideos.org/3557G by MrTASer distributed under the CC2.0 license - -Nova The Squirrel is a open-source free game. This rom was obtained from - - https://github.com/NovaSquirrel/NovaTheSquirrel - - https://novasquirrel.itch.io/nova-the-squirrel - - We use the movie https://tasvideos.org/5246M by Cephla distributed under the CC2.0 license - -For Saiyuuki World - - We use the movie https://tasvideos.org/4422M by aiqiyou & J.Y distributed under the CC2.0 license - - For Metroid - - We use part of the movie https://tasvideos.org/3666M by The8bitbeast distributed under the CC2.0 license - \ No newline at end of file diff --git a/quicknes/tests/arkanoid.arkNESController.sol b/quicknes/tests/arkanoid.arkNESController.sol deleted file mode 100644 index 2dfbcf6df75..00000000000 --- a/quicknes/tests/arkanoid.arkNESController.sol +++ /dev/null @@ -1,9342 +0,0 @@ -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,F| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 73,.| -|..| 16,F| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 149,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 144,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 146,.| -|..| 16,.| -|..| 135,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 72,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 23,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 141,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 59,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 84,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 78,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 85,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 78,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 35,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 132,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 33,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 86,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 158,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 52,.| -|..| 125,.| -|..| 16,F| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 131,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 36,.| -|..| 30,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 18,.| -|..| 160,.| -|..| 160,.| -|..| 160,.| -|..| 160,.| -|..| 160,.| -|..| 18,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 136,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 130,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 155,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 116,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 149,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 160,.| -|..| 42,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 52,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 106,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 37,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 104,.| -|..| 160,.| -|..| 19,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 61,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 117,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 36,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 75,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 62,.| -|..| 16,F| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 113,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 91,.| -|..| 16,.| -|..| 160,.| -|..| 160,.| -|..| 160,.| -|..| 160,.| -|..| 160,.| -|..| 16,.| -|..| 160,.| -|..| 80,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 134,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 116,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 55,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 160,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 79,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 114,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 80,.| -|..| 75,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 80,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 93,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 84,.| -|..| 16,F| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 136,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 63,.| -|..| 76,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 112,.| -|..| 16,.| -|..| 16,.| -|..| 21,.| -|..| 16,.| -|..| 160,.| -|..| 160,.| -|..| 35,.| -|..| 32,.| -|..| 160,.| -|..| 160,.| -|..| 23,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 94,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 128,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 56,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 141,.| -|..| 107,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 120,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 111,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 153,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 151,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 81,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 43,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 41,.| -|..| 44,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 53,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 46,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 127,.| -|..| 16,F| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 108,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 52,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 128,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 133,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 127,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 86,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 117,.| -|..| 16,.| -|..| 16,.| -|..| 127,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 156,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 46,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 24,.| -|..| 32,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 18,.| -|..| 91,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 92,.| -|..| 16,.| -|..| 121,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 90,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 47,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 94,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 100,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 57,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 141,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 49,.| -|..| 16,F| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 56,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 112,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 81,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 145,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 51,.| -|..| 48,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 73,.| -|..| 16,F| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 125,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 131,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 128,.| -|..| 16,.| -|..| 160,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 29,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 21,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 35,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 19,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 146,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 36,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 22,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 160,.| -|..| 25,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 132,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 126,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 155,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 47,.| -|..| 16,F| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 33,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 96,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 57,.| -|..| 16,F| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 149,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 112,.| -|..| 16,.| -|..| 131,.| -|..| 133,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 51,.| -|..| 31,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 146,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 132,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 132,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 29,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 44,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 17,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 17,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 18,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 20,.| -|..| 19,.| -|..| 68,.| -|..| 16,F| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 137,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 77,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 112,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 33,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 160,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 16,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| -|..| 80,.| \ No newline at end of file diff --git a/quicknes/tests/arkanoid.arkNESController.test b/quicknes/tests/arkanoid.arkNESController.test deleted file mode 100644 index ea420048298..00000000000 --- a/quicknes/tests/arkanoid.arkNESController.test +++ /dev/null @@ -1,15 +0,0 @@ -{ - "Rom File": "roms/Arkanoid (U) [!].nes", - "Expected ROM SHA1": "B2B30C4F30DD853C215C17B0C67CFE63D61A3062", - "Initial State File": "", - "Sequence File": "arkanoid.arkNESController.sol", - "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "MAPR", "CTRL", "APUR" ], - "Controller 1 Type": "ArkanoidNES", - "Controller 2 Type": "None", - "Differential Compression": - { - "Enabled": false, - "Max Differences": 2200, - "Use Zlib": true - } -} diff --git a/quicknes/tests/arkanoid.warpless.sol b/quicknes/tests/arkanoid.warpless.sol deleted file mode 100644 index ebced9a29bf..00000000000 --- a/quicknes/tests/arkanoid.warpless.sol +++ /dev/null @@ -1,39431 +0,0 @@ -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|........| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R....| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|...R....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|....SsBA| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....SsBA| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....SsBA| -|..|....SsBA| -|..|....SsBA| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| diff --git a/quicknes/tests/arkanoid.warpless.test b/quicknes/tests/arkanoid.warpless.test deleted file mode 100644 index 86e3bc13717..00000000000 --- a/quicknes/tests/arkanoid.warpless.test +++ /dev/null @@ -1,15 +0,0 @@ -{ - "Rom File": "roms/Arkanoid (U) [!].nes", - "Expected ROM SHA1": "B2B30C4F30DD853C215C17B0C67CFE63D61A3062", - "Initial State File": "", - "Sequence File": "arkanoid.warpless.sol", - "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "MAPR", "CTRL", "APUR" ], - "Controller 1 Type": "Joypad", - "Controller 2 Type": "None", - "Differential Compression": - { - "Enabled": false, - "Max Differences": 2200, - "Use Zlib": true - } -} diff --git a/quicknes/tests/arkanoid.warps.sol b/quicknes/tests/arkanoid.warps.sol deleted file mode 100644 index df315a19a54..00000000000 --- a/quicknes/tests/arkanoid.warps.sol +++ /dev/null @@ -1,15806 +0,0 @@ -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|........| -|..|.......A| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|........| -|..|.......A| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......BA| -|..|.....sBA| -|..|......BA| -|..|.....sBA| -|..|......BA| -|..|.....sBA| -|..|......BA| -|..|.....sBA| -|..|......BA| -|..|.....sBA| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..LR....| -|..|..LR....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..LR....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| \ No newline at end of file diff --git a/quicknes/tests/arkanoid.warps.test b/quicknes/tests/arkanoid.warps.test deleted file mode 100644 index 3c393f673dd..00000000000 --- a/quicknes/tests/arkanoid.warps.test +++ /dev/null @@ -1,15 +0,0 @@ -{ - "Rom File": "roms/Arkanoid (U) [!].nes", - "Expected ROM SHA1": "B2B30C4F30DD853C215C17B0C67CFE63D61A3062", - "Initial State File": "", - "Sequence File": "arkanoid.warps.sol", - "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "MAPR", "CTRL", "APUR" ], - "Controller 1 Type": "Joypad", - "Controller 2 Type": "None", - "Differential Compression": - { - "Enabled": false, - "Max Differences": 2200, - "Use Zlib": true - } -} diff --git a/quicknes/tests/arkanoid2.arkFamicomController.sol b/quicknes/tests/arkanoid2.arkFamicomController.sol deleted file mode 100644 index 4bcaf49413b..00000000000 --- a/quicknes/tests/arkanoid2.arkFamicomController.sol +++ /dev/null @@ -1,3472 +0,0 @@ -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|.....s..|.......| 80,.| -|..|........|.......| 80,.| -|..|.....s..|.......| 80,.| -|..|........|.......| 80,.| -|..|.....s..|.......| 80,.| -|..|........|.......| 80,.| -|..|.....s..|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,F| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,F| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,F| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 108,.| -|..|........|.......| 108,.| -|..|........|.......| 108,.| -|..|........|.......| 108,.| -|..|........|.......| 108,.| -|..|........|.......| 108,.| -|..|........|.......| 109,.| -|..|........|.......| 111,.| -|..|........|.......| 114,.| -|..|........|.......| 115,.| -|..|........|.......| 116,.| -|..|........|.......| 117,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 120,.| -|..|........|.......| 121,.| -|..|........|.......| 123,.| -|..|........|.......| 125,.| -|..|........|.......| 125,.| -|..|........|.......| 126,.| -|..|........|.......| 127,.| -|..|........|.......| 128,.| -|..|........|.......| 128,.| -|..|........|.......| 129,.| -|..|........|.......| 130,.| -|..|........|.......| 130,.| -|..|........|.......| 130,.| -|..|........|.......| 131,.| -|..|........|.......| 131,.| -|..|........|.......| 131,.| -|..|........|.......| 131,.| -|..|........|.......| 131,.| -|..|........|.......| 131,.| -|..|........|.......| 132,.| -|..|........|.......| 133,.| -|..|........|.......| 133,.| -|..|........|.......| 133,.| -|..|........|.......| 133,.| -|..|........|.......| 133,.| -|..|........|.......| 133,.| -|..|........|.......| 133,.| -|..|........|.......| 135,.| -|..|........|.......| 137,.| -|..|........|.......| 141,.| -|..|........|.......| 145,.| -|..|........|.......| 146,.| -|..|........|.......| 149,.| -|..|........|.......| 150,.| -|..|........|.......| 150,.| -|..|........|.......| 150,.| -|..|........|.......| 150,.| -|..|........|.......| 150,.| -|..|........|.......| 150,.| -|..|........|.......| 150,.| -|..|........|.......| 150,.| -|..|........|.......| 150,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 144,.| -|..|........|.......| 141,.| -|..|........|.......| 140,.| -|..|........|.......| 137,.| -|..|........|.......| 136,.| -|..|........|.......| 133,.| -|..|........|.......| 132,.| -|..|........|.......| 130,.| -|..|........|.......| 128,.| -|..|........|.......| 126,.| -|..|........|.......| 124,.| -|..|........|.......| 123,.| -|..|........|.......| 121,.| -|..|........|.......| 119,.| -|..|........|.......| 116,.| -|..|........|.......| 115,.| -|..|........|.......| 114,.| -|..|........|.......| 113,.| -|..|........|.......| 112,.| -|..|........|.......| 112,.| -|..|........|.......| 112,.| -|..|........|.......| 112,.| -|..|........|.......| 112,.| -|..|........|.......| 111,.| -|..|........|.......| 111,.| -|..|........|.......| 110,.| -|..|........|.......| 109,.| -|..|........|.......| 108,.| -|..|........|.......| 106,.| -|..|........|.......| 105,.| -|..|........|.......| 104,.| -|..|........|.......| 102,.| -|..|........|.......| 101,.| -|..|........|.......| 100,.| -|..|........|.......| 99,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 99,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 102,.| -|..|........|.......| 103,.| -|..|........|.......| 105,.| -|..|........|.......| 106,.| -|..|........|.......| 109,.| -|..|........|.......| 110,.| -|..|........|.......| 113,.| -|..|........|.......| 115,.| -|..|........|.......| 116,.| -|..|........|.......| 116,.| -|..|........|.......| 116,.| -|..|........|.......| 117,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 119,.| -|..|........|.......| 119,.| -|..|........|.......| 120,.| -|..|........|.......| 120,.| -|..|........|.......| 121,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 124,.| -|..|........|.......| 124,.| -|..|........|.......| 124,.| -|..|........|.......| 124,.| -|..|........|.......| 124,.| -|..|........|.......| 124,.| -|..|........|.......| 124,.| -|..|........|.......| 124,.| -|..|........|.......| 124,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 125,.| -|..|........|.......| 126,.| -|..|........|.......| 128,.| -|..|........|.......| 130,.| -|..|........|.......| 134,.| -|..|........|.......| 138,.| -|..|........|.......| 139,.| -|..|........|.......| 141,.| -|..|........|.......| 142,.| -|..|........|.......| 144,.| -|..|........|.......| 145,.| -|..|........|.......| 145,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 145,.| -|..|........|.......| 145,.| -|..|........|.......| 140,.| -|..|........|.......| 138,.| -|..|........|.......| 133,.| -|..|........|.......| 128,.| -|..|........|.......| 126,.| -|..|........|.......| 123,.| -|..|........|.......| 117,.| -|..|........|.......| 112,.| -|..|........|.......| 108,.| -|..|........|.......| 106,.| -|..|........|.......| 101,.| -|..|........|.......| 98,.| -|..|........|.......| 91,.| -|..|........|.......| 87,.| -|..|........|.......| 85,.| -|..|........|.......| 81,.| -|..|........|.......| 80,.| -|..|........|.......| 77,.| -|..|........|.......| 75,.| -|..|........|.......| 72,.| -|..|........|.......| 70,.| -|..|........|.......| 67,.| -|..|........|.......| 66,.| -|..|........|.......| 64,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 60,.| -|..|........|.......| 60,.| -|..|........|.......| 58,.| -|..|........|.......| 56,.| -|..|........|.......| 54,.| -|..|........|.......| 50,.| -|..|........|.......| 48,.| -|..|........|.......| 45,.| -|..|........|.......| 44,.| -|..|........|.......| 42,.| -|..|........|.......| 42,.| -|..|........|.......| 42,.| -|..|........|.......| 42,.| -|..|........|.......| 42,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 41,.| -|..|........|.......| 42,.| -|..|........|.......| 43,.| -|..|........|.......| 45,.| -|..|........|.......| 47,.| -|..|........|.......| 48,.| -|..|........|.......| 50,.| -|..|........|.......| 51,.| -|..|........|.......| 51,.| -|..|........|.......| 51,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 52,.| -|..|........|.......| 51,.| -|..|........|.......| 48,.| -|..|........|.......| 46,.| -|..|........|.......| 40,.| -|..|........|.......| 38,.| -|..|........|.......| 34,.| -|..|........|.......| 31,.| -|..|........|.......| 31,.| -|..|........|.......| 30,.| -|..|........|.......| 29,.| -|..|........|.......| 29,.| -|..|........|.......| 29,.| -|..|........|.......| 29,.| -|..|........|.......| 29,.| -|..|........|.......| 29,.| -|..|........|.......| 29,.| -|..|........|.......| 29,.| -|..|........|.......| 29,.| -|..|........|.......| 30,.| -|..|........|.......| 31,.| -|..|........|.......| 35,.| -|..|........|.......| 36,.| -|..|........|.......| 41,.| -|..|........|.......| 44,.| -|..|........|.......| 51,.| -|..|........|.......| 55,.| -|..|........|.......| 61,.| -|..|........|.......| 65,.| -|..|........|.......| 66,.| -|..|........|.......| 68,.| -|..|........|.......| 68,.| -|..|........|.......| 70,.| -|..|........|.......| 72,.| -|..|........|.......| 73,.| -|..|........|.......| 75,.| -|..|........|.......| 76,.| -|..|........|.......| 78,.| -|..|........|.......| 80,.| -|..|........|.......| 81,.| -|..|........|.......| 84,.| -|..|........|.......| 85,.| -|..|........|.......| 88,.| -|..|........|.......| 90,.| -|..|........|.......| 93,.| -|..|........|.......| 94,.| -|..|........|.......| 95,.| -|..|........|.......| 96,.| -|..|........|.......| 98,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 101,.| -|..|........|.......| 101,.| -|..|........|.......| 102,.| -|..|........|.......| 102,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 104,.| -|..|........|.......| 105,.| -|..|........|.......| 106,.| -|..|........|.......| 106,.| -|..|........|.......| 107,.| -|..|........|.......| 107,.| -|..|........|.......| 108,.| -|..|........|.......| 108,.| -|..|........|.......| 110,.| -|..|........|.......| 111,.| -|..|........|.......| 111,.| -|..|........|.......| 112,.| -|..|........|.......| 113,.| -|..|........|.......| 113,.| -|..|........|.......| 113,.| -|..|........|.......| 114,.| -|..|........|.......| 114,.| -|..|........|.......| 115,.| -|..|........|.......| 115,.| -|..|........|.......| 115,.| -|..|........|.......| 115,.| -|..|........|.......| 115,.| -|..|........|.......| 115,.| -|..|........|.......| 115,.| -|..|........|.......| 113,.| -|..|........|.......| 110,.| -|..|........|.......| 108,.| -|..|........|.......| 104,.| -|..|........|.......| 99,.| -|..|........|.......| 98,.| -|..|........|.......| 96,.| -|..|........|.......| 95,.| -|..|........|.......| 93,.| -|..|........|.......| 92,.| -|..|........|.......| 92,.| -|..|........|.......| 88,.| -|..|........|.......| 86,.| -|..|........|.......| 83,.| -|..|........|.......| 81,.| -|..|........|.......| 78,.| -|..|........|.......| 75,.| -|..|........|.......| 73,.| -|..|........|.......| 72,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 70,.| -|..|........|.......| 69,.| -|..|........|.......| 68,.| -|..|........|.......| 68,.| -|..|........|.......| 68,.| -|..|........|.......| 67,.| -|..|........|.......| 67,.| -|..|........|.......| 67,.| -|..|........|.......| 67,.| -|..|........|.......| 67,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 63,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 60,.| -|..|........|.......| 60,.| -|..|........|.......| 60,.| -|..|........|.......| 59,.| -|..|........|.......| 58,.| -|..|........|.......| 56,.| -|..|........|.......| 55,.| -|..|........|.......| 53,.| -|..|........|.......| 51,.| -|..|........|.......| 49,.| -|..|........|.......| 46,.| -|..|........|.......| 45,.| -|..|........|.......| 42,.| -|..|........|.......| 40,.| -|..|........|.......| 38,.| -|..|........|.......| 36,.| -|..|........|.......| 34,.| -|..|........|.......| 33,.| -|..|........|.......| 32,.| -|..|........|.......| 31,.| -|..|........|.......| 30,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 26,.| -|..|........|.......| 26,.| -|..|........|.......| 26,.| -|..|........|.......| 26,.| -|..|........|.......| 26,.| -|..|........|.......| 26,.| -|..|........|.......| 26,.| -|..|........|.......| 26,.| -|..|........|.......| 26,.| -|..|........|.......| 26,.| -|..|........|.......| 25,.| -|..|........|.......| 25,.| -|..|........|.......| 23,.| -|..|........|.......| 20,.| -|..|........|.......| 19,.| -|..|........|.......| 18,.| -|..|........|.......| 17,.| -|..|........|.......| 17,.| -|..|........|.......| 17,.| -|..|........|.......| 17,.| -|..|........|.......| 17,.| -|..|........|.......| 17,.| -|..|........|.......| 17,.| -|..|........|.......| 17,.| -|..|........|.......| 17,.| -|..|........|.......| 17,.| -|..|........|.......| 17,.| -|..|........|.......| 17,.| -|..|........|.......| 17,.| -|..|........|.......| 17,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 15,.| -|..|........|.......| 14,.| -|..|........|.......| 13,.| -|..|........|.......| 12,.| -|..|........|.......| 12,.| -|..|........|.......| 11,.| -|..|........|.......| 11,.| -|..|........|.......| 11,.| -|..|........|.......| 11,.| -|..|........|.......| 11,.| -|..|........|.......| 11,.| -|..|........|.......| 11,.| -|..|........|.......| 11,.| -|..|........|.......| 11,.| -|..|........|.......| 13,.| -|..|........|.......| 18,.| -|..|........|.......| 21,.| -|..|........|.......| 27,.| -|..|........|.......| 30,.| -|..|........|.......| 31,.| -|..|........|.......| 33,.| -|..|........|.......| 33,.| -|..|........|.......| 35,.| -|..|........|.......| 36,.| -|..|........|.......| 37,.| -|..|........|.......| 39,.| -|..|........|.......| 40,.| -|..|........|.......| 42,.| -|..|........|.......| 43,.| -|..|........|.......| 45,.| -|..|........|.......| 45,.| -|..|........|.......| 45,.| -|..|........|.......| 46,.| -|..|........|.......| 47,.| -|..|........|.......| 48,.| -|..|........|.......| 49,.| -|..|........|.......| 50,.| -|..|........|.......| 52,.| -|..|........|.......| 53,.| -|..|........|.......| 54,.| -|..|........|.......| 55,.| -|..|........|.......| 56,.| -|..|........|.......| 57,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 60,.| -|..|........|.......| 60,.| -|..|........|.......| 60,.| -|..|........|.......| 60,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 62,.| -|..|........|.......| 63,.| -|..|........|.......| 64,.| -|..|........|.......| 65,.| -|..|........|.......| 66,.| -|..|........|.......| 68,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 71,.| -|..|........|.......| 72,.| -|..|........|.......| 75,.| -|..|........|.......| 77,.| -|..|........|.......| 79,.| -|..|........|.......| 82,.| -|..|........|.......| 84,.| -|..|........|.......| 88,.| -|..|........|.......| 90,.| -|..|........|.......| 93,.| -|..|........|.......| 96,.| -|..|........|.......| 98,.| -|..|........|.......| 100,.| -|..|........|.......| 101,.| -|..|........|.......| 103,.| -|..|........|.......| 105,.| -|..|........|.......| 105,.| -|..|........|.......| 106,.| -|..|........|.......| 106,.| -|..|........|.......| 106,.| -|..|........|.......| 106,.| -|..|........|.......| 106,.| -|..|........|.......| 106,.| -|..|........|.......| 106,.| -|..|........|.......| 106,.| -|..|........|.......| 106,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 122,.| -|..|........|.......| 125,.| -|..|........|.......| 127,.| -|..|........|.......| 134,.| -|..|........|.......| 136,.| -|..|........|.......| 138,.| -|..|........|.......| 138,.| -|..|........|.......| 138,.| -|..|........|.......| 138,.| -|..|........|.......| 138,.| -|..|........|.......| 138,.| -|..|........|.......| 138,.| -|..|........|.......| 138,.| -|..|........|.......| 138,.| -|..|........|.......| 138,.| -|..|........|.......| 138,.| -|..|........|.......| 136,.| -|..|........|.......| 135,.| -|..|........|.......| 134,.| -|..|........|.......| 132,.| -|..|........|.......| 131,.| -|..|........|.......| 131,.| -|..|........|.......| 130,.| -|..|........|.......| 130,.| -|..|........|.......| 130,.| -|..|........|.......| 129,.| -|..|........|.......| 126,.| -|..|........|.......| 126,.| -|..|........|.......| 124,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 120,.| -|..|........|.......| 119,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 119,.| -|..|........|.......| 119,.| -|..|........|.......| 120,.| -|..|........|.......| 121,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 123,.| -|..|........|.......| 122,.| -|..|........|.......| 121,.| -|..|........|.......| 120,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 118,.| -|..|........|.......| 116,.| -|..|........|.......| 111,.| -|..|........|.......| 103,.| -|..|........|.......| 99,.| -|..|........|.......| 92,.| -|..|........|.......| 88,.| -|..|........|.......| 83,.| -|..|........|.......| 79,.| -|..|........|.......| 72,.| -|..|........|.......| 65,.| -|..|........|.......| 60,.| -|..|........|.......| 48,.| -|..|........|.......| 41,.| -|..|........|.......| 25,.| -|..|........|.......| 18,.| -|..|........|.......| 8,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 7,.| -|..|........|.......| 9,.| -|..|........|.......| 13,.| -|..|........|.......| 14,.| -|..|........|.......| 16,.| -|..|........|.......| 18,.| -|..|........|.......| 20,.| -|..|........|.......| 23,.| -|..|........|.......| 27,.| -|..|........|.......| 32,.| -|..|........|.......| 34,.| -|..|........|.......| 36,.| -|..|........|.......| 36,.| -|..|........|.......| 36,.| -|..|........|.......| 36,.| -|..|........|.......| 36,.| -|..|........|.......| 36,.| -|..|........|.......| 36,.| -|..|........|.......| 36,.| -|..|........|.......| 35,.| -|..|........|.......| 35,.| -|..|........|.......| 35,.| -|..|........|.......| 35,.| -|..|........|.......| 35,.| -|..|........|.......| 35,.| -|..|........|.......| 36,.| -|..|........|.......| 36,.| -|..|........|.......| 38,.| -|..|........|.......| 40,.| -|..|........|.......| 43,.| -|..|........|.......| 46,.| -|..|........|.......| 47,.| -|..|........|.......| 48,.| -|..|........|.......| 48,.| -|..|........|.......| 50,.| -|..|........|.......| 50,.| -|..|........|.......| 50,.| -|..|........|.......| 51,.| -|..|........|.......| 51,.| -|..|........|.......| 52,.| -|..|........|.......| 53,.| -|..|........|.......| 53,.| -|..|........|.......| 54,.| -|..|........|.......| 55,.| -|..|........|.......| 55,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 57,.| -|..|........|.......| 57,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 59,.| -|..|........|.......| 60,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 62,.| -|..|........|.......| 63,.| -|..|........|.......| 65,.| -|..|........|.......| 66,.| -|..|........|.......| 69,.| -|..|........|.......| 70,.| -|..|........|.......| 72,.| -|..|........|.......| 73,.| -|..|........|.......| 75,.| -|..|........|.......| 76,.| -|..|........|.......| 78,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 81,.| -|..|........|.......| 81,.| -|..|........|.......| 83,.| -|..|........|.......| 84,.| -|..|........|.......| 86,.| -|..|........|.......| 87,.| -|..|........|.......| 88,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 89,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 87,.| -|..|........|.......| 86,.| -|..|........|.......| 85,.| -|..|........|.......| 84,.| -|..|........|.......| 83,.| -|..|........|.......| 82,.| -|..|........|.......| 81,.| -|..|........|.......| 80,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 77,.| -|..|........|.......| 77,.| -|..|........|.......| 76,.| -|..|........|.......| 75,.| -|..|........|.......| 74,.| -|..|........|.......| 73,.| -|..|........|.......| 73,.| -|..|........|.......| 65,.| -|..|........|.......| 58,.| -|..|........|.......| 53,.| -|..|........|.......| 42,.| -|..|........|.......| 37,.| -|..|........|.......| 29,.| -|..|........|.......| 23,.| -|..|........|.......| 21,.| -|..|........|.......| 20,.| -|..|........|.......| 20,.| -|..|........|.......| 20,.| -|..|........|.......| 20,.| -|..|........|.......| 18,.| -|..|........|.......| 18,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 14,.| -|..|........|.......| 13,.| -|..|........|.......| 8,.| -|..|........|.......| 7,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 6,.| -|..|........|.......| 7,.| -|..|........|.......| 7,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 8,.| -|..|........|.......| 10,.| -|..|........|.......| 10,.| -|..|........|.......| 11,.| -|..|........|.......| 12,.| -|..|........|.......| 13,.| -|..|........|.......| 14,.| -|..|........|.......| 15,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 18,.| -|..|........|.......| 18,.| -|..|........|.......| 20,.| -|..|........|.......| 21,.| -|..|........|.......| 25,.| -|..|........|.......| 26,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 29,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 31,.| -|..|........|.......| 33,.| -|..|........|.......| 35,.| -|..|........|.......| 38,.| -|..|........|.......| 38,.| -|..|........|.......| 40,.| -|..|........|.......| 41,.| -|..|........|.......| 43,.| -|..|........|.......| 45,.| -|..|........|.......| 46,.| -|..|........|.......| 48,.| -|..|........|.......| 48,.| -|..|........|.......| 50,.| -|..|........|.......| 51,.| -|..|........|.......| 53,.| -|..|........|.......| 54,.| -|..|........|.......| 56,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 60,.| -|..|........|.......| 61,.| -|..|........|.......| 64,.| -|..|........|.......| 66,.| -|..|........|.......| 67,.| -|..|........|.......| 68,.| -|..|........|.......| 69,.| -|..|........|.......| 70,.| -|..|........|.......| 71,.| -|..|........|.......| 73,.| -|..|........|.......| 73,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 76,.| -|..|........|.......| 78,.| -|..|........|.......| 81,.| -|..|........|.......| 84,.| -|..|........|.......| 86,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 89,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 92,.| -|..|........|.......| 92,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 92,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 87,.| -|..|........|.......| 85,.| -|..|........|.......| 77,.| -|..|........|.......| 68,.| -|..|........|.......| 62,.| -|..|........|.......| 50,.| -|..|........|.......| 43,.| -|..|........|.......| 35,.| -|..|........|.......| 32,.| -|..|........|.......| 31,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 29,.| -|..|........|.......| 23,.| -|..|........|.......| 11,.| -|..|........|.......| 3,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 6,.| -|..|........|.......| 20,.| -|..|........|.......| 25,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 28,.| -|..|........|.......| 27,.| -|..|........|.......| 23,.| -|..|........|.......| 21,.| -|..|........|.......| 21,.| -|..|........|.......| 20,.| -|..|........|.......| 20,.| -|..|........|.......| 19,.| -|..|........|.......| 18,.| -|..|........|.......| 17,.| -|..|........|.......| 16,.| -|..|........|.......| 16,.| -|..|........|.......| 15,.| -|..|........|.......| 15,.| -|..|........|.......| 14,.| -|..|........|.......| 13,.| -|..|........|.......| 11,.| -|..|........|.......| 8,.| -|..|........|.......| 6,.| -|..|........|.......| 4,.| -|..|........|.......| 3,.| -|..|........|.......| 2,.| -|..|........|.......| 1,.| -|..|........|.......| 1,.| -|..|........|.......| 1,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 1,.| -|..|........|.......| 1,.| -|..|........|.......| 1,.| -|..|........|.......| 1,.| -|..|........|.......| 1,.| -|..|........|.......| 1,.| -|..|........|.......| 1,.| -|..|........|.......| 1,.| -|..|........|.......| 1,.| -|..|........|.......| 1,.| -|..|........|.......| 1,.| -|..|........|.......| 2,.| -|..|........|.......| 3,.| -|..|........|.......| 4,.| -|..|........|.......| 4,.| -|..|........|.......| 5,.| -|..|........|.......| 5,.| -|..|........|.......| 5,.| -|..|........|.......| 5,.| -|..|........|.......| 5,.| -|..|........|.......| 4,.| -|..|........|.......| 4,.| -|..|........|.......| 3,.| -|..|........|.......| 2,.| -|..|........|.......| 1,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 2,.| -|..|........|.......| 8,.| -|..|........|.......| 14,.| -|..|........|.......| 16,.| -|..|........|.......| 21,.| -|..|........|.......| 23,.| -|..|........|.......| 25,.| -|..|........|.......| 25,.| -|..|........|.......| 26,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 30,.| -|..|........|.......| 31,.| -|..|........|.......| 33,.| -|..|........|.......| 35,.| -|..|........|.......| 37,.| -|..|........|.......| 40,.| -|..|........|.......| 41,.| -|..|........|.......| 43,.| -|..|........|.......| 44,.| -|..|........|.......| 46,.| -|..|........|.......| 50,.| -|..|........|.......| 51,.| -|..|........|.......| 52,.| -|..|........|.......| 53,.| -|..|........|.......| 53,.| -|..|........|.......| 53,.| -|..|........|.......| 53,.| -|..|........|.......| 53,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 55,.| -|..|........|.......| 55,.| -|..|........|.......| 57,.| -|..|........|.......| 57,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 58,.| -|..|........|.......| 59,.| -|..|........|.......| 60,.| -|..|........|.......| 61,.| -|..|........|.......| 62,.| -|..|........|.......| 64,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 63,.| -|..|........|.......| 62,.| -|..|........|.......| 58,.| -|..|........|.......| 56,.| -|..|........|.......| 55,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 54,.| -|..|........|.......| 56,.| -|..|........|.......| 60,.| -|..|........|.......| 66,.| -|..|........|.......| 70,.| -|..|........|.......| 75,.| -|..|........|.......| 79,.| -|..|........|.......| 80,.| -|..|........|.......| 82,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 84,.| -|..|........|.......| 85,.| -|..|........|.......| 85,.| -|..|........|.......| 86,.| -|..|........|.......| 86,.| -|..|........|.......| 86,.| -|..|........|.......| 86,.| -|..|........|.......| 87,.| -|..|........|.......| 87,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 89,.| -|..|........|.......| 90,.| -|..|........|.......| 91,.| -|..|........|.......| 95,.| -|..|........|.......| 100,.| -|..|........|.......| 102,.| -|..|........|.......| 106,.| -|..|........|.......| 110,.| -|..|........|.......| 121,.| -|..|........|.......| 127,.| -|..|........|.......| 136,.| -|..|........|.......| 138,.| -|..|........|.......| 141,.| -|..|........|.......| 141,.| -|..|........|.......| 141,.| -|..|........|.......| 141,.| -|..|........|.......| 141,.| -|..|........|.......| 141,.| -|..|........|.......| 141,.| -|..|........|.......| 141,.| -|..|........|.......| 140,.| -|..|........|.......| 138,.| -|..|........|.......| 133,.| -|..|........|.......| 127,.| -|..|........|.......| 124,.| -|..|........|.......| 119,.| -|..|........|.......| 116,.| -|..|........|.......| 113,.| -|..|........|.......| 111,.| -|..|........|.......| 110,.| -|..|........|.......| 109,.| -|..|........|.......| 106,.| -|..|........|.......| 101,.| -|..|........|.......| 100,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 97,.| -|..|........|.......| 97,.| -|..|........|.......| 97,.| -|..|........|.......| 95,.| -|..|........|.......| 94,.| -|..|........|.......| 90,.| -|..|........|.......| 88,.| -|..|........|.......| 85,.| -|..|........|.......| 84,.| -|..|........|.......| 84,.| -|..|........|.......| 84,.| -|..|........|.......| 84,.| -|..|........|.......| 86,.| -|..|........|.......| 90,.| -|..|........|.......| 91,.| -|..|........|.......| 94,.| -|..|........|.......| 95,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,F| -|..|........|.......| 96,F| -|..|........|.......| 96,F| -|..|........|.......| 96,F| -|..|........|.......| 96,F| -|..|........|.......| 96,F| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,F| -|..|........|.......| 96,F| -|..|........|.......| 96,F| -|..|........|.......| 96,F| -|..|........|.......| 96,F| -|..|........|.......| 96,F| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 95,.| -|..|........|.......| 95,F| -|..|........|.......| 95,F| -|..|........|.......| 95,F| -|..|........|.......| 95,F| -|..|........|.......| 95,F| -|..|........|.......| 95,F| -|..|........|.......| 95,F| -|..|........|.......| 95,.| -|..|........|.......| 95,.| -|..|........|.......| 95,.| -|..|........|.......| 95,.| -|..|........|.......| 95,.| -|..|........|.......| 95,.| -|..|........|.......| 95,.| -|..|........|.......| 95,.| -|..|........|.......| 95,.| -|..|........|.......| 95,.| -|..|........|.......| 94,.| -|..|........|.......| 94,.| -|..|........|.......| 94,.| -|..|........|.......| 94,.| -|..|........|.......| 94,.| -|..|........|.......| 94,.| -|..|........|.......| 94,.| -|..|........|.......| 94,.| -|..|........|.......| 94,.| -|..|........|.......| 94,.| -|..|........|.......| 94,.| -|..|........|.......| 94,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,F| -|..|........|.......| 93,F| -|..|........|.......| 93,F| -|..|........|.......| 93,F| -|..|........|.......| 93,F| -|..|........|.......| 93,F| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 93,.| -|..|........|.......| 92,.| -|..|........|.......| 92,.| -|..|........|.......| 92,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,F| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 91,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 90,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 87,.| -|..|........|.......| 87,.| -|..|........|.......| 86,.| -|..|........|.......| 86,.| -|..|........|.......| 86,.| -|..|........|.......| 86,.| -|..|........|.......| 85,.| -|..|........|.......| 85,.| -|..|........|.......| 85,.| -|..|........|.......| 85,.| -|..|........|.......| 85,.| -|..|........|.......| 85,.| -|..|........|.......| 84,.| -|..|........|.......| 84,.| -|..|........|.......| 84,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 83,.| -|..|........|.......| 82,.| -|..|........|.......| 82,.| -|..|........|.......| 82,.| -|..|........|.......| 82,.| -|..|........|.......| 82,.| -|..|........|.......| 82,.| -|..|........|.......| 82,.| -|..|........|.......| 82,.| -|..|........|.......| 82,.| -|..|........|.......| 82,.| -|..|........|.......| 82,.| -|..|........|.......| 82,.| -|..|........|.......| 82,.| -|..|........|.......| 82,.| -|..|........|.......| 81,.| -|..|........|.......| 80,.| -|..|........|.......| 77,.| -|..|........|.......| 75,.| -|..|........|.......| 73,.| -|..|........|.......| 72,.| -|..|........|.......| 71,.| -|..|........|.......| 70,.| -|..|........|.......| 70,.| -|..|........|.......| 70,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 68,.| -|..|........|.......| 68,.| -|..|........|.......| 67,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 65,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 66,.| -|..|........|.......| 67,.| -|..|........|.......| 68,.| -|..|........|.......| 70,.| -|..|........|.......| 72,.| -|..|........|.......| 73,.| -|..|........|.......| 73,.| -|..|........|.......| 73,.| -|..|........|.......| 73,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 76,.| -|..|........|.......| 77,.| -|..|........|.......| 77,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 77,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 75,.| -|..|........|.......| 74,.| -|..|........|.......| 73,.| -|..|........|.......| 73,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 72,.| -|..|........|.......| 73,.| -|..|........|.......| 73,.| -|..|........|.......| 73,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 77,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 79,.| -|..|........|.......| 79,.| -|..|........|.......| 79,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 70,.| -|..|........|.......| 69,.| -|..|........|.......| 68,.| -|..|........|.......| 67,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 66,.| -|..|........|.......| 67,.| -|..|........|.......| 67,.| -|..|........|.......| 68,.| -|..|........|.......| 68,.| -|..|........|.......| 68,.| -|..|........|.......| 68,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 70,.| -|..|........|.......| 70,.| -|..|........|.......| 70,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,F| -|..|........|.......| 71,F| -|..|........|.......| 71,F| -|..|........|.......| 71,F| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 72,.| -|..|........|.......| 72,.| -|..|........|.......| 73,.| -|..|........|.......| 73,.| -|..|........|.......| 73,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 77,.| -|..|........|.......| 77,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 80,.| -|..|........|.......| 80,.| -|..|........|.......| 81,.| -|..|........|.......| 82,.| -|..|........|.......| 85,.| -|..|........|.......| 85,.| -|..|........|.......| 87,.| -|..|........|.......| 89,.| -|..|........|.......| 90,.| -|..|........|.......| 91,.| -|..|........|.......| 93,.| -|..|........|.......| 94,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 99,.| -|..|........|.......| 100,.| -|..|........|.......| 101,.| -|..|........|.......| 103,.| -|..|........|.......| 103,.| -|..|........|.......| 104,.| -|..|........|.......| 105,.| -|..|........|.......| 105,.| -|..|........|.......| 106,.| -|..|........|.......| 108,.| -|..|........|.......| 110,.| -|..|........|.......| 111,.| -|..|........|.......| 117,.| -|..|........|.......| 120,.| -|..|........|.......| 125,.| -|..|........|.......| 131,.| -|..|........|.......| 134,.| -|..|........|.......| 138,.| -|..|........|.......| 140,.| -|..|........|.......| 143,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 146,.| -|..|........|.......| 147,.| -|..|........|.......| 147,.| -|..|........|.......| 147,.| -|..|........|.......| 147,.| -|..|........|.......| 147,.| -|..|........|.......| 147,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 148,.| -|..|........|.......| 147,.| -|..|........|.......| 146,.| -|..|........|.......| 143,.| -|..|........|.......| 141,.| -|..|........|.......| 136,.| -|..|........|.......| 131,.| -|..|........|.......| 128,.| -|..|........|.......| 125,.| -|..|........|.......| 124,.| -|..|........|.......| 122,.| -|..|........|.......| 121,.| -|..|........|.......| 121,.| -|..|........|.......| 120,.| -|..|........|.......| 120,.| -|..|........|.......| 119,.| -|..|........|.......| 117,.| -|..|........|.......| 116,.| -|..|........|.......| 115,.| -|..|........|.......| 113,.| -|..|........|.......| 111,.| -|..|........|.......| 111,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 110,.| -|..|........|.......| 109,.| -|..|........|.......| 109,.| -|..|........|.......| 107,.| -|..|........|.......| 105,.| -|..|........|.......| 103,.| -|..|........|.......| 97,.| -|..|........|.......| 94,.| -|..|........|.......| 87,.| -|..|........|.......| 82,.| -|..|........|.......| 75,.| -|..|........|.......| 71,.| -|..|........|.......| 68,.| -|..|........|.......| 66,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 63,.| -|..|........|.......| 63,.| -|..|........|.......| 62,.| -|..|........|.......| 62,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 62,.| -|..|........|.......| 62,.| -|..|........|.......| 63,.| -|..|........|.......| 63,.| -|..|........|.......| 64,.| -|..|........|.......| 66,.| -|..|........|.......| 68,.| -|..|........|.......| 68,.| -|..|........|.......| 70,.| -|..|........|.......| 70,.| -|..|........|.......| 71,.| -|..|........|.......| 72,.| -|..|........|.......| 73,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 75,.| -|..|........|.......| 76,.| -|..|........|.......| 77,.| -|..|........|.......| 78,.| -|..|........|.......| 80,.| -|..|........|.......| 81,.| -|..|........|.......| 83,.| -|..|........|.......| 86,.| -|..|........|.......| 87,.| -|..|........|.......| 90,.| -|..|........|.......| 93,.| -|..|........|.......| 94,.| -|..|........|.......| 96,.| -|..|........|.......| 96,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 99,.| -|..|........|.......| 99,.| -|..|........|.......| 99,.| -|..|........|.......| 99,.| -|..|........|.......| 99,.| -|..|........|.......| 99,.| -|..|........|.......| 99,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 100,.| -|..|........|.......| 98,.| -|..|........|.......| 96,.| -|..|........|.......| 95,.| -|..|........|.......| 91,.| -|..|........|.......| 90,.| -|..|........|.......| 86,.| -|..|........|.......| 84,.| -|..|........|.......| 83,.| -|..|........|.......| 81,.| -|..|........|.......| 80,.| -|..|........|.......| 78,.| -|..|........|.......| 78,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 74,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 68,.| -|..|........|.......| 68,.| -|..|........|.......| 66,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 64,.| -|..|........|.......| 64,.| -|..|........|.......| 63,.| -|..|........|.......| 63,.| -|..|........|.......| 63,.| -|..|........|.......| 63,.| -|..|........|.......| 63,.| -|..|........|.......| 61,.| -|..|........|.......| 61,.| -|..|........|.......| 57,.| -|..|........|.......| 54,.| -|..|........|.......| 53,.| -|..|........|.......| 52,.| -|..|........|.......| 51,.| -|..|........|.......| 51,.| -|..|........|.......| 51,.| -|..|........|.......| 51,.| -|..|........|.......| 51,.| -|..|........|.......| 51,.| -|..|........|.......| 51,.| -|..|........|.......| 53,.| -|..|........|.......| 54,.| -|..|........|.......| 55,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 57,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 56,.| -|..|........|.......| 55,.| -|..|........|.......| 48,.| -|..|........|.......| 43,.| -|..|........|.......| 35,.| -|..|........|.......| 30,.| -|..|........|.......| 23,.| -|..|........|.......| 21,.| -|..|........|.......| 20,.| -|..|........|.......| 20,.| -|..|........|.......| 20,.| -|..|........|.......| 20,.| -|..|........|.......| 20,.| -|..|........|.......| 20,.| -|..|........|.......| 20,.| -|..|........|.......| 20,.| -|..|........|.......| 20,.| -|..|........|.......| 19,.| -|..|........|.......| 19,.| -|..|........|.......| 18,.| -|..|........|.......| 18,.| -|..|........|.......| 17,.| -|..|........|.......| 16,.| -|..|........|.......| 15,.| -|..|........|.......| 14,.| -|..|........|.......| 13,.| -|..|........|.......| 13,.| -|..|........|.......| 13,.| -|..|........|.......| 11,.| -|..|........|.......| 11,.| -|..|........|.......| 11,.| -|..|........|.......| 10,.| -|..|........|.......| 8,.| -|..|........|.......| 5,.| -|..|........|.......| 3,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 0,.| -|..|........|.......| 2,.| -|..|........|.......| 5,.| -|..|........|.......| 9,.| -|..|........|.......| 11,.| -|..|........|.......| 17,.| -|..|........|.......| 21,.| -|..|........|.......| 24,.| -|..|........|.......| 28,.| -|..|........|.......| 29,.| -|..|........|.......| 31,.| -|..|........|.......| 31,.| -|..|........|.......| 31,.| -|..|........|.......| 32,.| -|..|........|.......| 32,.| -|..|........|.......| 33,.| -|..|........|.......| 33,.| -|..|........|.......| 33,.| -|..|........|.......| 33,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 34,.| -|..|........|.......| 35,.| -|..|........|.......| 36,.| -|..|........|.......| 37,.| -|..|........|.......| 40,.| -|..|........|.......| 41,.| -|..|........|.......| 45,.| -|..|........|.......| 46,.| -|..|........|.......| 51,.| -|..|........|.......| 53,.| -|..|........|.......| 55,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 60,.| -|..|........|.......| 61,.| -|..|........|.......| 63,.| -|..|........|.......| 66,.| -|..|........|.......| 68,.| -|..|........|.......| 71,.| -|..|........|.......| 72,.| -|..|........|.......| 74,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 74,.| -|..|........|.......| 73,.| -|..|........|.......| 72,.| -|..|........|.......| 72,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 71,.| -|..|........|.......| 72,.| -|..|........|.......| 72,.| -|..|........|.......| 73,.| -|..|........|.......| 75,.| -|..|........|.......| 75,.| -|..|........|.......| 76,.| -|..|........|.......| 76,.| -|..|........|.......| 77,.| -|..|........|.......| 78,.| -|..|........|.......| 80,.| -|..|........|.......| 83,.| -|..|........|.......| 84,.| -|..|........|.......| 85,.| -|..|........|.......| 86,.| -|..|........|.......| 88,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 89,.| -|..|........|.......| 88,.| -|..|........|.......| 88,.| -|..|........|.......| 87,.| -|..|........|.......| 86,.| -|..|........|.......| 85,.| -|..|........|.......| 83,.| -|..|........|.......| 81,.| -|..|........|.......| 80,.| -|..|........|.......| 79,.| -|..|........|.......| 78,.| -|..|........|.......| 77,.| -|..|........|.......| 76,.| -|..|........|.......| 75,.| -|..|........|.......| 74,.| -|..|........|.......| 73,.| -|..|........|.......| 72,.| -|..|........|.......| 71,.| -|..|........|.......| 70,.| -|..|........|.......| 70,.| -|..|........|.......| 70,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 69,.| -|..|........|.......| 68,.| -|..|........|.......| 67,.| -|..|........|.......| 66,.| -|..|........|.......| 65,.| -|..|........|.......| 65,.| -|..|........|.......| 63,.| -|..|........|.......| 63,.| -|..|........|.......| 61,.| -|..|........|.......| 60,.| -|..|........|.......| 58,.| -|..|........|.......| 56,.| -|..|........|.......| 55,.| -|..|........|.......| 51,.| -|..|........|.......| 51,.| -|..|........|.......| 49,.| -|..|........|.......| 47,.| -|..|........|.......| 46,.| -|..|........|.......| 45,.| -|..|........|.......| 45,.| -|..|........|.......| 43,.| -|..|........|.......| 42,.| -|..|........|.......| 41,.| -|..|........|.......| 40,.| -|..|........|.......| 39,.| -|..|........|.......| 38,.| -|..|........|.......| 37,.| -|..|........|.......| 35,.| -|..|........|.......| 32,.| -|..|........|.......| 31,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 28,.| -|..|........|.......| 26,.| -|..|........|.......| 25,.| -|..|........|.......| 23,.| -|..|........|.......| 23,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 22,.| -|..|........|.......| 23,.| -|..|........|.......| 24,.| -|..|........|.......| 25,.| -|..|........|.......| 26,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 30,.| -|..|........|.......| 29,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 27,.| -|..|........|.......| 28,.| -|..|........|.......| 28,.| -|..|........|.......| 29,.| -|..|........|.......| 29,.| -|..|........|.......| 31,.| -|..|........|.......| 31,.| -|..|........|.......| 32,.| -|..|........|.......| 32,.| -|..|........|.......| 32,.| -|..|........|.......| 32,.| -|..|........|.......| 32,.| -|..|........|.......| 32,.| -|..|........|.......| 33,.| -|..|........|.......| 33,.| -|..|........|.......| 33,.| -|..|........|.......| 34,.| -|..|........|.......| 35,.| -|..|........|.......| 35,.| -|..|........|.......| 36,.| -|..|........|.......| 38,.| -|..|........|.......| 38,.| -|..|........|.......| 43,.| -|..|........|.......| 45,.| -|..|........|.......| 50,.| -|..|........|.......| 52,.| -|..|........|.......| 54,.| -|..|........|.......| 55,.| -|..|........|.......| 55,.| -|..|........|.......| 55,.| -|..|........|.......| 55,.| -|..|........|.......| 56,.| -|..|........|.......| 56,.| -|..|........|.......| 57,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 58,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 59,.| -|..|........|.......| 60,.| -|..|........|.......| 60,.| -|..|........|.......| 61,.| -|..|........|.......| 62,.| -|..|........|.......| 63,.| -|..|........|.......| 66,.| -|..|........|.......| 68,.| -|..|........|.......| 77,.| -|..|........|.......| 84,.| -|..|........|.......| 86,.| -|..|........|.......| 91,.| -|..|........|.......| 93,.| -|..|........|.......| 95,.| -|..|........|.......| 97,.| -|..|........|.......| 98,.| -|..|........|.......| 98,.| -|..|........|.......| 100,.| -|..|........|.......| 101,.| -|..|........|.......| 103,.| -|..|........|.......| 105,.| -|..|........|.......| 106,.| -|..|........|.......| 108,.| -|..|........|.......| 110,.| -|..|........|.......| 113,.| -|..|........|.......| 116,.| -|..|........|.......| 118,.| -|..|........|.......| 121,.| -|..|........|.......| 123,.| -|..|........|.......| 125,.| -|..|........|.......| 125,.| -|..|........|.......| 125,.| -|..|........|.......| 125,.| -|..|........|.......| 125,.| -|..|........|.......| 125,.| \ No newline at end of file diff --git a/quicknes/tests/arkanoid2.arkFamicomController.test b/quicknes/tests/arkanoid2.arkFamicomController.test deleted file mode 100644 index 52da2794e54..00000000000 --- a/quicknes/tests/arkanoid2.arkFamicomController.test +++ /dev/null @@ -1,15 +0,0 @@ -{ - "Rom File": "roms/Arkanoid II (J) [!].nes", - "Expected ROM SHA1": "79F9D3DA1904400832546216833978A2261313A5", - "Initial State File": "", - "Sequence File": "arkanoid2.arkFamicomController.sol", - "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "MAPR", "CTRL", "APUR" ], - "Controller 1 Type": "ArkanoidFamicom", - "Controller 2 Type": "None", - "Differential Compression": - { - "Enabled": false, - "Max Differences": 2200, - "Use Zlib": true - } -} diff --git a/quicknes/tests/castlevania1.anyPercent.sol b/quicknes/tests/castlevania1.anyPercent.sol deleted file mode 100644 index dd1957b53b8..00000000000 --- a/quicknes/tests/castlevania1.anyPercent.sol +++ /dev/null @@ -1,37338 +0,0 @@ -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R..B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|........| -|..|.D......| -|..|.D.R..B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|U..R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|U.L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..LR....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..LR....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.DL.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|.D......| -|..|UD....BA| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|.D......| -|..|...R....| -|..|..L.....| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.D.R....| -|..|.D.R....| -|..|..L.....| -|..|........| -|..|.D.R....| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|.DL.....| -|..|...R....| -|..|...R..B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|.D.R....| -|..|........| -|..|.DL.....| -|..|...R....| -|..|.D......| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|.D......| -|..|..L.....| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|........| -|..|.D......| -|..|...R....| -|..|...R...A| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|.D.R....| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|.D.R....| -|..|........| -|..|.D......| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.D......| -|..|........| -|..|.D.R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|.D......| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|.D.R....| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|.D.R....| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|.D......| -|..|..L.....| -|..|...R..B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|U..R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U.L.....| -|..|........| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|.D.R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|UD.R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R...A| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|.D.R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|..L.....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U.L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|.D.R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|U.L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|.DL....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.DL....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U..R....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U..R....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L....A| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.DL.....| -|..|...R....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|UDLR.s..| -|..|U.L....A| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|.DL....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U..R....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U.L.....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U.L.....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|UD.R....| -|..|........| -|..|U..R....| -|..|..L.....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|.D.R....| -|..|..L.....| -|..|U..R....| -|..|U.L.....| -|..|U..R....| -|..|.D.R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R...A| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R....| -|..|.D.R...A| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R...A| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R....| -|..|UDLR.sBA| -|..|...R....| -|..|.D.R...A| -|..|U..R...A| -|..|U..R....| -|..|.D.R...A| -|..|U..R....| -|..|U..R...A| -|..|...R....| -|..|UDLR.sBA| -|..|U.LR.sB.| -|..|U..R..B.| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|UDLR.sBA| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|UDLR.sBA| -|..|...R....| -|..|UDLR.sBA| -|..|...R..B.| -|..|U.LR.sB.| -|..|UDLR.sBA| -|..|U.LR.sB.| -|..|...R....| -|..|U..R....| -|..|UDLR.sBA| -|..|...R..B.| -|..|...R..B.| -|..|U..R..B.| -|..|U.LR.sB.| -|..|UDLR.sBA| -|..|U.LR.sB.| -|..|...R..B.| -|..|U.LR.sB.| -|..|UDLR.sBA| -|..|U.LR.sB.| -|..|...R..B.| -|..|U.LR.sB.| -|..|...R..B.| -|..|...R..B.| -|..|U..R..B.| -|..|U..R..B.| -|..|...R..B.| -|..|...R..B.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|...R..B.| -|..|...R..B.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U..R..B.| -|..|...R..B.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U..R..B.| -|..|...R..B.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U..R..B.| -|..|...R..B.| -|..|U.LR.sB.| -|..|UDLR.sBA| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|.DL....A| -|..|U.L.....| -|..|.DL....A| -|..|..L.....| -|..|.DL....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.......A| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|U.L...B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|U.....B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|U.....B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|U.L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|..L....A| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|..L....A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|..L.....| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|...R....| -|..|........| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|UD.R....| -|..|.DL.....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|........| -|..|...R....| -|..|.D.R....| -|..|.D......| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|.D......| -|..|........| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.DL.....| -|..|........| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.DL.....| -|..|...R....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|..L.....| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L....A| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L....A| -|..|......B.| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| diff --git a/quicknes/tests/castlevania1.anyPercent.test b/quicknes/tests/castlevania1.anyPercent.test deleted file mode 100644 index 6b34450bf47..00000000000 --- a/quicknes/tests/castlevania1.anyPercent.test +++ /dev/null @@ -1,15 +0,0 @@ -{ - "Rom File": "roms/Castlevania (U) (PRG0) [!].nes", - "Expected ROM SHA1": "A31B8BD5B370A9103343C866F3C2B2998E889341", - "Initial State File": "", - "Sequence File": "castlevania1.anyPercent.sol", - "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "CTRL" ], - "Controller 1 Type": "Joypad", - "Controller 2 Type": "None", - "Differential Compression": - { - "Enabled": false, - "Max Differences": 2200, - "Use Zlib": true - } -} diff --git a/quicknes/tests/castlevania1.pacifist.sol b/quicknes/tests/castlevania1.pacifist.sol deleted file mode 100644 index 9430616196e..00000000000 --- a/quicknes/tests/castlevania1.pacifist.sol +++ /dev/null @@ -1,39555 +0,0 @@ -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|U..R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.....sB.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R.s..| -|..|...R.s..| -|..|...R.s..| -|..|...R.s.A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|.....s..| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R.s..| -|..|...R.s..| -|..|...R.s..| -|..|...R.s..| -|..|...R.s..| -|..|...R.s..| -|..|.....s..| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|.....s..| -|..|.....s..| -|..|........| -|..|........| -|..|.....s..| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|.D......| -|..|........| -|..|........| -|..|.....s..| -|..|.....s..| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|.....s..| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L....A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.....s..| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U....s..| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L..s.A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L..s..| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.DL.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R....| -|..|.D.R....| -|..|.D......| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|...R....| -|..|...R....| -|..|.D......| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|....S...| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|....S...| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|......B.| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D.R....| -|..|........| -|..|...R...A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|......B.| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|........| -|..|...R....| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|........| -|..|.D......| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|.DL.....| -|..|.D......| -|..|.D....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|........| -|..|.D.R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.DL.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|.D.R....| -|..|...R....| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|........| -|..|..L...B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|........| -|..|.D......| -|..|........| -|..|.D.R....| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|...R....| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.DL.....| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|.D......| -|..|........| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.DL.....| -|..|........| -|..|.D.R....| -|..|...R....| -|..|.DL.....| -|..|........| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D......| -|..|........| -|..|.D.R....| -|..|..L.....| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|........| -|..|.D......| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|........| -|..|.DL.....| -|..|........| -|..|...R....| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|...R....| -|..|...R....| -|..|.D......| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.....s..| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R.s..| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.....s..| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|..L.....| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|........| -|..|...R....| -|..|..L.....| -|..|........| -|..|...R....| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|.DL.....| -|..|........| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...RS...| -|..|...R....| -|..|...RS...| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L...B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|..L.....| -|..|...R..B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|........| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|..L.....| -|..|.D......| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|.D.R....| -|..|....S...| -|..|........| -|..|....S...| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|UD.R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|.D.R....| -|..|..L.....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..LR....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|....S...| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|.DL.....| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|...R....| -|..|........| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|....S...| -|..|...R...A| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|UDL.....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|...R....| -|..|.DL.....| -|..|.D......| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|.DL.....| -|..|...R....| -|..|..L.....| -|..|U.L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L..s..| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.....s..| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L..s..| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L..s..| -|..|..L..s..| -|..|..L..s..| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L..s..| -|..|..L..s..| -|..|..L..s..| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L..s..| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L..s..| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L..s..| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L..s..| -|..|U..R....| -|..|........| -|..|U.L.....| -|..|...R.s..| -|..|...R.s..| -|..|U..R.s..| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U.L.....| -|..|U..R....| -|..|U..R....| -|..|U..R.s..| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R.s..| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R.s..| -|..|...R....| -|..|...R....| -|..|...R.s..| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R.s..| -|..|...R.s..| -|..|...R.s..| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R.s..| -|..|...R.s..| -|..|U..R.s..| -|..|U..R.s..| -|..|U..R.s..| -|..|...R.s..| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R...A| -|..|.D......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|UDLR.s..| -|..|...R....| -|..|.D.R...A| -|..|U..R...A| -|..|U..R....| -|..|.D.R...A| -|..|U..R....| -|..|U..R...A| -|..|...R....| -|..|UDLR.sBA| -|..|U.LR.sB.| -|..|U..R..B.| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|UDLR.sBA| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|U.LR.sB.| -|..|UDLR.sBA| -|..|...R....| -|..|UDLR.sBA| -|..|...R..B.| -|..|U.LR.sB.| -|..|UDLR.sBA| -|..|U.LR.sB.| -|..|...R....| -|..|U..R....| -|..|UDLR.sBA| -|..|...R..B.| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.D.R....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|.DL.....| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.DL.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L....A| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R..B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R..B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|.D......| -|..|........| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.D......| -|..|.D.R....| -|..|.D......| -|..|........| -|..|........| -|..|...R....| -|..|.DL.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|UD......| -|..|........| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|...R....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.DL.....| -|..|..L.....| -|..|.DL.....| -|..|..L.....| -|..|.DL.....| -|..|..L.....| -|..|.DL.....| -|..|..L.....| -|..|.DL.....| -|..|..L.....| -|..|.DL.....| -|..|..L.....| -|..|.DL.....| -|..|..L.....| -|..|.DL.....| -|..|..L.....| -|..|.DL.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|.D.R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.S...| -|..|..L.....| -|..|..L.S...| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D......| -|..|.D....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R..B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R..B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|..L.....| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| \ No newline at end of file diff --git a/quicknes/tests/castlevania1.pacifist.test b/quicknes/tests/castlevania1.pacifist.test deleted file mode 100644 index e433adeca8f..00000000000 --- a/quicknes/tests/castlevania1.pacifist.test +++ /dev/null @@ -1,15 +0,0 @@ -{ - "Rom File": "roms/Castlevania (U) (PRG0) [!].nes", - "Expected ROM SHA1": "A31B8BD5B370A9103343C866F3C2B2998E889341", - "Initial State File": "", - "Sequence File": "castlevania1.pacifist.sol", - "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "CTRL" ], - "Controller 1 Type": "Joypad", - "Controller 2 Type": "None", - "Differential Compression": - { - "Enabled": false, - "Max Differences": 2200, - "Use Zlib": true - } -} diff --git a/quicknes/tests/castlevania3.playaround.sol b/quicknes/tests/castlevania3.playaround.sol deleted file mode 100644 index 726344d28fa..00000000000 --- a/quicknes/tests/castlevania3.playaround.sol +++ /dev/null @@ -1,3499 +0,0 @@ -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|....S...| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|U.....B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L...B.| -|..|..L...B.| -|..|..L...B.| -|..|..L..sB.| -|..|..L..sB.| -|..|..L..sB.| -|..|..L..sB.| -|..|..L..sB.| -|..|..L..sB.| -|..|..L..s..| -|..|..L..s..| -|..|..L..s..| -|..|..L..s..| -|..|..L..s..| -|..|..L..s..| -|..|..L..s..| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|U..R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| diff --git a/quicknes/tests/castlevania3.playaround.test b/quicknes/tests/castlevania3.playaround.test deleted file mode 100644 index 1186bc5eee2..00000000000 --- a/quicknes/tests/castlevania3.playaround.test +++ /dev/null @@ -1,15 +0,0 @@ -{ - "Rom File": "roms/Castlevania III - Dracula's Curse (U) [!].nes", - "Expected ROM SHA1": "F91281D5D9CC26BCF6FB4DE2F5BE086BC633D49B", - "Initial State File": "", - "Sequence File": "castlevania3.playaround.sol", - "Disable State Blocks": [ ], - "Controller 1 Type": "Joypad", - "Controller 2 Type": "None", - "Differential Compression": - { - "Enabled": false, - "Max Differences": 2200, - "Use Zlib": true - } -} diff --git a/quicknes/tests/galaga.anyPercent.sol b/quicknes/tests/galaga.anyPercent.sol deleted file mode 100644 index 8b97a085b81..00000000000 --- a/quicknes/tests/galaga.anyPercent.sol +++ /dev/null @@ -1,29916 +0,0 @@ -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|....S...| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L....A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L....A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L....A| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|......B.| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L....A| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L....A| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R..B.| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L...B.| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|......B.| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R..B.| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|..L.....| -|..|..L...B.| -|..|...R...A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|..L...B.| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L...B.| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L...B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| \ No newline at end of file diff --git a/quicknes/tests/galaga.anyPercent.test b/quicknes/tests/galaga.anyPercent.test deleted file mode 100644 index b7cf63eea1f..00000000000 --- a/quicknes/tests/galaga.anyPercent.test +++ /dev/null @@ -1,15 +0,0 @@ -{ - "Rom File": "roms/Galaga - Demons of Death (U) [!].nes", - "Expected ROM SHA1": "DA54C223D79FA59EB95437854B677CF69B5CAC8A", - "Initial State File": "", - "Sequence File": "galaga.anyPercent.sol", - "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "CTRL" ], - "Controller 1 Type": "Joypad", - "Controller 2 Type": "None", - "Differential Compression": - { - "Enabled": false, - "Max Differences": 2200, - "Use Zlib": true - } -} diff --git a/quicknes/tests/ironSword.anyPercent.sol b/quicknes/tests/ironSword.anyPercent.sol deleted file mode 100644 index 86651d0d605..00000000000 --- a/quicknes/tests/ironSword.anyPercent.sol +++ /dev/null @@ -1,25785 +0,0 @@ -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|....S...| -|..|........| -|..|.D.R....| -|..|U..R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R...A| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|U..R...A| -|..|U..R....| -|..|U..R...A| -|..|U..R...A| -|..|U..R....| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|U..R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.......A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|U.L..s..| -|..|U.L..s..| -|..|U.L..s..| -|..|U.L..s..| -|..|U.L..s..| -|..|U.L..s..| -|..|U.L..s..| -|..|U.L..s..| -|..|U.L..s.A| -|..|U.L..s.A| -|..|U.L..s.A| -|..|U.L..s.A| -|..|U.L..s.A| -|..|U.L..s.A| -|..|U.L..s.A| -|..|U.L..s.A| -|..|U.L..s.A| -|..|U.L..s.A| -|..|U.L..s.A| -|..|U.L..s.A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U......A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|UDL....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|.......A| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|...R...A| -|..|.......A| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|.......A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|U..R...A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|.......A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|........| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U..R....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|........| -|..|........| -|..|........| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|........| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|..L...BA| -|..|......BA| -|..|..L...BA| -|..|.DL...BA| -|..|.DL...BA| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|.DL....A| -|..|.DL....A| -|..|.DL....A| -|..|.DL....A| -|..|.DL....A| -|..|.DL....A| -|..|.DL....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|U.L....A| -|..|U.L....A| -|..|.DL....A| -|..|.DL....A| -|..|.DL....A| -|..|U.L....A| -|..|..L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|..L....A| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R..B.| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|.D.R....| -|..|.D.R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|......BA| -|..|.......A| -|..|.......A| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|......BA| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|......BA| -|..|......BA| -|..|......BA| -|..|......BA| -|..|......BA| -|..|......BA| -|..|......BA| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|......BA| -|..|......BA| -|..|......BA| -|..|......BA| -|..|......BA| -|..|......BA| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|......BA| -|..|......BA| -|..|......BA| -|..|......BA| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U.....BA| -|..|U.....BA| -|..|U.....BA| -|..|U.....BA| -|..|U.....BA| -|..|U.....BA| -|..|U......A| -|..|U......A| -|..|U......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|U.....B.| -|..|U.....B.| -|..|U.....B.| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|......BA| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|......BA| -|..|......BA| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|......B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|.D.R....| -|..|.D.R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|.DL....A| -|..|.DL....A| -|..|.DL....A| -|..|.DL....A| -|..|.DL....A| -|..|.DL....A| -|..|.DL....A| -|..|.DL....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R..B.| -|..|.D.R..B.| -|..|.D.R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..B.| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.D.R...A| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|.D.R...A| -|..|UD.R...A| -|..|UD.R...A| -|..|UD.R...A| -|..|UD.R...A| -|..|UD.R...A| -|..|UD.R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|......B.| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|......B.| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|......B.| -|..|......B.| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|......B.| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|......B.| -|..|......B.| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|U..R....| -|..|U..R...A| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R..B.| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|U......A| -|..|U......A| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U......A| -|..|U......A| -|..|U......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|.DL.....| -|..|.DL.....| -|..|.D......| -|..|.D......| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U......A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|.DL....A| -|..|U.L....A| -|..|.DL....A| -|..|U.L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R..B.| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D.R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|U.L....A| -|..|U.L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.......| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|.D.R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|.......A| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D.R....| -|..|.D.R....| -|..|.D.R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R..BA| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.DL.....| -|..|.DL...B.| -|..|.DL...B.| -|..|.DL...B.| -|..|.DL...B.| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.......| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|......B.| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|.D....B.| -|..|.D....B.| -|..|.D......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D....B.| -|..|.D....B.| -|..|.D....B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..LR....| -|..|..LR....| -|..|..LR....| -|..|..LR....| -|..|..LR....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.D....B.| -|..|.D....B.| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D....B.| -|..|.D....B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|.D......| -|..|.D......| -|..|.D....B.| -|..|.D....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|.D......| -|..|.D....B.| -|..|.D....B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.D.R....| -|..|.D.R....| -|..|.D......| -|..|.D......| -|..|.D....B.| -|..|.D....B.| -|..|.D....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|.D......| -|..|.D....B.| -|..|.D....B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|......B.| -|..|.......A| -|..|......B.| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.D.R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|.DL.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|..L....A| -|..|..L....A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|.......A| -|..|......B.| -|..|.......A| -|..|......B.| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R..BA| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L...B.| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.D.R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L...B.| -|..|..L....A| -|..|..L...B.| -|..|..L....A| -|..|..L...B.| -|..|..L....A| -|..|..L...B.| -|..|..L....A| -|..|..L...B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U.....B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|U.....B.| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.....B.| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.....B.| -|..|U.....B.| -|..|U.....B.| -|..|U.....B.| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.....B.| -|..|U.....B.| -|..|U.....B.| -|..|U.....B.| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.....B.| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.....B.| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.......| -|..|U.....B.| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|......B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R..BA| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.......A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.......A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L...BA| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|........| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|.......A| -|..|......B.| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|.DL.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R...A| -|..|...R..B.| -|..|...R...A| -|..|...R..B.| -|..|...R...A| -|..|...R..B.| -|..|...R...A| -|..|...R..B.| -|..|...R...A| -|..|...R..B.| -|..|...R...A| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|U..R....| -|..|U..R....| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|U..R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L....A| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|..L.....| -|..|........| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U.L.....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|.......A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|.D....B.| -|..|.D....B.| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R..BA| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|UD.R....| -|..|UD.R..BA| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|.D....B.| -|..|UDL.....| -|..|UDL.....| -|..|.D......| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|.D....B.| -|..|UDL.....| -|..|UDL.....| -|..|UDL.....| -|..|UDL.....| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL.....| -|..|.D....B.| -|..|UDL.....| -|..|.D....B.| -|..|UD.R....| -|..|.D......| -|..|UDL...B.| -|..|UDL...B.| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|.......A| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|.D....B.| -|..|.D....B.| -|..|UD.R..BA| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|UD.R....| -|..|.D....B.| -|..|UDL...B.| -|..|UD.R....| -|..|........| -|..|.D......| -|..|UD.R....| -|..|.D....B.| -|..|.D......| -|..|UDL.....| -|..|........| -|..|........| -|..|...R....| -|..|UDL.....| -|..|........| -|..|...R....| -|..|........| -|..|U.L...B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|UDL.....| -|..|UDL.....| -|..|UDL.....| -|..|UDL.....| -|..|UDL.....| -|..|UDL...B.| -|..|UDL.....| -|..|UDL...B.| -|..|UDL.....| -|..|UDL.....| -|..|UDL.....| -|..|UDL.....| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL.....| -|..|UDL.....| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL...B.| -|..|UDL.....| -|..|UDL...B.| -|..|UDL.....| -|..|UDL.....| -|..|UDL...B.| -|..|UDL.....| -|..|UDL...B.| -|..|.DL...BA| -|..|........| -|..|........| -|..|........| -|..|......B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.......A| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|...R..B.| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|.D......| -|..|UDL.....| -|..|UDL...B.| -|..|UDL.....| -|..|UDL.....| -|..|UDL...B.| -|..|UDL.....| -|..|UDL.....| -|..|........| -|..|......B.| \ No newline at end of file diff --git a/quicknes/tests/ironSword.anyPercent.test b/quicknes/tests/ironSword.anyPercent.test deleted file mode 100644 index 61a00f8d577..00000000000 --- a/quicknes/tests/ironSword.anyPercent.test +++ /dev/null @@ -1,15 +0,0 @@ -{ - "Rom File": "roms/Ironsword - Wizards & Warriors II (U) [!].nes", - "Expected ROM SHA1": "97B79E432F62403FB9F877090850C41112A9A168", - "Initial State File": "", - "Sequence File": "ironSword.anyPercent.sol", - "Disable State Blocks": [ "SRAM", "CHRR", "NTAB", "SPRT", "CTRL" ], - "Controller 1 Type": "Joypad", - "Controller 2 Type": "None", - "Differential Compression": - { - "Enabled": true, - "Max Differences": 1900, - "Use Zlib": true - } -} diff --git a/quicknes/tests/meson.build b/quicknes/tests/meson.build deleted file mode 100644 index 748ffe5e4f4..00000000000 --- a/quicknes/tests/meson.build +++ /dev/null @@ -1,118 +0,0 @@ -nomalloc = environment({'MALLOC_PERTURB_': '0'}) - -bash = find_program('bash') -testCommands = ['run_test.sh', quickerNESTester.path(), quickNESTester.path() ] -testTimeout = 120 - -# Tests for copyrighted game roms (only for local testing or own CI runners) -protectedTestSet = [ - 'arkanoid.warpless.test', - 'arkanoid.warps.test', - 'castlevania1.anyPercent.test', - 'castlevania1.pacifist.test', - 'galaga.anyPercent.test', - 'ironSword.anyPercent.test', - 'metroid.playaround.test', - 'nigelMansell.anyPercent.test', - 'ninjaGaiden.anyPercent.test', - 'ninjaGaiden.pacifist.test', - 'ninjaGaiden2.anyPercent.test', - 'ninjaGaiden2.pacifist.test', - 'novaTheSquirrel.anyPercent.test', - 'princeOfPersia.anyPercent.test', - 'rcProAmII.race1.test', - 'saintSeiyaKanketsuHen.anyPercent.test', - 'saintSeiyaOugonDensetsu.anyPercent.test', - 'saiyuukiWorld.anyPercent.test', - 'solarJetman.anyPercent.test', - 'sprilo.anyPercent.test', - 'superMarioBros.warpless.test', - 'superMarioBros.warps.test', - 'superMarioBros3.warps.test', - 'superOffroad.anyPercent.test', - 'tennis.anyPercent.test', -] - -# Tests for open source free roms (for public cloud testing) -openSourceTestSet = [ - 'novaTheSquirrel.anyPercent.test', - 'sprilo.anyPercent.test', -] - -# Creating test set based on whether copyrighted roms are to be used -testSet = openSourceTestSet -if get_option('onlyOpenSource') == false - testSet += protectedTestSet -endif - -# Adding tests to the suite -foreach testFile : testSet - testSuite = testFile.split('.')[0] - testName = testFile.split('.')[1] - test(testName, - bash, - workdir : meson.current_source_dir(), - timeout: testTimeout, - args : [ testCommands, testFile, '--cycleType', 'Full'], - suite : [ testSuite ]) -endforeach - -# Special test case for castlevania 3, since it doesn't work with quickNES -if get_option('onlyOpenSource') == false - testFile = 'castlevania3.playaround.test' - testSuite = testFile.split('.')[0] - testName = testFile.split('.')[1] - test(testName, - quickerNESTester, - workdir : meson.current_source_dir(), - timeout: testTimeout, - args : [ testFile, '--cycleType', 'Full'], - suite : [ testSuite ]) -endif - -# Special test cases for from-save-state start, since it doesn't work with quickNES -if get_option('onlyOpenSource') == false - testFile = 'saiyuukiWorld.lastHalf.test' - testSuite = testFile.split('.')[0] - testName = testFile.split('.')[1] - test(testName, - quickerNESTester, - workdir : meson.current_source_dir(), - timeout: testTimeout, - args : [ testFile, '--cycleType', 'Full'], - suite : [ testSuite ]) - - testFile = 'microMachines.race20.test' - testSuite = testFile.split('.')[0] - testName = testFile.split('.')[1] - test(testName, - quickerNESTester, - workdir : meson.current_source_dir(), - timeout: testTimeout, - args : [ testFile, '--cycleType', 'Full'], - suite : [ testSuite ]) - - if get_option('enableArkanoidInputs') == true - - testFile = 'arkanoid.arkNESController.test' - testSuite = testFile.split('.')[0] - testName = testFile.split('.')[1] - test(testName, - quickerNESTester, - workdir : meson.current_source_dir(), - timeout: testTimeout, - args : [ testFile, '--cycleType', 'Full'], - suite : [ testSuite ]) - - testFile = 'arkanoid2.arkFamicomController.test' - testSuite = testFile.split('.')[0] - testName = testFile.split('.')[1] - test(testName, - quickerNESTester, - workdir : meson.current_source_dir(), - timeout: testTimeout, - args : [ testFile, '--cycleType', 'Full'], - suite : [ testSuite ]) - - endif -endif \ No newline at end of file diff --git a/quicknes/tests/metroid.playaround.sol b/quicknes/tests/metroid.playaround.sol deleted file mode 100644 index cf1802422f0..00000000000 --- a/quicknes/tests/metroid.playaround.sol +++ /dev/null @@ -1,1729 +0,0 @@ -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|....S...| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L....A| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..LR....| -|..|..L.....| -|..|..LR....| -|..|..L.....| -|..|..LR....| -|..|..L.....| -|..|..LR....| -|..|..L.....| -|..|..LR..B.| -|..|..L...B.| -|..|..LR..B.| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|..L.....| -|..|........| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|.D......| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|U..R....| -|..|U..R..B.| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R....| -|..|U..R..B.| -|..|U..R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R...A| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R..B.| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|U..R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|..L.....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|...R....| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| -|..|........| \ No newline at end of file diff --git a/quicknes/tests/metroid.playaround.test b/quicknes/tests/metroid.playaround.test deleted file mode 100644 index 556996dd8e8..00000000000 --- a/quicknes/tests/metroid.playaround.test +++ /dev/null @@ -1,15 +0,0 @@ -{ - "Rom File": "roms/Metroid (U) (PRG0) [!].nes", - "Expected ROM SHA1": "ECF39EC5A33E6A6F832F03E8FFC61C5D53F4F90B", - "Initial State File": "", - "Sequence File": "metroid.playaround.sol", - "Disable State Blocks": [ "CHRR", "NTAB", "SPRT", "CTRL" ], - "Controller 1 Type": "Joypad", - "Controller 2 Type": "None", - "Differential Compression": - { - "Enabled": false, - "Max Differences": 2200, - "Use Zlib": true - } -} diff --git a/quicknes/tests/microMachines.race20.sol b/quicknes/tests/microMachines.race20.sol deleted file mode 100644 index f7cb83b2b70..00000000000 --- a/quicknes/tests/microMachines.race20.sol +++ /dev/null @@ -1,1802 +0,0 @@ -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|..L....A| -|..|.......A| -|..|..L.....| -|..|.......A| -|..|...R...A| -|..|.......A| -|..|...R....| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| -|..|.......A| diff --git a/quicknes/tests/microMachines.race20.state b/quicknes/tests/microMachines.race20.state deleted file mode 100644 index 99ceb741c4da2fc1ff2e422cb19862c206d11ad7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 22946 zcmeHvZFm#cmGB*nq>-#IgZVJTSTZC)fX3!yK_

g1e9>Zk;9&lBQXlgp%|rZJfpl zPLMqUj73`qlfctJ!8U1Vl84=WA!Rqg%ZFr4G20MK+6{PH8p)Vok`PPAV9Ay=_dVy% zj1V7b-}n9Z?xRCy&bjB@d*|G9&pqeP=sG$=$ew#S@`pbREdr8k9OH-kjJu}aC6MgA z5f;bPX%@$nF&2k|Scqjr9LM-E_LCKLfJ#YFLs69;l{C~hjNiPRQ1~#%OgK#Yx zU}R{3^D(bb;yGZ5oKkVow~+7T>>%X(I<1cAj7D4dWLB8tM(^1Fuc*Pu|7Ei;`PEnT1~Tp~<6B1K zbQm6S+-VYWOeVcuFbQUpQLypQQMy?=Ew=ZOjru7tKB6UojDS{~(ls#v z8^@eFZYU-JRg%GxSwOh5htwh&q*n%bo;&}x_6H?kVqVW>&jJ-e&g~;ae1r7)fgZZJ zZhhSbjuS|RR+FV6<`0M_i;!v43_~1B>b)C(4&(a8X(MQ0CMIYyos2#@h5T`no@uqB zijaxGwZZiK-vFmh@ZW4SbBZuCcA-GuoGYBzU9@}n?XI_v@A|{*|LGlWj&^BCq>JMs z^h?1?ujoh8D_Xb&xO5}wm)Z>a1zeZl>V=E9RZ*SIO$A#W)dH;t+5of>=nR{CiOF2I zB*W}pVl-Ek8O(KMdb7JsYpyC4%yp$Yv%8cxS5=uTyQ?xRJFASAt*Z={-K+GLovXB# ztt$k}?iD)A&K106>k^Z7_mT|j&Lu|c)-r>2cbVS0vrKE^OsIZL=GoaEVFTVJQ2>=yXIBDS|9RSkb z#7CLMY=Urdqf>dBJmT2)( z`5$l}umxluVX>(f$sidSHd9h}weIb3F3DwV4Y)#5-w@r4K>K9V0+xZ<8_BrBkdaLR zO8Zz}(2(I_DlrVT{w9XzOn&{w1AJ5I&O1gLsfO3;^n!tAn9LTdEpr6T8Z~;%*z9rR zY0iXPyCZMnBzo86DO2yBHhl)YC%<6ktl4w^VeUL<;rx4x7JxE>UMuLpj#^c9n^gsi z3T73qE0UzFBLOl1s@!$*e_MC%zUjZDDB0>dF>1o(e5W&i@`M#DR;*gJs;a80w6wIW ztZd1WCAV^}H%n4qUIF;>i%Y${PSENN#thTnAd;<8h&ngK-&9}$fG3#LWN4k~Y1+xR zPFdU3#J5gZ*VN3nX02~(;aiP$O}qG3TG#Xz-+FCB({K3Juj-rL=3BeHO}qKlvm2X! z%eQ{~^QL$B*7jdCz00?@{u29nwgLMY{TlYu{u=i4!Y1s;-iZBt+=%_G*^K?%{W|OC zb?j%u8`#h6E!a<4J*2WaSrC)kgk$9|wD^aFR$r>P11`E4`y1NGnK zi5mYg7Gg}q*oZL_V?jath`amSZ5-V9sH= z2XtV$2y+tX#&Q(qD$H4!yD*1gF2kJ0avSD2$aOGgUZ*u`bs2c+&Bjz(kokJvs5P1O zya_@h)=Sa`MrVAtteltY7(uSTPFomlE-QbCXI*8i$L}eaWxQQ`)EU};KmUo@`rGM`I)i>_0+8RTKQssZm;hESj6<%3D_EwX z%*KcM%Q7}g+HvEtGb6MBIg^->hJRSglp)BpnjT@^jLfu53ba9)D^MEj!;B6slM|q| z$TaE={iDfENMqlOHfZ%@g)vAoJ#O(Ii`JNJ7>$#TEpGK60r(cPUiO&@_Pj~v8yp0~ zI9{ljp3ikmywhxwX{JDiPIj-P%HTJq6!p#eoI6xsLe;c-?alTVnE%{pbI?h)@eTGz zJL4!7nL>mAEA~&?93`s#jTT1VVDpp#n011@R#KEs4hD758`xajVDnV_8^Hizie&2j zf6UTaL0-_$mR{#kjhKNCPAK7TtlgRm4`|vt|66|ieX7_#}2+>d?hHy*~K-K+D@StqFh-+$z+&PZ=tF` z#;p{-N-k9O$EjDDDR?2+Ke_Hx_$s+jn{!9f?^I?AUdS7T0LO*VNGH;~vRT}(HS+=*eKlwZMCt3qr_hsLKF{pi}V%`F= z7INVC;4!IumDUOnYcU6c530OWoM8a#vK(k;ZzriTq|MO3k^|YB%*}GxWwQ`~+j9ii zWi$NuZm`w;dsWi%v<1=@NLwInfwTqE7Wf}(fm`6+Y?!rTt_S_S;WoitLiPrm%e*NKIn*X!=HOEGf&0Ix&Um_lhbzEL|&wmke z-m|#3;njG;*Yd;O2E$^mF8isl?d6D%hU{UXfMgTST<<*pyeI`4>z#xYz^@>iimu^~ z%f5*`1=ivCi`C&Lil?6u^rVE-IQ#_1(d_WQFOP?C^@V<&{ab?pC=)Y`^W}Jd&oQu{ zJ|}OXw(x#!z4P~W`@C}tP@W0$51jFYw9n7219}YcfL%_1AzeE65Ab|WPyF1GqR(9R zd2QUfseUpF>WFmvFE(u0;3fWx*Wg2V)a&)uH3md68jZ#%6-Ag`C(bY^+ktb7^ccCU ze$`F{QJ{R}h97(Oe~6V7h|yS2JAhzwF%Hr_st~Yj@AETcdrz_{_MRo%yDb^R9E!z64=LH8*Oq!{BHk+wU8EWfKmMI} z9w$^xKo1E@JQ`lJPQ%eyAo2O9@I3A0hsRGF26@2cq9Ks)^80sfMtx#m$9h2@hi=TM zY$zvUFfCBl=<4d$6Cag^V*|%&Ny+0&zg>1%OX=#ffl0A)Lbk0cI9GZ|Qb2w8J8|VI z3|FEmmdE=iWxSUub%~w6{EpX?m{o{Hm_0bbOcO(~kS`JAZFX^>Lx7i*cp^bRq(l(( zdMk|W+K(eX-vVj}Jv;syqt7(jpAQ^y4?PWW#=n-=*PrX&GUJtDw?2n^=49)uZoLvu zR6OwcM{njY_lcHqv!Cq*KcZ4}Fdhv1Q?R6z8Q%ZrHx^N^WN+E=~pOvh3ygK9Q;z+C%(o<5eu!?5^6x@HNDu zl!zg}HX5fYmii9;;D9?Gmp(grs5%~x*H4&q+%o>(e&o%)^FOnubhdb1or2|#4}JpJ zlr_0?$DiIU2dhbOupEFC|LSZg;1i`GSdXBEG$cj+YcYOb$H6v;e^8cjePO$P++BXo zJO7w*?8J61?xk)Vi*B|ir zOSA#vC*d@e;g3aknB@~+T*k~UdF?_Hvv>ey1#ikJ9OymOQru`ShK1kV_Q^dks(6Ed z7-0dtW``1iui9s3W)}QryeqzfM z@F+SgJCH2j<(Geb1}yto@+ZdlV7!~{HKEq zJd0&RcEMCE%i)-l?FW20E=#Np){~CN|GL}S+VDbuL#S5ZngZ$%pq=dFPe}UoY5QuHIf3ifDDU+}pKlLwIh7TCEa#2!-cO zvfJ&dzLL^jRN9NOJU1@4mg4hRKaps;*8{N8OJk9%2p(@E1Gfn zHN(HmJYyi#Cr0*s8l$9S*NLUmv?zD&elQe*$?-q&Z<(2}Is#t;lXw>IS`NoaB=bNl z0iX{j;^^B*BglR(mxl*%n*=+w#DMUg0;?6kNk?G1!|lEIcKJLaA*)xTap5^2!sVsP zX(aSv0K%9fyP#~UBh!pO>m#UgDLxd74-LmvJTxq^e6M0?9}CgY*-?hfIhmQ6Q?Z>0 z|4;`{NiZz;6YIw^#|yS7?3elnuEtdy4uyN8-9498d@&mAmV*8^6@PO6Lfg@kpIlKf zs5Y#T?aaFFY1kHQtKZhGVnQSPTVR+lUx5(RPzIVDul|6)doUU&_0eEI#(c7L4>Jg* zOIdBQWDk)v!!Uj<3v}a^3zzz1aY@CHM!Sv4P^)!c&<)p@+SK>RLxn2*!65VwhR)5k84PgP3OW@8 za0{BKxucf^?UtSvh>v#SF9`-KO2Ah^d7Kvjc(m-BSb#AIx(W7T6&y4*XvaOWm&wkKGbZN7LO_qVvcjeq@Dd$If6fl7Qo2aP-n z?;2^;!q%uL*Ty1*^!1L~TDLR&=0CYnPGF{P1K_s`ED&j{&%5Zy8e5L&ezkA{;cTwe ztGc?;bg0l!;-6~iAeB01zrTH_<*6yeUvOZfcJK=Lksr(xALyPie(t$Lm9UmUA;0Ha zbH*9X;6I>_fT!5#hw*3>^wx% zPvZI^yv^l`CZ3d}kQC_1+TS`ZyZagF@${t&+E+o0{u3YW?|;DNl5$z{j7Nia=Vgr@ z2dmd^x7l#fNaD$G*iXm=c%y_HmDYv>y1uXmk({_rk}+Xgq5uk$B3K3#kT!T|Bxne@ea`M6l<> z*IMFkNw6uR%sPY=D+&css6esU?2}1R-0sD*iQetCH7`|Fy;Q^W6lf)t<&8AzK9@+G zb4P_O`)AMIzXcCS6F>NkEDuNLYOV|qU(w737DCk5EHc}RqFe*IVr^)nT!t!sq@rvF zWFCe@g<|WH1qzh`I1GbTix`Ap;MZGow%mK?u6iEi9C-W$G^g|BK8Q<%;0k#E?N{QT z)kY+7xp&gc?VE7j_=5%6Cs7Vm`1qL*3RZO;sDw}f`#isA=6E<40=2A4exzUj`sJUV zi;`cV|2tSKxCt1)8Q8~;9-EbwHHJ5tj1bF}->AKc{Ro+f*)$Q4o(k|#ElU}vC#W=s zDK(t9bi(i$cpE|xUU^j!!?UTEVOe3Yg)*;dC7lJrJt)j;AXKW%aP@OC>EC=#8X6vY zss7JSgMRFkM$rZ99=1^x6)1;*>j{c>bYo)2TN2cK2}V^QDMCWxl<`UH=)sz^HH9Mz z$?<2^ z$JC73R8||f@gqu=E^$H8k~Isy*L&zxXJg&)k!)F&lnxwKuR65Zgk;Zm*Wy!aXATWj zYUVhdwY9a>Z78|=LSkgU@Q~v+J*Bf(_eweLzKa{5eoIT9%hR5^*e#GBJ#S{3 zz(!ft2x73+2H}+FU|2XRnH@a@eu2>SncIExwV%gZK5A(cG@Z5ZcCJKul!mo~>4{t^JcKWX=* ziLnEK_PC4{Bp2XV4I=;>G-f!$t>LY}K?NA!Gr5~#|8aqx^XAsCX9AAb%kJc1V!S2S zjKZ0zIM2!wnNdP2*jS~e9_I7B9p2R|3mi1wV~?Ib9h}I+$!YMA^F5!}!*+>}O4PS# zc6K%ux}!CaBeXo{@nlzrSvJjn?lko3sjRMcLKtftYvR`nLXa&zd^u!I=m52&96y?M^bWiz`U3f5g{&+vI;LG>ibWV^ zZUf;|#qL)Mp%whq%VH-H0ayWUNCS|fCQn5{j)l`Uc$zzVt|Zqtd*c9&91Z!fmw?Yf zWNNz^RPB_=n92XF$LJ*!`fsBW&-@mdJ-@ByZZ5|1B zJuhCSUUzZOH$c~%U!Ur`JeVL|m#Mr^-#Nz^>-&jB zKl?Ov6~0o#*{v|sXVu`7iavd_JMX!AbZ*(5U;B^4hhM+1nEb2;!YAl6 zHa1rL*Oy1yE(xK~YKw(*(u0A(;aPpf4ad%3JarN>yVW4BUR;1LEW`+v$Me#A-orBkZ9jeYU6+Xqd6SL7wF4jzhmT+DCfPYGX64MUd1aXk$~i3CkeJO50Teodbt=FKHh=g)SJysR2_AnCdbtIh)et-Y zNM-?i9?2y5n*&~?V6h?7QH^D{8(2`zG{7*Rei+11-%;{VbtZxR7ZgEWT~dj1w_0|V zR4#@x$cn0~D=SI0Av4qAVEwcD1&a$%j?aQ8VE>Dq2Bj=NZ!yYAPEHQH*dNUqNYVXo zHMTS^fjTkV`UFl86?@wPw)G7piWRL&LKPFq$(j4lIZ24|)!yBEzk9#UKji%L z&;OWz{&}34Nob1@vLzz4>!w@UE(D>^qiHA+%i)0(aeWnv_&zd4d~cbebBGMZcUE{l zG8Bg*SM6K15A|D{(ibJ8?I=UUpePYSQiYP}ng@tPC#V|VD0_0YB-w?4k@@okc&ZQ9JesgB9ocBQDIr$Ub;aT1Y8 zWLh4YweqdESFH|Tlb!QUhj%-z>%87$;a4E_q=yTMLU|cUTd_>Y1*k|fpn-{~gjvo^ zW<0zQ(q`z65E`Ky5DW+3&5Zja&`|lc9RCR3r-T z_*L65l?00qF||;DMBQ%v1BE^!7K<9wcc-`VZb*d1j}<;$ z=qX6w;pIFK4_w(kXpBsvf^^{6;b3@PyN-Eu$D@7|(rP91y30nKIRGObF7Qrw=DEIE>oAsR{ z-pxg55)KJjH%Ngt@0QEf$FxVsMDmc0(g-BB6YO1%@8{KBy+S4m~Ob)M}|7Fn2$lH$}gT9Pj zGCk(|E9dpHzx1dsy2hR6s`a6-_NYGoeSK54UbHUe8@*(1%!!ki_0mN#7f;u_^^b^p zTsXy@7^k(Pr0pbz5GaQz56tGde1x8k?*0%P&qwP+ zNA+;jU8vzIM?OU?JZL@scUb@LjN)&n*1f-MxsY-eJi zrC@c=e0$Z0A0d9mkn*LOckBDh-%H=0@6kV7?__b>L;z!mfzL@B5_uEt6tNxvZh^$<^{L;+U@k_=G z8N=SOBhYt_pVpD<9n=2a{HyccoyPqzsV`;vgVW119-P9$ADki-4^GPVB)#&gfbXU{ zbR=o!ECJt5jeLrv*{@AV6mo&osL>?7KIg@WLN1W{*XY0Us(=0dlu+x;S^o9=Q!zbS zlVGEjCb`(2tx2%aN|T&_?+N<;B`MSWdr#2!FL`-}zx01c-@o?-egBfMaR1&H>h~{+ zQ26(|pzmLzZ13Oig1&!AhmNhie(zjsuira&Z>`qSduz3p-q~AsQ+M{(-IRa)@0Gu^ zx9+A|Jdm_8DJkjoq@=_RiHV6b6BD;?-I}-o9>7jK0}tRPz66g?JkZtya2XPWU<85@ z2u2_nfnWrJ5%@QYz(0HDz^0N_N;`3ot^cJ`~+Pi&i5s2;Y&(O9!DZSLZ~w6Ikb<;IL9I2*1ck{LDJfnsDeTltZ~ zI|?~c#skUu(Ig8p1ccH6+A(>@i`!28-0Uo_vn_fuD&iKvU-ulH83C}ilH*$3aMA=F znM6j+;yu%LCJ#OT-DYEH9Z)ywD-IvwfhjKG0jf7MiFz|}!~Fi%6Gx6528qK*N=k@8 zaf!zpVDo0dG9>t7j>x0Lt%-mo?ia-pLQ4|Ac;Rk&qDjOBeWCUvU|)cun1<}=VNVWA zvt9mR?&Rbtf&3?iMQ1k@#Nla^=YDWG)s9nUygD~y{@hn}TCHw?MyCxu`stq1h&{bo zgMnRL%(64)YZMZ=71!zj0gPI!v6}(2EI~B-VDe)FR1qu6Z4Ead9+a-A`t;9N7rEVx z#d7`HO^!>~tf<#0L}*31lhpy{sHiLjYlqgkjTkU#1^&UIA}wmL^*t9MZD>j_t|<<8 zbh)zUY|9f$WqAW>>NkDQH4vF8#pz8Ap<#IO**#afG%GOTmI82K$4CJER+@}I0%ZIV zApK8(^gjWCdw)LfKQw{#hX6qM(E=5~1aYtMaB4aarKJTtWV$kWaJ!fD;NepqeyNA= z^6=f$dHpgh@JksF9}9f9Ti3r|zyAHfJ$utHO?Hf2t|cy)3nO>Pn;Q5Cv1Y&T2!HnaO6DUAOuf>qf2R+{U_{J2{SH_k6tL+|>$9UB#T+BD7Oz zJZTgEAy01}u&XW(rnv~qw044#Wl@--M@l2MrYm@?Qo)*K!b*n&izo`?-%3MW93|Ap znMln6G({IPTmFJEP0caPa$$}WA23#ya$G1kug=)W@fs2sKj5{<&B5%042EGhOMes9G}bkiR+b`7v^IL0cG~D?MvommcA+l)&GZH73k|-I z;;!z0n6s_0u!u3kY;!rR78>JiWmiQm5yn@qUTx=+U>r91sSN{XoeWnDUD8msWk};> z*QVz`9lK_u#qrs^x{{0~=LUb z8ae=i2K~p=A`y?F8UUexp@W6~4WLsOE|@-p(&?X_I%V7ly-t6ta$MF?juroM;E4r? z#H`rEM;<=%@R5g)YDc1h1V+{(ICv)}2GTqezW(ExiLrvPAKlWT#4YmX7P-rpA>H2+ zDttV-{{Wf77P*C&;WIH_EvZ)=;}&Uih+BkPLP%g+6{Lj)3=O3gGqLKi3qfNFTBL=1 zi2NSS9)L;8gCC2}-o*!lf{YLOGJ(4Hq6@j#%=!}x*nclieb{w@+e2@>Bp2-Cyt z6Fvza@19wx&EFmgBawl(EiZCMWgt#?1U${N2p0UFcNl|mkvoL=2yfqC7k@uf_sa%W zaR*H^05k)02SBgK@Mf)99d{AI3SPUTeOJ1G@EJNeh38Y6xYac*%c0u#J8In!M@)Z| zb1*As6{2QL8S&I4*gqVW*Tg7u5I!=r?0nbT*@b&|eVonE6K72S^Mq&h)Xg8aFY9IJ z&`&=ddFgjeM1MB*DCM<;1n}RWS-or}_@7a-rdgCHG=QEy zl{7$4+0za2^kELQS#El2{}Fzj@Vp8I;`%pB{hAJ<-WT&;z<@DT9YBe-hs-l~U)d*-@Vi?IaCdpWkuZ_l4PNZtej z*eb4;fAPt=hx&6rdzn~t>eQ*P=6mhICa(Pb+H)2kz4xQ{zxt@Pe=v63a8!I*;p1bR z>2|vs{AhTEwSvubwQTFwPrvh)SW2LK_hehVbUiN1hc58x*JIl4YPw$IwWMS}Ii&D#!(p>*X}Cc)u{@L%k^S_3mzOSwkzrx>mwRc4 z>4xhzv&BdAv$W)(uYE4sRerAihOfTbS{kBLTkq8`bJ4dQHd~XIwwWxa;RLs@mA0L) z<2WB5!*Jv{w@)8h3+gtXzs!aT3;5t0Z`ZRdCA+R)^YQWDOBtqc=Ps}PQ)TPdf4uc= z7?A>4-l?oSy?(tfUbz0m9spnbOA1O#cJ0{yrB{B%^%{uJ24DLtT#l0m4jk~c7uza+ z*ig)Q#c=@`@Yi>lA=RJpwWp%F*}P-Nj&ojx>shv{!kueM6SYc1uQ-L3Jw4Xvql-}c4Jbh~~HSGn6) z|C#lbm9?8UlS3a5JfEvM@1-s8d|OwSpYMw&^iIP!=MENo`Gu#vIRTToO>#O)$4@bx zUciC#ZODkXR{dv<UoXs2K)H& zDQ2tPYPH+pgsdzm0R6YVw%Dpc-&k5|v#4}BO_WxnQ4f&~=`vV42=w=NRXdcRKd#a3 zu*b`#q}LjqP8K$k2e)dHvoqIBGirw{VezfhR2|f)bqwJr{@QbFBrYGLQeHCJrv zODNaLVp|o&$gf+LI6s8uzR@g|lI6_O=(c{O*#rIE1OQ$GkHSq!C4EVhp7G-7?l7Q7tPxWbgimWU4Ihq~sbwEV z#;wFt>nS5^cgBCatQ6V_?Poa*?MEUR43zF_0Y|F4cj(+XOd1MZ2%RXCsgWIAg~0Rp z>tUGr=F-u&;z4qZjYen!Tz<%)su>0WQveI+yxx0|n&gN-2$@N!SOH&)WQ$Lyr^w|w zEbH7?$-Ow+&L^v8lhI})Cz@60eYkX*n_*csf|Y)|J*@J zPI{yPNTN`ypX{UNu|}uv-=|NX{^|iKIsz~#c=u~AI(e*Noi{IDym-@DDHA#Y;-b(& zr%?iauNb@8@xy28NiUKBU>ead)lSDdc?>^hn)LMS*>M^UlixLgXCfpPNhG0CIhqF> zy2Tn*;QU4rGMS9<-+&Qgh=(6g20#Q%^oX$g^ZP+Nv|#ss`t!h5;{*6@1N;m0=PrJL zKY{!}e**b|{ydBhv==BJ7@xcN0r3sw2l^LCBlPHm9}gUWUU}58{pisN@ggxK^hUf$ z0*P=pmTXNJ1l&vICyg3;O3v(?vvX49DfZm3Tzg7b$G*v9Vxv%)df@bhx+sJqW2e3} zb6^;X)Xtc-LVj%#yw&cs zr^Gp(tB)Q%+Q>Ss22RVBYMfU10Wq5;A-{%CU$)roc1uFTRB{8Myf%^ z+oKk|j8uK6tuT&DC@VYT#y1*_Cewyb%B!$ZJ7nan&4aE-#u;TVM=F(8S+_okYj;fCB8wXOdeir_t%X}A7QVlr zM~Cs&+0{Q!)kUY|_Feq_YmV*_e}gJ7N>=KB3LbJF>6AHn^G-~z!VrSpOO--K z!+e#;*`079ZdL%F<8+wZb;HFN!)&RrHaL-9pAxTDJ7wfG0w6Pt9I4mq4PII*&=eR1 za5~|hkEXL%u7uYLU$S!L%4{fs_oGD7rC;9^m}g;8PwI>g24fkxQU`Y?1QY$J*M7MK z8xA-v=W8qL;5`Fx^~EiVTL_Lf9Nx08VeIqqV~XLhwqWj~F*@q6RXNrny13+*7`ruo zO4fy@{yF30Uuh}DwzQ(0IOpj}tH)^4?2lf)eDh5W(ot~q%U_LjBftFi`VCAUJh8KR zE4bZ=T^3BCw0#DSTeM_J+OeBYoIUaL&&gGz%w{u=Bn6s^PesO_yvHIFn&Y_ZK<8 ztGIrliN*LA=RZo|HXhud`YWnFJB3ZK2n?J0*p2!Z8nSg5E7XNi8E*b~0V~;ME8Jt1 z9NfE?fpxHk91LKqUkK5J9Bi6p5M&WqMcfq)mPPg1P`KfvuQxATGoSRoEL;Wu9VHS= z+ji;FWoZA=<%cdAG=qm`Fs1n;HHIu$iH;hah8ECX{ISX|Uk1I75NtGg3~J$B7Bv)u z8AbFPEN+0|WwGFe%x48faGqS~jIJ1b`Bs(AdFeK%iWu5t>tC2^Yiwkjn&vk({qhU6 z6l0qWHefVUv~SmEG(K;&TA>Vr2La*z$9RQo1-VztaJw^LYdxz1_#trHk^%Qu4_m)= zRI+6Y!{GQuiyUy^wGgxLJ))?tw)Wf&!1imuG&P++UzS!}X8|U4sJH;GsO(nGkV3xB zv9c}h>+Xz<3^wb_gXc!PFgXL9aJ!ds&ph+qdmm+TTywJ$R={Q{?2$AH&C(4C8Yqa= z7!2^vr6PNce6!Qw;S?`}tF+KeO~U@KAFniFC^BNKh3 z5r*4_2ywU0?TpKe?bO{R@c(w=kj~x2@P9p$P`b!&HE0c1x~RH#GH9 zCL4_IYHd94Rhw?AcnzFO;BBuAlOg^KN7z{GQ-x`OZ;n&SAAO?+_SK-J&xKt86v7V} ze;=b$M!+s#r|YLygvsUYJ1ABB@faGWFvlpBIm#G49Et&~=B1fGJ<=xO!^owX4Gzqe zMoOg8wsM6G_9$>pYA1s|iWH96;qY}Y&~U)8%SSHjb@6gFe=sX{+GF(k%Rl~jc(&DS zz6@uCbcw8g^5n@AUyw+D2M3zJEPU>{XU6r4Q7Y!oUqZnFL*abo%>^%CxOvf;_ibf9 zSHsGyl`%2U32+33H#Lo590Va4fnWrJ5eP;g7=d5}f)NNtAQ*vQ1cDI=Mj#l0U<85@ r2u2_nfnWrJ5eP;g7=d5}f)NNtAQ*vQ1cDI=Mj#l0U Date: Wed, 12 Feb 2025 20:52:40 +1000 Subject: [PATCH 62/65] Clean up diff by reverting whitespace changes --- .../movie/interfaces/ITasMovie.cs | 138 +- .../movie/tasproj/TasMovie.Editing.cs | 1 + .../MainForm.Designer.cs | 4108 ++++++++--------- src/BizHawk.Client.EmuHawk/MainForm.cs | 2 - 4 files changed, 2124 insertions(+), 2125 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs index 842c5f64476..3cd2a49e992 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/ITasMovie.cs @@ -1,69 +1,69 @@ -using System.Collections.Generic; -using System.ComponentModel; -using BizHawk.Emulation.Common; - -namespace BizHawk.Client.Common -{ - public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable - { - bool BindMarkersToInput { get; set; } - bool LastPositionStable { get; set; } - - IMovieChangeLog ChangeLog { get; } - IStateManager TasStateManager { get; } - Func InputRollSettingsForSave { get; set; } - string InputRollSettings { get; } - ITasMovieRecord this[int index] { get; } - ITasSession TasSession { get; } - TasMovieMarkerList Markers { get; } - ITasBranchCollection Branches { get; } - TasLagLog LagLog { get; } - IStringLog VerificationLog { get; } - int LastEditedFrame { get; } - - Action GreenzoneInvalidated { get; set; } - - string DisplayValue(int frame, string buttonName); - void FlagChanges(); - void ClearChanges(); - - ///

- /// Replaces the given frame's input with an empty frame - /// - void ClearFrame(int frame); - - void ClearFrameMPR(int frame, int startOffset, int currentControlLength); - - void GreenzoneCurrentFrame(); - void ToggleBoolState(int frame, string buttonName); - void SetAxisState(int frame, string buttonName, int val); - void SetAxisStates(int frame, int count, string buttonName, int val); - void SetBoolState(int frame, string buttonName, bool val); - void SetBoolStates(int frame, int count, string buttonName, bool val); - - void InsertInput(int frame, string inputState); - void InsertInput(int frame, IEnumerable inputLog); - void InsertInput(int frame, IEnumerable inputStates); - void InsertInputMPR(int frame, IEnumerable inputLog, int startOffset, int currentControlLength); - void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLength, int count = 1); - void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlLength, int count = 1); - void InsertEmptyFrame(int frame, int count = 1); - - int CopyOverInput(int frame, IEnumerable inputStates); - int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength); - int CopyOverDestInputMPR(int frame, IEnumerable frames, int startOffset, int currentControlLength, int sourceStartOffset); - - void RemoveFrame(int frame); - void RemoveFrames(ICollection frames); - void RemoveFrames(int removeStart, int removeUpTo); - void RemoveFramesMPR(ICollection frames, int startOffset, int currentControlLength); - - void TruncateFramesMPR(int frame, int startOffset, int currentControlLength); - - void SetFrame(int frame, string source); - - void LoadBranch(TasBranch branch); - - void CopyVerificationLog(IEnumerable log); - } -} +using System.Collections.Generic; +using System.ComponentModel; +using BizHawk.Emulation.Common; + +namespace BizHawk.Client.Common +{ + public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable + { + bool BindMarkersToInput { get; set; } + bool LastPositionStable { get; set; } + + IMovieChangeLog ChangeLog { get; } + IStateManager TasStateManager { get; } + Func InputRollSettingsForSave { get; set; } + string InputRollSettings { get; } + ITasMovieRecord this[int index] { get; } + ITasSession TasSession { get; } + TasMovieMarkerList Markers { get; } + ITasBranchCollection Branches { get; } + TasLagLog LagLog { get; } + IStringLog VerificationLog { get; } + int LastEditedFrame { get; } + + Action GreenzoneInvalidated { get; set; } + + string DisplayValue(int frame, string buttonName); + void FlagChanges(); + void ClearChanges(); + + /// + /// Replaces the given frame's input with an empty frame + /// + void ClearFrame(int frame); + + void ClearFrameMPR(int frame, int startOffset, int currentControlLength); + + void GreenzoneCurrentFrame(); + void ToggleBoolState(int frame, string buttonName); + void SetAxisState(int frame, string buttonName, int val); + void SetAxisStates(int frame, int count, string buttonName, int val); + void SetBoolState(int frame, string buttonName, bool val); + void SetBoolStates(int frame, int count, string buttonName, bool val); + + void InsertInput(int frame, string inputState); + void InsertInput(int frame, IEnumerable inputLog); + void InsertInput(int frame, IEnumerable inputStates); + void InsertInputMPR(int frame, IEnumerable inputLog, int startOffset, int currentControlLength); + void InsertEmptyFrameMPR(int frame, int startOffset, int currentControlLength, int count = 1); + void InsertEmptyFramesMPR(int frame, int startOffset, int currentControlLength, int count = 1); + void InsertEmptyFrame(int frame, int count = 1); + + int CopyOverInput(int frame, IEnumerable inputStates); + int CopyOverInputMPR(int frame, IEnumerable inputStates, int startOffset, int currentControlLength); + int CopyOverDestInputMPR(int frame, IEnumerable frames, int startOffset, int currentControlLength, int sourceStartOffset); + + void RemoveFrame(int frame); + void RemoveFrames(ICollection frames); + void RemoveFrames(int removeStart, int removeUpTo); + void RemoveFramesMPR(ICollection frames, int startOffset, int currentControlLength); + + void TruncateFramesMPR(int frame, int startOffset, int currentControlLength); + + void SetFrame(int frame, string source); + + void LoadBranch(TasBranch branch); + + void CopyVerificationLog(IEnumerable log); + } +} diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index 4578aecf991..55939ac2c52 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using System.Linq; + using BizHawk.Common.CollectionExtensions; using BizHawk.Emulation.Common; diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs b/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs index 6dfa9f6cc77..4af5251a686 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs @@ -17,374 +17,374 @@ partial class MainForm ///
private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - this.MainformMenu = new BizHawk.WinForms.Controls.MenuStripEx(); - this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.OpenRomMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RecentRomSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.OpenAdvancedMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CloseRomMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SaveStateSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveState0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator6 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SaveNamedStateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator24 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.AutosaveLastSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadStateSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadState0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator7 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.LoadNamedStateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator21 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.AutoloadLastSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveSlotSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SelectSlot0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PreviousSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NextSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SaveToCurrentSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadCurrentSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveRAMSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.FlushSaveRAMMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.MovieSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ReadonlyMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator15 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.RecentMovieSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator16 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.RecordMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PlayMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StopMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PlayFromBeginningMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveMovieAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StopMovieWithoutSavingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator25 = new System.Windows.Forms.ToolStripSeparator(); - this.ImportMoviesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator14 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.AutomaticallyBackupMoviesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.FullMovieLoadstatesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MovieEndSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MovieEndFinishMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MovieEndRecordMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MovieEndStopMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MovieEndPauseMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AVSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RecordAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ConfigAndRecordAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StopAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator19 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.CaptureOSDMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CaptureLuaMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SynclessRecordingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ScreenshotSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ScreenshotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ScreenshotAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ScreenshotClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ScreenshotClientClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator20 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.ScreenshotCaptureOSDMenuItem1 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.EmulationSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PauseMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RebootCoreMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SoftResetMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HardResetMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.EmulatorMenuSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.LoadedCoreNameMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ViewSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.WindowSizeSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator26 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.DisableResizeWithFramebufferMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SwitchToFullscreenMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.DisplayFPSMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplayFrameCounterMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplayLagCounterMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplayInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplayRerecordCountMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplaySubtitlesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.DisplayStatusBarMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplayMessagesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator8 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.DisplayLogWindowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ConfigSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ControllersMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HotkeysMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DisplayConfigMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SoundMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PathsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.FirmwareMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MessagesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AutofireMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RewindOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.extensionsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ClientOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ProfilesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator9 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SpeedSkipSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ClockThrottleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AudioThrottleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VsyncThrottleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator27 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.VsyncEnabledMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.miUnthrottled = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MinimizeSkippingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NeverSkipMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem17 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Frameskip9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.Speed50MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Speed75MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Speed100MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Speed150MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Speed200MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Speed400MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.KeyPrioritySubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.BothHkAndControllerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.InputOverHkMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HkOverInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CoresSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator10 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SaveConfigMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveConfigAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadConfigMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadConfigFromMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ToolsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ToolBoxMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator12 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.RamWatchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RamSearchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LuaConsoleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.TAStudioMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.TAStudioMPRToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.HexEditorMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.TraceLoggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.DebuggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CodeDataLoggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MacroToolMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VirtualPadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.BasicBotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator11 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.CheatsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GameSharkConverterMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator29 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.MultiDiskBundlerFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.BatchRunnerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ExternalToolMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.dummyExternalTool = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RetroAchievementsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StartRetroAchievementsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NESSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NESPPUViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NESNametableViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MusicRipperMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator17 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.NesControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NESGraphicSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.NESSoundChannelsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VSSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MovieSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator22 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.FDSControlsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.FdsEjectDiskMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VSControlsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VSInsertCoinP1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VSInsertCoinP2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.VSServiceSwitchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.BarcodeReaderMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.TI83SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.KeypadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadTIFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator13 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.paletteToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.A7800SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.A7800ControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.A7800FilterSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GBSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GBcoreSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SameBoyColorChooserMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator28 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.GBGPUViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GBPrinterViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PSXSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PSXControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PSXOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PSXDiscControlsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PSXHashDiscsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SNESSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SNESControllerConfigurationMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator18 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.SnesGfxDebuggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SnesOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ColecoSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ColecoControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator35 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.ColecoSkipBiosMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ColecoUseSGMMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.N64SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.N64PluginSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.N64ControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator23 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.N64CircularAnalogRangeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MupenStyleLagMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.N64ExpansionSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Ares64SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Ares64SettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.Ares64CircularAnalogRangeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GBLSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GBLsettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AppleSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AppleDisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator31 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.settingsToolStripMenuItem1 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.C64SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.C64DisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator36 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.C64SettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.IntvSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.IntVControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.zXSpectrumToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumCoreEmulationSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumControllerConfigurationMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumAudioSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumNonSyncSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumMediaMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumTapesSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.zxt1ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumDisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.zxt2ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ZXSpectrumExportSnapshotMenuItemMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.GenericCoreSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.amstradCPCToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.amstradCPCCoreEmulationSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AmstradCPCAudioSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AmstradCPCNonSyncSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AmstradCPCMediaToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AmstradCPCTapesSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.cpct1ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AmstradCPCDisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.cpcd1ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.HelpSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.OnlineHelpMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ForumsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.FeaturesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AboutMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.A7800HawkCoreMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.MainStatusBar = new BizHawk.WinForms.Controls.StatusStripEx(); - this.DumpStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); - this.EmuStatus = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.PlayRecordStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); - this.PauseStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); - this.RebootStatusBarIcon = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.AVStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.LedLightStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.SaveSlotsStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot1StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot2StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot3StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot4StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot5StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot6StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot7StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot8StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot9StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.Slot0StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.CheatStatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.KeyPriorityStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.CoreNameStatusBarButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.ProfileFirstBootLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.LinkConnectStatusBarButton = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.UpdateNotification = new BizHawk.WinForms.Controls.StatusLabelEx(); - this.MainFormContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); - this.OpenRomContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadLastRomContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StopAVContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ContextSeparator_AfterROM = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.RecordMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.PlayMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.RestartMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StopMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.LoadLastMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.BackupMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.StopNoSaveContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ViewSubtitlesContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.AddSubtitleContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ViewCommentsContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.SaveMovieAsContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ContextSeparator_AfterMovie = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.UndoSavestateContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ContextSeparator_AfterUndo = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.ConfigContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem6 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem7 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem8 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem9 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem10 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem11 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem12 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem13 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem14 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem15 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.customizeToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator30 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.toolStripMenuItem66 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripMenuItem67 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ScreenshotContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.CloseRomContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ClearSRAMContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.ShowMenuContextMenuSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); - this.ShowMenuContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.timerMouseIdle = new System.Windows.Forms.Timer(this.components); - this.MainformMenu.SuspendLayout(); - this.MainStatusBar.SuspendLayout(); - this.MainFormContextMenu.SuspendLayout(); - this.SuspendLayout(); - // - // MainformMenu - // - this.MainformMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.components = new System.ComponentModel.Container(); + this.MainformMenu = new BizHawk.WinForms.Controls.MenuStripEx(); + this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.OpenRomMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RecentRomSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.OpenAdvancedMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CloseRomMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SaveStateSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveState0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator6 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SaveNamedStateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator24 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.AutosaveLastSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadStateSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadState0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator7 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.LoadNamedStateMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator21 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.AutoloadLastSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveSlotSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SelectSlot0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PreviousSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NextSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SaveToCurrentSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadCurrentSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveRAMSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.FlushSaveRAMMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.MovieSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ReadonlyMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator15 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.RecentMovieSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator16 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.RecordMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PlayMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StopMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PlayFromBeginningMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveMovieAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StopMovieWithoutSavingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator25 = new System.Windows.Forms.ToolStripSeparator(); + this.ImportMoviesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator14 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.AutomaticallyBackupMoviesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.FullMovieLoadstatesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MovieEndSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MovieEndFinishMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MovieEndRecordMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MovieEndStopMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MovieEndPauseMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AVSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RecordAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ConfigAndRecordAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StopAVMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator19 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.CaptureOSDMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CaptureLuaMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SynclessRecordingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ScreenshotSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ScreenshotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ScreenshotAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ScreenshotClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ScreenshotClientClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator20 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ScreenshotCaptureOSDMenuItem1 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.EmulationSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PauseMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RebootCoreMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SoftResetMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HardResetMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.EmulatorMenuSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.LoadedCoreNameMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ViewSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.WindowSizeSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator26 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DisableResizeWithFramebufferMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SwitchToFullscreenMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DisplayFPSMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplayFrameCounterMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplayLagCounterMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplayInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplayRerecordCountMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplaySubtitlesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DisplayStatusBarMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplayMessagesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator8 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.DisplayLogWindowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ConfigSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ControllersMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HotkeysMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DisplayConfigMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SoundMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PathsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.FirmwareMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MessagesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AutofireMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RewindOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.extensionsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ClientOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ProfilesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator9 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SpeedSkipSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ClockThrottleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AudioThrottleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VsyncThrottleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator27 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.VsyncEnabledMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.miUnthrottled = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MinimizeSkippingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NeverSkipMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem17 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip8MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Frameskip9MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.Speed50MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Speed75MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Speed100MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Speed150MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Speed200MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Speed400MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.KeyPrioritySubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BothHkAndControllerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.InputOverHkMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HkOverInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CoresSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator10 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SaveConfigMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveConfigAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadConfigMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadConfigFromMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ToolsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ToolBoxMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator12 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.RamWatchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RamSearchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LuaConsoleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.TAStudioMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.TAStudioMPRToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.HexEditorMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.TraceLoggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.DebuggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CodeDataLoggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MacroToolMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VirtualPadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BasicBotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator11 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.CheatsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GameSharkConverterMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator29 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.MultiDiskBundlerFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BatchRunnerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ExternalToolMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.dummyExternalTool = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RetroAchievementsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StartRetroAchievementsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NESSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NESPPUViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NESNametableViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MusicRipperMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator17 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.NesControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NESGraphicSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.NESSoundChannelsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VSSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MovieSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator22 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.FDSControlsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.FdsEjectDiskMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VSControlsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VSInsertCoinP1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VSInsertCoinP2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.VSServiceSwitchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BarcodeReaderMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.TI83SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.KeypadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadTIFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator13 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.paletteToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.A7800SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.A7800ControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.A7800FilterSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GBSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GBcoreSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SameBoyColorChooserMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator28 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.GBGPUViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GBPrinterViewerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PSXSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PSXControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PSXOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PSXDiscControlsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PSXHashDiscsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SNESSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SNESControllerConfigurationMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator18 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.SnesGfxDebuggerMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SnesOptionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ColecoSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ColecoControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator35 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ColecoSkipBiosMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ColecoUseSGMMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.N64SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.N64PluginSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.N64ControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator23 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.N64CircularAnalogRangeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MupenStyleLagMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.N64ExpansionSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Ares64SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Ares64SettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.Ares64CircularAnalogRangeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GBLSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GBLsettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AppleSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AppleDisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator31 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.settingsToolStripMenuItem1 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.C64SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.C64DisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator36 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.C64SettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.IntvSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.IntVControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.zXSpectrumToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumCoreEmulationSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumControllerConfigurationMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumAudioSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumNonSyncSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumMediaMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumTapesSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.zxt1ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumDisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.zxt2ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ZXSpectrumExportSnapshotMenuItemMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.GenericCoreSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.amstradCPCToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.amstradCPCCoreEmulationSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AmstradCPCAudioSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AmstradCPCNonSyncSettingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AmstradCPCMediaToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AmstradCPCTapesSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.cpct1ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AmstradCPCDisksSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.cpcd1ToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.HelpSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.OnlineHelpMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ForumsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.FeaturesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AboutMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.A7800HawkCoreMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.MainStatusBar = new BizHawk.WinForms.Controls.StatusStripEx(); + this.DumpStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); + this.EmuStatus = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.PlayRecordStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); + this.PauseStatusButton = new System.Windows.Forms.ToolStripDropDownButton(); + this.RebootStatusBarIcon = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.AVStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.LedLightStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.SaveSlotsStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot1StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot2StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot3StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot4StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot5StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot6StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot7StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot8StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot9StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.Slot0StatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.CheatStatusButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.KeyPriorityStatusLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.CoreNameStatusBarButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.ProfileFirstBootLabel = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.LinkConnectStatusBarButton = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.UpdateNotification = new BizHawk.WinForms.Controls.StatusLabelEx(); + this.MainFormContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); + this.OpenRomContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadLastRomContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StopAVContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ContextSeparator_AfterROM = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.RecordMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.PlayMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.RestartMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StopMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.LoadLastMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.BackupMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.StopNoSaveContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ViewSubtitlesContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.AddSubtitleContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ViewCommentsContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveMovieContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.SaveMovieAsContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ContextSeparator_AfterMovie = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.UndoSavestateContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ContextSeparator_AfterUndo = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ConfigContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem6 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem7 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem8 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem9 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem10 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem11 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem12 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem13 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem14 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem15 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.customizeToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripSeparator30 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.toolStripMenuItem66 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.toolStripMenuItem67 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ScreenshotContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.CloseRomContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ClearSRAMContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ShowMenuContextMenuSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); + this.ShowMenuContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.timerMouseIdle = new System.Windows.Forms.Timer(this.components); + this.MainformMenu.SuspendLayout(); + this.MainStatusBar.SuspendLayout(); + this.MainFormContextMenu.SuspendLayout(); + this.SuspendLayout(); + // + // MainformMenu + // + this.MainformMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileSubMenu, this.EmulationSubMenu, this.ViewSubMenu, @@ -407,14 +407,14 @@ private void InitializeComponent() this.GenericCoreSubMenu, this.amstradCPCToolStripMenuItem, this.HelpSubMenu}); - this.MainformMenu.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow; - this.MainformMenu.TabIndex = 0; - this.MainformMenu.MenuActivate += new System.EventHandler(this.MainformMenu_MenuActivate); - this.MainformMenu.MenuDeactivate += new System.EventHandler(this.MainformMenu_MenuDeactivate); - // - // FileSubMenu - // - this.FileSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MainformMenu.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow; + this.MainformMenu.TabIndex = 0; + this.MainformMenu.MenuActivate += new System.EventHandler(this.MainformMenu_MenuActivate); + this.MainformMenu.MenuDeactivate += new System.EventHandler(this.MainformMenu_MenuDeactivate); + // + // FileSubMenu + // + this.FileSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.OpenRomMenuItem, this.RecentRomSubMenu, this.OpenAdvancedMenuItem, @@ -430,34 +430,34 @@ private void InitializeComponent() this.ScreenshotSubMenu, this.toolStripSeparator4, this.ExitMenuItem}); - this.FileSubMenu.Text = "&File"; - this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened); - // - // OpenRomMenuItem - // - this.OpenRomMenuItem.Text = "&Open ROM..."; - this.OpenRomMenuItem.Click += new System.EventHandler(this.OpenRomMenuItem_Click); - // - // RecentRomSubMenu - // - this.RecentRomSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.FileSubMenu.Text = "&File"; + this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened); + // + // OpenRomMenuItem + // + this.OpenRomMenuItem.Text = "&Open ROM..."; + this.OpenRomMenuItem.Click += new System.EventHandler(this.OpenRomMenuItem_Click); + // + // RecentRomSubMenu + // + this.RecentRomSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator3}); - this.RecentRomSubMenu.Text = "&Recent ROM"; - this.RecentRomSubMenu.DropDownOpened += new System.EventHandler(this.RecentRomMenuItem_DropDownOpened); - // - // OpenAdvancedMenuItem - // - this.OpenAdvancedMenuItem.Text = "Open Ad&vanced..."; - this.OpenAdvancedMenuItem.Click += new System.EventHandler(this.OpenAdvancedMenuItem_Click); - // - // CloseRomMenuItem - // - this.CloseRomMenuItem.Text = "&Close ROM"; - this.CloseRomMenuItem.Click += new System.EventHandler(this.CloseRomMenuItem_Click); - // - // SaveStateSubMenu - // - this.SaveStateSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.RecentRomSubMenu.Text = "&Recent ROM"; + this.RecentRomSubMenu.DropDownOpened += new System.EventHandler(this.RecentRomMenuItem_DropDownOpened); + // + // OpenAdvancedMenuItem + // + this.OpenAdvancedMenuItem.Text = "Open Ad&vanced..."; + this.OpenAdvancedMenuItem.Click += new System.EventHandler(this.OpenAdvancedMenuItem_Click); + // + // CloseRomMenuItem + // + this.CloseRomMenuItem.Text = "&Close ROM"; + this.CloseRomMenuItem.Click += new System.EventHandler(this.CloseRomMenuItem_Click); + // + // SaveStateSubMenu + // + this.SaveStateSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SaveState1MenuItem, this.SaveState2MenuItem, this.SaveState3MenuItem, @@ -472,72 +472,72 @@ private void InitializeComponent() this.SaveNamedStateMenuItem, this.toolStripSeparator24, this.AutosaveLastSlotMenuItem}); - this.SaveStateSubMenu.Text = "&Save State"; - this.SaveStateSubMenu.DropDownOpened += new System.EventHandler(this.SaveStateSubMenu_DropDownOpened); - // - // SaveState1MenuItem - // - this.SaveState1MenuItem.Text = "1"; - this.SaveState1MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState2MenuItem - // - this.SaveState2MenuItem.Text = "2"; - this.SaveState2MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState3MenuItem - // - this.SaveState3MenuItem.Text = "3"; - this.SaveState3MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState4MenuItem - // - this.SaveState4MenuItem.Text = "4"; - this.SaveState4MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState5MenuItem - // - this.SaveState5MenuItem.Text = "5"; - this.SaveState5MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState6MenuItem - // - this.SaveState6MenuItem.Text = "6"; - this.SaveState6MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState7MenuItem - // - this.SaveState7MenuItem.Text = "7"; - this.SaveState7MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState8MenuItem - // - this.SaveState8MenuItem.Text = "8"; - this.SaveState8MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState9MenuItem - // - this.SaveState9MenuItem.Text = "9"; - this.SaveState9MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveState0MenuItem - // - this.SaveState0MenuItem.Text = "10"; - this.SaveState0MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); - // - // SaveNamedStateMenuItem - // - this.SaveNamedStateMenuItem.Text = "Save Named State..."; - this.SaveNamedStateMenuItem.Click += new System.EventHandler(this.SaveNamedStateMenuItem_Click); - // - // AutosaveLastSlotMenuItem - // - this.AutosaveLastSlotMenuItem.Text = "Autosave Last Slot"; - this.AutosaveLastSlotMenuItem.Click += new System.EventHandler(this.AutosaveLastSlotMenuItem_Click); - // - // LoadStateSubMenu - // - this.LoadStateSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SaveStateSubMenu.Text = "&Save State"; + this.SaveStateSubMenu.DropDownOpened += new System.EventHandler(this.SaveStateSubMenu_DropDownOpened); + // + // SaveState1MenuItem + // + this.SaveState1MenuItem.Text = "1"; + this.SaveState1MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState2MenuItem + // + this.SaveState2MenuItem.Text = "2"; + this.SaveState2MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState3MenuItem + // + this.SaveState3MenuItem.Text = "3"; + this.SaveState3MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState4MenuItem + // + this.SaveState4MenuItem.Text = "4"; + this.SaveState4MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState5MenuItem + // + this.SaveState5MenuItem.Text = "5"; + this.SaveState5MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState6MenuItem + // + this.SaveState6MenuItem.Text = "6"; + this.SaveState6MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState7MenuItem + // + this.SaveState7MenuItem.Text = "7"; + this.SaveState7MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState8MenuItem + // + this.SaveState8MenuItem.Text = "8"; + this.SaveState8MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState9MenuItem + // + this.SaveState9MenuItem.Text = "9"; + this.SaveState9MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveState0MenuItem + // + this.SaveState0MenuItem.Text = "10"; + this.SaveState0MenuItem.Click += new System.EventHandler(this.QuickSavestateMenuItem_Click); + // + // SaveNamedStateMenuItem + // + this.SaveNamedStateMenuItem.Text = "Save Named State..."; + this.SaveNamedStateMenuItem.Click += new System.EventHandler(this.SaveNamedStateMenuItem_Click); + // + // AutosaveLastSlotMenuItem + // + this.AutosaveLastSlotMenuItem.Text = "Autosave Last Slot"; + this.AutosaveLastSlotMenuItem.Click += new System.EventHandler(this.AutosaveLastSlotMenuItem_Click); + // + // LoadStateSubMenu + // + this.LoadStateSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.LoadState1MenuItem, this.LoadState2MenuItem, this.LoadState3MenuItem, @@ -552,72 +552,72 @@ private void InitializeComponent() this.LoadNamedStateMenuItem, this.toolStripSeparator21, this.AutoloadLastSlotMenuItem}); - this.LoadStateSubMenu.Text = "&Load State"; - this.LoadStateSubMenu.DropDownOpened += new System.EventHandler(this.LoadStateSubMenu_DropDownOpened); - // - // LoadState1MenuItem - // - this.LoadState1MenuItem.Text = "1"; - this.LoadState1MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState2MenuItem - // - this.LoadState2MenuItem.Text = "2"; - this.LoadState2MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState3MenuItem - // - this.LoadState3MenuItem.Text = "3"; - this.LoadState3MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState4MenuItem - // - this.LoadState4MenuItem.Text = "4"; - this.LoadState4MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState5MenuItem - // - this.LoadState5MenuItem.Text = "5"; - this.LoadState5MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState6MenuItem - // - this.LoadState6MenuItem.Text = "6"; - this.LoadState6MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState7MenuItem - // - this.LoadState7MenuItem.Text = "7"; - this.LoadState7MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState8MenuItem - // - this.LoadState8MenuItem.Text = "8"; - this.LoadState8MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState9MenuItem - // - this.LoadState9MenuItem.Text = "9"; - this.LoadState9MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadState0MenuItem - // - this.LoadState0MenuItem.Text = "10"; - this.LoadState0MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); - // - // LoadNamedStateMenuItem - // - this.LoadNamedStateMenuItem.Text = "Load Named State..."; - this.LoadNamedStateMenuItem.Click += new System.EventHandler(this.LoadNamedStateMenuItem_Click); - // - // AutoloadLastSlotMenuItem - // - this.AutoloadLastSlotMenuItem.Text = "Autoload Last Slot"; - this.AutoloadLastSlotMenuItem.Click += new System.EventHandler(this.AutoloadLastSlotMenuItem_Click); - // - // SaveSlotSubMenu - // - this.SaveSlotSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.LoadStateSubMenu.Text = "&Load State"; + this.LoadStateSubMenu.DropDownOpened += new System.EventHandler(this.LoadStateSubMenu_DropDownOpened); + // + // LoadState1MenuItem + // + this.LoadState1MenuItem.Text = "1"; + this.LoadState1MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState2MenuItem + // + this.LoadState2MenuItem.Text = "2"; + this.LoadState2MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState3MenuItem + // + this.LoadState3MenuItem.Text = "3"; + this.LoadState3MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState4MenuItem + // + this.LoadState4MenuItem.Text = "4"; + this.LoadState4MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState5MenuItem + // + this.LoadState5MenuItem.Text = "5"; + this.LoadState5MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState6MenuItem + // + this.LoadState6MenuItem.Text = "6"; + this.LoadState6MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState7MenuItem + // + this.LoadState7MenuItem.Text = "7"; + this.LoadState7MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState8MenuItem + // + this.LoadState8MenuItem.Text = "8"; + this.LoadState8MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState9MenuItem + // + this.LoadState9MenuItem.Text = "9"; + this.LoadState9MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadState0MenuItem + // + this.LoadState0MenuItem.Text = "10"; + this.LoadState0MenuItem.Click += new System.EventHandler(this.QuickLoadstateMenuItem_Click); + // + // LoadNamedStateMenuItem + // + this.LoadNamedStateMenuItem.Text = "Load Named State..."; + this.LoadNamedStateMenuItem.Click += new System.EventHandler(this.LoadNamedStateMenuItem_Click); + // + // AutoloadLastSlotMenuItem + // + this.AutoloadLastSlotMenuItem.Text = "Autoload Last Slot"; + this.AutoloadLastSlotMenuItem.Click += new System.EventHandler(this.AutoloadLastSlotMenuItem_Click); + // + // SaveSlotSubMenu + // + this.SaveSlotSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SelectSlot1MenuItem, this.SelectSlot2MenuItem, this.SelectSlot3MenuItem, @@ -633,94 +633,94 @@ private void InitializeComponent() this.toolStripSeparator5, this.SaveToCurrentSlotMenuItem, this.LoadCurrentSlotMenuItem}); - this.SaveSlotSubMenu.Text = "Save S&lot"; - this.SaveSlotSubMenu.DropDownOpened += new System.EventHandler(this.SaveSlotSubMenu_DropDownOpened); - // - // SelectSlot1MenuItem - // - this.SelectSlot1MenuItem.Text = "Select Slot 1"; - this.SelectSlot1MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot2MenuItem - // - this.SelectSlot2MenuItem.Text = "Select Slot 2"; - this.SelectSlot2MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot3MenuItem - // - this.SelectSlot3MenuItem.Text = "Select Slot 3"; - this.SelectSlot3MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot4MenuItem - // - this.SelectSlot4MenuItem.Text = "Select Slot 4"; - this.SelectSlot4MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot5MenuItem - // - this.SelectSlot5MenuItem.Text = "Select Slot 5"; - this.SelectSlot5MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot6MenuItem - // - this.SelectSlot6MenuItem.Text = "Select Slot 6"; - this.SelectSlot6MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot7MenuItem - // - this.SelectSlot7MenuItem.Text = "Select Slot 7"; - this.SelectSlot7MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot8MenuItem - // - this.SelectSlot8MenuItem.Text = "Select Slot 8"; - this.SelectSlot8MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot9MenuItem - // - this.SelectSlot9MenuItem.Text = "Select Slot 9"; - this.SelectSlot9MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // SelectSlot0MenuItem - // - this.SelectSlot0MenuItem.Text = "Select Slot 10"; - this.SelectSlot0MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); - // - // PreviousSlotMenuItem - // - this.PreviousSlotMenuItem.Text = "Previous Slot"; - this.PreviousSlotMenuItem.Click += new System.EventHandler(this.PreviousSlotMenuItem_Click); - // - // NextSlotMenuItem - // - this.NextSlotMenuItem.Text = "Next Slot"; - this.NextSlotMenuItem.Click += new System.EventHandler(this.NextSlotMenuItem_Click); - // - // SaveToCurrentSlotMenuItem - // - this.SaveToCurrentSlotMenuItem.Text = "Save to Current Slot"; - this.SaveToCurrentSlotMenuItem.Click += new System.EventHandler(this.SaveToCurrentSlotMenuItem_Click); - // - // LoadCurrentSlotMenuItem - // - this.LoadCurrentSlotMenuItem.Text = "Load Current Slot"; - this.LoadCurrentSlotMenuItem.Click += new System.EventHandler(this.LoadCurrentSlotMenuItem_Click); - // - // SaveRAMSubMenu - // - this.SaveRAMSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SaveSlotSubMenu.Text = "Save S&lot"; + this.SaveSlotSubMenu.DropDownOpened += new System.EventHandler(this.SaveSlotSubMenu_DropDownOpened); + // + // SelectSlot1MenuItem + // + this.SelectSlot1MenuItem.Text = "Select Slot 1"; + this.SelectSlot1MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot2MenuItem + // + this.SelectSlot2MenuItem.Text = "Select Slot 2"; + this.SelectSlot2MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot3MenuItem + // + this.SelectSlot3MenuItem.Text = "Select Slot 3"; + this.SelectSlot3MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot4MenuItem + // + this.SelectSlot4MenuItem.Text = "Select Slot 4"; + this.SelectSlot4MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot5MenuItem + // + this.SelectSlot5MenuItem.Text = "Select Slot 5"; + this.SelectSlot5MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot6MenuItem + // + this.SelectSlot6MenuItem.Text = "Select Slot 6"; + this.SelectSlot6MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot7MenuItem + // + this.SelectSlot7MenuItem.Text = "Select Slot 7"; + this.SelectSlot7MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot8MenuItem + // + this.SelectSlot8MenuItem.Text = "Select Slot 8"; + this.SelectSlot8MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot9MenuItem + // + this.SelectSlot9MenuItem.Text = "Select Slot 9"; + this.SelectSlot9MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // SelectSlot0MenuItem + // + this.SelectSlot0MenuItem.Text = "Select Slot 10"; + this.SelectSlot0MenuItem.Click += new System.EventHandler(this.SelectSlotMenuItems_Click); + // + // PreviousSlotMenuItem + // + this.PreviousSlotMenuItem.Text = "Previous Slot"; + this.PreviousSlotMenuItem.Click += new System.EventHandler(this.PreviousSlotMenuItem_Click); + // + // NextSlotMenuItem + // + this.NextSlotMenuItem.Text = "Next Slot"; + this.NextSlotMenuItem.Click += new System.EventHandler(this.NextSlotMenuItem_Click); + // + // SaveToCurrentSlotMenuItem + // + this.SaveToCurrentSlotMenuItem.Text = "Save to Current Slot"; + this.SaveToCurrentSlotMenuItem.Click += new System.EventHandler(this.SaveToCurrentSlotMenuItem_Click); + // + // LoadCurrentSlotMenuItem + // + this.LoadCurrentSlotMenuItem.Text = "Load Current Slot"; + this.LoadCurrentSlotMenuItem.Click += new System.EventHandler(this.LoadCurrentSlotMenuItem_Click); + // + // SaveRAMSubMenu + // + this.SaveRAMSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FlushSaveRAMMenuItem}); - this.SaveRAMSubMenu.Text = "Save &RAM"; - this.SaveRAMSubMenu.DropDownOpened += new System.EventHandler(this.SaveRamSubMenu_DropDownOpened); - // - // FlushSaveRAMMenuItem - // - this.FlushSaveRAMMenuItem.Text = "&Flush Save Ram"; - this.FlushSaveRAMMenuItem.Click += new System.EventHandler(this.FlushSaveRAMMenuItem_Click); - // - // MovieSubMenu - // - this.MovieSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SaveRAMSubMenu.Text = "Save &RAM"; + this.SaveRAMSubMenu.DropDownOpened += new System.EventHandler(this.SaveRamSubMenu_DropDownOpened); + // + // FlushSaveRAMMenuItem + // + this.FlushSaveRAMMenuItem.Text = "&Flush Save Ram"; + this.FlushSaveRAMMenuItem.Click += new System.EventHandler(this.FlushSaveRAMMenuItem_Click); + // + // MovieSubMenu + // + this.MovieSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ReadonlyMenuItem, this.toolStripSeparator15, this.RecentMovieSubMenu, @@ -737,109 +737,109 @@ private void InitializeComponent() this.AutomaticallyBackupMoviesMenuItem, this.FullMovieLoadstatesMenuItem, this.MovieEndSubMenu}); - this.MovieSubMenu.Text = "&Movie"; - this.MovieSubMenu.DropDownOpened += new System.EventHandler(this.MovieSubMenu_DropDownOpened); - // - // ReadonlyMenuItem - // - this.ReadonlyMenuItem.Text = "Read-only"; - this.ReadonlyMenuItem.Click += new System.EventHandler(this.ReadonlyMenuItem_Click); - // - // RecentMovieSubMenu - // - this.RecentMovieSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MovieSubMenu.Text = "&Movie"; + this.MovieSubMenu.DropDownOpened += new System.EventHandler(this.MovieSubMenu_DropDownOpened); + // + // ReadonlyMenuItem + // + this.ReadonlyMenuItem.Text = "Read-only"; + this.ReadonlyMenuItem.Click += new System.EventHandler(this.ReadonlyMenuItem_Click); + // + // RecentMovieSubMenu + // + this.RecentMovieSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator16}); - this.RecentMovieSubMenu.Text = "Recent"; - this.RecentMovieSubMenu.DropDownOpened += new System.EventHandler(this.RecentMovieSubMenu_DropDownOpened); - // - // RecordMovieMenuItem - // - this.RecordMovieMenuItem.Text = "&Record Movie..."; - this.RecordMovieMenuItem.Click += new System.EventHandler(this.RecordMovieMenuItem_Click); - // - // PlayMovieMenuItem - // - this.PlayMovieMenuItem.Text = "&Play Movie..."; - this.PlayMovieMenuItem.Click += new System.EventHandler(this.PlayMovieMenuItem_Click); - // - // StopMovieMenuItem - // - this.StopMovieMenuItem.Text = "Stop Movie"; - this.StopMovieMenuItem.Click += new System.EventHandler(this.StopMovieMenuItem_Click); - // - // PlayFromBeginningMenuItem - // - this.PlayFromBeginningMenuItem.Text = "Play from Beginning"; - this.PlayFromBeginningMenuItem.Click += new System.EventHandler(this.PlayFromBeginningMenuItem_Click); - // - // SaveMovieMenuItem - // - this.SaveMovieMenuItem.Text = "&Save Movie"; - this.SaveMovieMenuItem.Click += new System.EventHandler(this.SaveMovieMenuItem_Click); - // - // SaveMovieAsMenuItem - // - this.SaveMovieAsMenuItem.Text = "Save Movie As..."; - this.SaveMovieAsMenuItem.Click += new System.EventHandler(this.SaveMovieAsMenuItem_Click); - // - // StopMovieWithoutSavingMenuItem - // - this.StopMovieWithoutSavingMenuItem.Text = "Stop Movie without Saving"; - this.StopMovieWithoutSavingMenuItem.Click += new System.EventHandler(this.StopMovieWithoutSavingMenuItem_Click); - // - // toolStripSeparator25 - // - this.toolStripSeparator25.Name = "toolStripSeparator25"; - this.toolStripSeparator25.Size = new System.Drawing.Size(228, 6); - // - // ImportMoviesMenuItem - // - this.ImportMoviesMenuItem.Text = "Import Movies..."; - this.ImportMoviesMenuItem.Click += new System.EventHandler(this.ImportMovieMenuItem_Click); - // - // AutomaticallyBackupMoviesMenuItem - // - this.AutomaticallyBackupMoviesMenuItem.Text = "Automatically Backup Movies"; - this.AutomaticallyBackupMoviesMenuItem.Click += new System.EventHandler(this.AutomaticMovieBackupMenuItem_Click); - // - // FullMovieLoadstatesMenuItem - // - this.FullMovieLoadstatesMenuItem.Text = "Full Movie Loadstates"; - this.FullMovieLoadstatesMenuItem.Click += new System.EventHandler(this.FullMovieLoadstatesMenuItem_Click); - // - // MovieEndSubMenu - // - this.MovieEndSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.RecentMovieSubMenu.Text = "Recent"; + this.RecentMovieSubMenu.DropDownOpened += new System.EventHandler(this.RecentMovieSubMenu_DropDownOpened); + // + // RecordMovieMenuItem + // + this.RecordMovieMenuItem.Text = "&Record Movie..."; + this.RecordMovieMenuItem.Click += new System.EventHandler(this.RecordMovieMenuItem_Click); + // + // PlayMovieMenuItem + // + this.PlayMovieMenuItem.Text = "&Play Movie..."; + this.PlayMovieMenuItem.Click += new System.EventHandler(this.PlayMovieMenuItem_Click); + // + // StopMovieMenuItem + // + this.StopMovieMenuItem.Text = "Stop Movie"; + this.StopMovieMenuItem.Click += new System.EventHandler(this.StopMovieMenuItem_Click); + // + // PlayFromBeginningMenuItem + // + this.PlayFromBeginningMenuItem.Text = "Play from Beginning"; + this.PlayFromBeginningMenuItem.Click += new System.EventHandler(this.PlayFromBeginningMenuItem_Click); + // + // SaveMovieMenuItem + // + this.SaveMovieMenuItem.Text = "&Save Movie"; + this.SaveMovieMenuItem.Click += new System.EventHandler(this.SaveMovieMenuItem_Click); + // + // SaveMovieAsMenuItem + // + this.SaveMovieAsMenuItem.Text = "Save Movie As..."; + this.SaveMovieAsMenuItem.Click += new System.EventHandler(this.SaveMovieAsMenuItem_Click); + // + // StopMovieWithoutSavingMenuItem + // + this.StopMovieWithoutSavingMenuItem.Text = "Stop Movie without Saving"; + this.StopMovieWithoutSavingMenuItem.Click += new System.EventHandler(this.StopMovieWithoutSavingMenuItem_Click); + // + // toolStripSeparator25 + // + this.toolStripSeparator25.Name = "toolStripSeparator25"; + this.toolStripSeparator25.Size = new System.Drawing.Size(228, 6); + // + // ImportMoviesMenuItem + // + this.ImportMoviesMenuItem.Text = "Import Movies..."; + this.ImportMoviesMenuItem.Click += new System.EventHandler(this.ImportMovieMenuItem_Click); + // + // AutomaticallyBackupMoviesMenuItem + // + this.AutomaticallyBackupMoviesMenuItem.Text = "Automatically Backup Movies"; + this.AutomaticallyBackupMoviesMenuItem.Click += new System.EventHandler(this.AutomaticMovieBackupMenuItem_Click); + // + // FullMovieLoadstatesMenuItem + // + this.FullMovieLoadstatesMenuItem.Text = "Full Movie Loadstates"; + this.FullMovieLoadstatesMenuItem.Click += new System.EventHandler(this.FullMovieLoadstatesMenuItem_Click); + // + // MovieEndSubMenu + // + this.MovieEndSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MovieEndFinishMenuItem, this.MovieEndRecordMenuItem, this.MovieEndStopMenuItem, this.MovieEndPauseMenuItem}); - this.MovieEndSubMenu.Text = "On Movie End"; - this.MovieEndSubMenu.DropDownOpened += new System.EventHandler(this.MovieEndSubMenu_DropDownOpened); - // - // MovieEndFinishMenuItem - // - this.MovieEndFinishMenuItem.Text = "Switch to Finished"; - this.MovieEndFinishMenuItem.Click += new System.EventHandler(this.MovieEndFinishMenuItem_Click); - // - // MovieEndRecordMenuItem - // - this.MovieEndRecordMenuItem.Text = "Switch To Record"; - this.MovieEndRecordMenuItem.Click += new System.EventHandler(this.MovieEndRecordMenuItem_Click); - // - // MovieEndStopMenuItem - // - this.MovieEndStopMenuItem.Text = "Stop"; - this.MovieEndStopMenuItem.Click += new System.EventHandler(this.MovieEndStopMenuItem_Click); - // - // MovieEndPauseMenuItem - // - this.MovieEndPauseMenuItem.Text = "Pause"; - this.MovieEndPauseMenuItem.Click += new System.EventHandler(this.MovieEndPauseMenuItem_Click); - // - // AVSubMenu - // - this.AVSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MovieEndSubMenu.Text = "On Movie End"; + this.MovieEndSubMenu.DropDownOpened += new System.EventHandler(this.MovieEndSubMenu_DropDownOpened); + // + // MovieEndFinishMenuItem + // + this.MovieEndFinishMenuItem.Text = "Switch to Finished"; + this.MovieEndFinishMenuItem.Click += new System.EventHandler(this.MovieEndFinishMenuItem_Click); + // + // MovieEndRecordMenuItem + // + this.MovieEndRecordMenuItem.Text = "Switch To Record"; + this.MovieEndRecordMenuItem.Click += new System.EventHandler(this.MovieEndRecordMenuItem_Click); + // + // MovieEndStopMenuItem + // + this.MovieEndStopMenuItem.Text = "Stop"; + this.MovieEndStopMenuItem.Click += new System.EventHandler(this.MovieEndStopMenuItem_Click); + // + // MovieEndPauseMenuItem + // + this.MovieEndPauseMenuItem.Text = "Pause"; + this.MovieEndPauseMenuItem.Click += new System.EventHandler(this.MovieEndPauseMenuItem_Click); + // + // AVSubMenu + // + this.AVSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.RecordAVMenuItem, this.ConfigAndRecordAVMenuItem, this.StopAVMenuItem, @@ -847,88 +847,88 @@ private void InitializeComponent() this.CaptureOSDMenuItem, this.CaptureLuaMenuItem, this.SynclessRecordingMenuItem}); - this.AVSubMenu.Text = "&A/V Writer"; - this.AVSubMenu.DropDownOpened += new System.EventHandler(this.AVSubMenu_DropDownOpened); - // - // RecordAVMenuItem - // - this.RecordAVMenuItem.Text = "&Record A/V"; - this.RecordAVMenuItem.Click += new System.EventHandler(this.RecordAVMenuItem_Click); - // - // ConfigAndRecordAVMenuItem - // - this.ConfigAndRecordAVMenuItem.Text = "Config and Record A/V..."; - this.ConfigAndRecordAVMenuItem.Click += new System.EventHandler(this.ConfigAndRecordAVMenuItem_Click); - // - // StopAVMenuItem - // - this.StopAVMenuItem.Text = "&Stop A/V Writer"; - this.StopAVMenuItem.Click += new System.EventHandler(this.StopAVMenuItem_Click); - // - // CaptureOSDMenuItem - // - this.CaptureOSDMenuItem.CheckOnClick = true; - this.CaptureOSDMenuItem.Text = "Capture OSD"; - this.CaptureOSDMenuItem.Click += new System.EventHandler(this.CaptureOSDMenuItem_Click); - // - // CaptureLuaMenuItem - // - this.CaptureLuaMenuItem.CheckOnClick = true; - this.CaptureLuaMenuItem.Name = "CaptureLuaMenuItem"; - this.CaptureLuaMenuItem.Size = new System.Drawing.Size(205, 22); - this.CaptureLuaMenuItem.Text = "Capture Lua"; - this.CaptureLuaMenuItem.Click += new System.EventHandler(this.CaptureLuaMenuItem_Click); - // - // SynclessRecordingMenuItem - // - this.SynclessRecordingMenuItem.Text = "S&yncless Recording Tools"; - // - // ScreenshotSubMenu - // - this.ScreenshotSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AVSubMenu.Text = "&A/V Writer"; + this.AVSubMenu.DropDownOpened += new System.EventHandler(this.AVSubMenu_DropDownOpened); + // + // RecordAVMenuItem + // + this.RecordAVMenuItem.Text = "&Record A/V"; + this.RecordAVMenuItem.Click += new System.EventHandler(this.RecordAVMenuItem_Click); + // + // ConfigAndRecordAVMenuItem + // + this.ConfigAndRecordAVMenuItem.Text = "Config and Record A/V..."; + this.ConfigAndRecordAVMenuItem.Click += new System.EventHandler(this.ConfigAndRecordAVMenuItem_Click); + // + // StopAVMenuItem + // + this.StopAVMenuItem.Text = "&Stop A/V Writer"; + this.StopAVMenuItem.Click += new System.EventHandler(this.StopAVMenuItem_Click); + // + // CaptureOSDMenuItem + // + this.CaptureOSDMenuItem.CheckOnClick = true; + this.CaptureOSDMenuItem.Text = "Capture OSD"; + this.CaptureOSDMenuItem.Click += new System.EventHandler(this.CaptureOSDMenuItem_Click); + // + // CaptureLuaMenuItem + // + this.CaptureLuaMenuItem.CheckOnClick = true; + this.CaptureLuaMenuItem.Name = "CaptureLuaMenuItem"; + this.CaptureLuaMenuItem.Size = new System.Drawing.Size(205, 22); + this.CaptureLuaMenuItem.Text = "Capture Lua"; + this.CaptureLuaMenuItem.Click += new System.EventHandler(this.CaptureLuaMenuItem_Click); + // + // SynclessRecordingMenuItem + // + this.SynclessRecordingMenuItem.Text = "S&yncless Recording Tools"; + // + // ScreenshotSubMenu + // + this.ScreenshotSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ScreenshotMenuItem, this.ScreenshotAsMenuItem, this.ScreenshotClipboardMenuItem, this.ScreenshotClientClipboardMenuItem, this.toolStripSeparator20, this.ScreenshotCaptureOSDMenuItem1}); - this.ScreenshotSubMenu.Text = "Scree&nshot"; - this.ScreenshotSubMenu.DropDownOpening += new System.EventHandler(this.ScreenshotSubMenu_DropDownOpening); - // - // ScreenshotMenuItem - // - this.ScreenshotMenuItem.Text = "Screenshot"; - this.ScreenshotMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click); - // - // ScreenshotAsMenuItem - // - this.ScreenshotAsMenuItem.Text = "Screenshot As..."; - this.ScreenshotAsMenuItem.Click += new System.EventHandler(this.ScreenshotAsMenuItem_Click); - // - // ScreenshotClipboardMenuItem - // - this.ScreenshotClipboardMenuItem.Text = "Screenshot (raw) -> Clipboard"; - this.ScreenshotClipboardMenuItem.Click += new System.EventHandler(this.ScreenshotClipboardMenuItem_Click); - // - // ScreenshotClientClipboardMenuItem - // - this.ScreenshotClientClipboardMenuItem.Text = "Screenshot (client) -> Clipboard"; - this.ScreenshotClientClipboardMenuItem.Click += new System.EventHandler(this.ScreenshotClientClipboardMenuItem_Click); - // - // ScreenshotCaptureOSDMenuItem1 - // - this.ScreenshotCaptureOSDMenuItem1.Text = "Capture OSD"; - this.ScreenshotCaptureOSDMenuItem1.Click += new System.EventHandler(this.ScreenshotCaptureOSDMenuItem_Click); - // - // ExitMenuItem - // - this.ExitMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4))); - this.ExitMenuItem.Text = "E&xit"; - this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click); - // - // EmulationSubMenu - // - this.EmulationSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ScreenshotSubMenu.Text = "Scree&nshot"; + this.ScreenshotSubMenu.DropDownOpening += new System.EventHandler(this.ScreenshotSubMenu_DropDownOpening); + // + // ScreenshotMenuItem + // + this.ScreenshotMenuItem.Text = "Screenshot"; + this.ScreenshotMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click); + // + // ScreenshotAsMenuItem + // + this.ScreenshotAsMenuItem.Text = "Screenshot As..."; + this.ScreenshotAsMenuItem.Click += new System.EventHandler(this.ScreenshotAsMenuItem_Click); + // + // ScreenshotClipboardMenuItem + // + this.ScreenshotClipboardMenuItem.Text = "Screenshot (raw) -> Clipboard"; + this.ScreenshotClipboardMenuItem.Click += new System.EventHandler(this.ScreenshotClipboardMenuItem_Click); + // + // ScreenshotClientClipboardMenuItem + // + this.ScreenshotClientClipboardMenuItem.Text = "Screenshot (client) -> Clipboard"; + this.ScreenshotClientClipboardMenuItem.Click += new System.EventHandler(this.ScreenshotClientClipboardMenuItem_Click); + // + // ScreenshotCaptureOSDMenuItem1 + // + this.ScreenshotCaptureOSDMenuItem1.Text = "Capture OSD"; + this.ScreenshotCaptureOSDMenuItem1.Click += new System.EventHandler(this.ScreenshotCaptureOSDMenuItem_Click); + // + // ExitMenuItem + // + this.ExitMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4))); + this.ExitMenuItem.Text = "E&xit"; + this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click); + // + // EmulationSubMenu + // + this.EmulationSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.PauseMenuItem, this.RebootCoreMenuItem, this.toolStripSeparator1, @@ -936,37 +936,37 @@ private void InitializeComponent() this.HardResetMenuItem, this.EmulatorMenuSeparator2, this.LoadedCoreNameMenuItem}); - this.EmulationSubMenu.Text = "&Emulation"; - this.EmulationSubMenu.DropDownOpened += new System.EventHandler(this.EmulationMenuItem_DropDownOpened); - // - // PauseMenuItem - // - this.PauseMenuItem.Text = "&Pause"; - this.PauseMenuItem.Click += new System.EventHandler(this.PauseMenuItem_Click); - // - // RebootCoreMenuItem - // - this.RebootCoreMenuItem.Text = "&Reboot Core"; - this.RebootCoreMenuItem.Click += new System.EventHandler(this.PowerMenuItem_Click); - // - // SoftResetMenuItem - // - this.SoftResetMenuItem.Text = "&Soft Reset"; - this.SoftResetMenuItem.Click += new System.EventHandler(this.SoftResetMenuItem_Click); - // - // HardResetMenuItem - // - this.HardResetMenuItem.Text = "&Hard Reset"; - this.HardResetMenuItem.Click += new System.EventHandler(this.HardResetMenuItem_Click); - // - // LoadedCoreNameMenuItem - // - this.LoadedCoreNameMenuItem.Enabled = false; - this.LoadedCoreNameMenuItem.Text = "Loaded core: (sysID)"; - // - // ViewSubMenu - // - this.ViewSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.EmulationSubMenu.Text = "&Emulation"; + this.EmulationSubMenu.DropDownOpened += new System.EventHandler(this.EmulationMenuItem_DropDownOpened); + // + // PauseMenuItem + // + this.PauseMenuItem.Text = "&Pause"; + this.PauseMenuItem.Click += new System.EventHandler(this.PauseMenuItem_Click); + // + // RebootCoreMenuItem + // + this.RebootCoreMenuItem.Text = "&Reboot Core"; + this.RebootCoreMenuItem.Click += new System.EventHandler(this.PowerMenuItem_Click); + // + // SoftResetMenuItem + // + this.SoftResetMenuItem.Text = "&Soft Reset"; + this.SoftResetMenuItem.Click += new System.EventHandler(this.SoftResetMenuItem_Click); + // + // HardResetMenuItem + // + this.HardResetMenuItem.Text = "&Hard Reset"; + this.HardResetMenuItem.Click += new System.EventHandler(this.HardResetMenuItem_Click); + // + // LoadedCoreNameMenuItem + // + this.LoadedCoreNameMenuItem.Enabled = false; + this.LoadedCoreNameMenuItem.Text = "Loaded core: (sysID)"; + // + // ViewSubMenu + // + this.ViewSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.WindowSizeSubMenu, this.SwitchToFullscreenMenuItem, this.toolStripSeparator2, @@ -981,76 +981,76 @@ private void InitializeComponent() this.DisplayMessagesMenuItem, this.toolStripSeparator8, this.DisplayLogWindowMenuItem}); - this.ViewSubMenu.Text = "&View"; - this.ViewSubMenu.DropDownOpened += new System.EventHandler(this.ViewSubMenu_DropDownOpened); - // - // WindowSizeSubMenu - // - this.WindowSizeSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ViewSubMenu.Text = "&View"; + this.ViewSubMenu.DropDownOpened += new System.EventHandler(this.ViewSubMenu_DropDownOpened); + // + // WindowSizeSubMenu + // + this.WindowSizeSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator26, this.DisableResizeWithFramebufferMenuItem}); - this.WindowSizeSubMenu.Text = "&Window Size"; - this.WindowSizeSubMenu.DropDownOpened += new System.EventHandler(this.WindowSizeSubMenu_DropDownOpened); - // - // DisableResizeWithFramebufferMenuItem - // - this.DisableResizeWithFramebufferMenuItem.CheckOnClick = true; - this.DisableResizeWithFramebufferMenuItem.Text = "&Static Size"; - this.DisableResizeWithFramebufferMenuItem.Click += new System.EventHandler(this.DisableResizeWithFramebufferMenuItem_Click); - // - // SwitchToFullscreenMenuItem - // - this.SwitchToFullscreenMenuItem.Text = "Switch to Fullscreen"; - this.SwitchToFullscreenMenuItem.Click += new System.EventHandler(this.SwitchToFullscreenMenuItem_Click); - // - // DisplayFPSMenuItem - // - this.DisplayFPSMenuItem.Text = "Display FPS"; - this.DisplayFPSMenuItem.Click += new System.EventHandler(this.DisplayFpsMenuItem_Click); - // - // DisplayFrameCounterMenuItem - // - this.DisplayFrameCounterMenuItem.Text = "Display Frame Count"; - this.DisplayFrameCounterMenuItem.Click += new System.EventHandler(this.DisplayFrameCounterMenuItem_Click); - // - // DisplayLagCounterMenuItem - // - this.DisplayLagCounterMenuItem.Text = "Display Lag Frame Count"; - this.DisplayLagCounterMenuItem.Click += new System.EventHandler(this.DisplayLagCounterMenuItem_Click); - // - // DisplayInputMenuItem - // - this.DisplayInputMenuItem.Text = "Display Input"; - this.DisplayInputMenuItem.Click += new System.EventHandler(this.DisplayInputMenuItem_Click); - // - // DisplayRerecordCountMenuItem - // - this.DisplayRerecordCountMenuItem.Text = "Display Rerecord Count"; - this.DisplayRerecordCountMenuItem.Click += new System.EventHandler(this.DisplayRerecordsMenuItem_Click); - // - // DisplaySubtitlesMenuItem - // - this.DisplaySubtitlesMenuItem.Text = "Display Subtitles"; - this.DisplaySubtitlesMenuItem.Click += new System.EventHandler(this.DisplaySubtitlesMenuItem_Click); - // - // DisplayStatusBarMenuItem - // - this.DisplayStatusBarMenuItem.Text = "Display Status Bar"; - this.DisplayStatusBarMenuItem.Click += new System.EventHandler(this.DisplayStatusBarMenuItem_Click); - // - // DisplayMessagesMenuItem - // - this.DisplayMessagesMenuItem.Text = "Display Messages"; - this.DisplayMessagesMenuItem.Click += new System.EventHandler(this.DisplayMessagesMenuItem_Click); - // - // DisplayLogWindowMenuItem - // - this.DisplayLogWindowMenuItem.Text = "Open &Log Window..."; - this.DisplayLogWindowMenuItem.Click += new System.EventHandler(this.DisplayLogWindowMenuItem_Click); - // - // ConfigSubMenu - // - this.ConfigSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.WindowSizeSubMenu.Text = "&Window Size"; + this.WindowSizeSubMenu.DropDownOpened += new System.EventHandler(this.WindowSizeSubMenu_DropDownOpened); + // + // DisableResizeWithFramebufferMenuItem + // + this.DisableResizeWithFramebufferMenuItem.CheckOnClick = true; + this.DisableResizeWithFramebufferMenuItem.Text = "&Static Size"; + this.DisableResizeWithFramebufferMenuItem.Click += new System.EventHandler(this.DisableResizeWithFramebufferMenuItem_Click); + // + // SwitchToFullscreenMenuItem + // + this.SwitchToFullscreenMenuItem.Text = "Switch to Fullscreen"; + this.SwitchToFullscreenMenuItem.Click += new System.EventHandler(this.SwitchToFullscreenMenuItem_Click); + // + // DisplayFPSMenuItem + // + this.DisplayFPSMenuItem.Text = "Display FPS"; + this.DisplayFPSMenuItem.Click += new System.EventHandler(this.DisplayFpsMenuItem_Click); + // + // DisplayFrameCounterMenuItem + // + this.DisplayFrameCounterMenuItem.Text = "Display Frame Count"; + this.DisplayFrameCounterMenuItem.Click += new System.EventHandler(this.DisplayFrameCounterMenuItem_Click); + // + // DisplayLagCounterMenuItem + // + this.DisplayLagCounterMenuItem.Text = "Display Lag Frame Count"; + this.DisplayLagCounterMenuItem.Click += new System.EventHandler(this.DisplayLagCounterMenuItem_Click); + // + // DisplayInputMenuItem + // + this.DisplayInputMenuItem.Text = "Display Input"; + this.DisplayInputMenuItem.Click += new System.EventHandler(this.DisplayInputMenuItem_Click); + // + // DisplayRerecordCountMenuItem + // + this.DisplayRerecordCountMenuItem.Text = "Display Rerecord Count"; + this.DisplayRerecordCountMenuItem.Click += new System.EventHandler(this.DisplayRerecordsMenuItem_Click); + // + // DisplaySubtitlesMenuItem + // + this.DisplaySubtitlesMenuItem.Text = "Display Subtitles"; + this.DisplaySubtitlesMenuItem.Click += new System.EventHandler(this.DisplaySubtitlesMenuItem_Click); + // + // DisplayStatusBarMenuItem + // + this.DisplayStatusBarMenuItem.Text = "Display Status Bar"; + this.DisplayStatusBarMenuItem.Click += new System.EventHandler(this.DisplayStatusBarMenuItem_Click); + // + // DisplayMessagesMenuItem + // + this.DisplayMessagesMenuItem.Text = "Display Messages"; + this.DisplayMessagesMenuItem.Click += new System.EventHandler(this.DisplayMessagesMenuItem_Click); + // + // DisplayLogWindowMenuItem + // + this.DisplayLogWindowMenuItem.Text = "Open &Log Window..."; + this.DisplayLogWindowMenuItem.Click += new System.EventHandler(this.DisplayLogWindowMenuItem_Click); + // + // ConfigSubMenu + // + this.ConfigSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ControllersMenuItem, this.HotkeysMenuItem, this.DisplayConfigMenuItem, @@ -1072,72 +1072,72 @@ private void InitializeComponent() this.SaveConfigAsMenuItem, this.LoadConfigMenuItem, this.LoadConfigFromMenuItem}); - this.ConfigSubMenu.Text = "&Config"; - this.ConfigSubMenu.DropDownOpened += new System.EventHandler(this.ConfigSubMenu_DropDownOpened); - // - // ControllersMenuItem - // - this.ControllersMenuItem.Text = "&Controllers..."; - this.ControllersMenuItem.Click += new System.EventHandler(this.ControllersMenuItem_Click); - // - // HotkeysMenuItem - // - this.HotkeysMenuItem.Text = "&Hotkeys..."; - this.HotkeysMenuItem.Click += new System.EventHandler(this.HotkeysMenuItem_Click); - // - // DisplayConfigMenuItem - // - this.DisplayConfigMenuItem.Text = "Display..."; - this.DisplayConfigMenuItem.Click += new System.EventHandler(this.DisplayConfigMenuItem_Click); - // - // SoundMenuItem - // - this.SoundMenuItem.Text = "&Sound..."; - this.SoundMenuItem.Click += new System.EventHandler(this.SoundMenuItem_Click); - // - // PathsMenuItem - // - this.PathsMenuItem.Text = "Paths..."; - this.PathsMenuItem.Click += new System.EventHandler(this.PathsMenuItem_Click); - // - // FirmwareMenuItem - // - this.FirmwareMenuItem.Text = "&Firmware..."; - this.FirmwareMenuItem.Click += new System.EventHandler(this.FirmwareMenuItem_Click); - // - // MessagesMenuItem - // - this.MessagesMenuItem.Text = "&Messages..."; - this.MessagesMenuItem.Click += new System.EventHandler(this.MessagesMenuItem_Click); - // - // AutofireMenuItem - // - this.AutofireMenuItem.Text = "&Autofire..."; - this.AutofireMenuItem.Click += new System.EventHandler(this.AutofireMenuItem_Click); - // - // RewindOptionsMenuItem - // - this.RewindOptionsMenuItem.Text = "&Rewind && States..."; - this.RewindOptionsMenuItem.Click += new System.EventHandler(this.RewindOptionsMenuItem_Click); - // - // extensionsToolStripMenuItem - // - this.extensionsToolStripMenuItem.Text = "File Extensions..."; - this.extensionsToolStripMenuItem.Click += new System.EventHandler(this.FileExtensionsMenuItem_Click); - // - // ClientOptionsMenuItem - // - this.ClientOptionsMenuItem.Text = "&Customize..."; - this.ClientOptionsMenuItem.Click += new System.EventHandler(this.CustomizeMenuItem_Click); - // - // ProfilesMenuItem - // - this.ProfilesMenuItem.Text = "&Profiles..."; - this.ProfilesMenuItem.Click += new System.EventHandler(this.ProfilesMenuItem_Click); - // - // SpeedSkipSubMenu - // - this.SpeedSkipSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ConfigSubMenu.Text = "&Config"; + this.ConfigSubMenu.DropDownOpened += new System.EventHandler(this.ConfigSubMenu_DropDownOpened); + // + // ControllersMenuItem + // + this.ControllersMenuItem.Text = "&Controllers..."; + this.ControllersMenuItem.Click += new System.EventHandler(this.ControllersMenuItem_Click); + // + // HotkeysMenuItem + // + this.HotkeysMenuItem.Text = "&Hotkeys..."; + this.HotkeysMenuItem.Click += new System.EventHandler(this.HotkeysMenuItem_Click); + // + // DisplayConfigMenuItem + // + this.DisplayConfigMenuItem.Text = "Display..."; + this.DisplayConfigMenuItem.Click += new System.EventHandler(this.DisplayConfigMenuItem_Click); + // + // SoundMenuItem + // + this.SoundMenuItem.Text = "&Sound..."; + this.SoundMenuItem.Click += new System.EventHandler(this.SoundMenuItem_Click); + // + // PathsMenuItem + // + this.PathsMenuItem.Text = "Paths..."; + this.PathsMenuItem.Click += new System.EventHandler(this.PathsMenuItem_Click); + // + // FirmwareMenuItem + // + this.FirmwareMenuItem.Text = "&Firmware..."; + this.FirmwareMenuItem.Click += new System.EventHandler(this.FirmwareMenuItem_Click); + // + // MessagesMenuItem + // + this.MessagesMenuItem.Text = "&Messages..."; + this.MessagesMenuItem.Click += new System.EventHandler(this.MessagesMenuItem_Click); + // + // AutofireMenuItem + // + this.AutofireMenuItem.Text = "&Autofire..."; + this.AutofireMenuItem.Click += new System.EventHandler(this.AutofireMenuItem_Click); + // + // RewindOptionsMenuItem + // + this.RewindOptionsMenuItem.Text = "&Rewind && States..."; + this.RewindOptionsMenuItem.Click += new System.EventHandler(this.RewindOptionsMenuItem_Click); + // + // extensionsToolStripMenuItem + // + this.extensionsToolStripMenuItem.Text = "File Extensions..."; + this.extensionsToolStripMenuItem.Click += new System.EventHandler(this.FileExtensionsMenuItem_Click); + // + // ClientOptionsMenuItem + // + this.ClientOptionsMenuItem.Text = "&Customize..."; + this.ClientOptionsMenuItem.Click += new System.EventHandler(this.CustomizeMenuItem_Click); + // + // ProfilesMenuItem + // + this.ProfilesMenuItem.Text = "&Profiles..."; + this.ProfilesMenuItem.Click += new System.EventHandler(this.ProfilesMenuItem_Click); + // + // SpeedSkipSubMenu + // + this.SpeedSkipSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ClockThrottleMenuItem, this.AudioThrottleMenuItem, this.VsyncThrottleMenuItem, @@ -1155,47 +1155,47 @@ private void InitializeComponent() this.Speed150MenuItem, this.Speed200MenuItem, this.Speed400MenuItem}); - this.SpeedSkipSubMenu.Text = "Speed/Skip"; - this.SpeedSkipSubMenu.DropDownOpened += new System.EventHandler(this.FrameSkipMenuItem_DropDownOpened); - // - // ClockThrottleMenuItem - // - this.ClockThrottleMenuItem.Text = "Clock Throttle"; - this.ClockThrottleMenuItem.Click += new System.EventHandler(this.ClockThrottleMenuItem_Click); - // - // AudioThrottleMenuItem - // - this.AudioThrottleMenuItem.Text = "Audio Throttle"; - this.AudioThrottleMenuItem.Click += new System.EventHandler(this.AudioThrottleMenuItem_Click); - // - // VsyncThrottleMenuItem - // - this.VsyncThrottleMenuItem.Text = "VSync Throttle"; - this.VsyncThrottleMenuItem.Click += new System.EventHandler(this.VsyncThrottleMenuItem_Click); - // - // VsyncEnabledMenuItem - // - this.VsyncEnabledMenuItem.Text = "VSync Enabled"; - this.VsyncEnabledMenuItem.Click += new System.EventHandler(this.VsyncEnabledMenuItem_Click); - // - // miUnthrottled - // - this.miUnthrottled.Text = "Unthrottled"; - this.miUnthrottled.Click += new System.EventHandler(this.UnthrottledMenuItem_Click); - // - // MinimizeSkippingMenuItem - // - this.MinimizeSkippingMenuItem.Text = "Auto-minimize skipping"; - this.MinimizeSkippingMenuItem.Click += new System.EventHandler(this.MinimizeSkippingMenuItem_Click); - // - // NeverSkipMenuItem - // - this.NeverSkipMenuItem.Text = "Skip 0 (never)"; - this.NeverSkipMenuItem.Click += new System.EventHandler(this.NeverSkipMenuItem_Click); - // - // toolStripMenuItem17 - // - this.toolStripMenuItem17.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SpeedSkipSubMenu.Text = "Speed/Skip"; + this.SpeedSkipSubMenu.DropDownOpened += new System.EventHandler(this.FrameSkipMenuItem_DropDownOpened); + // + // ClockThrottleMenuItem + // + this.ClockThrottleMenuItem.Text = "Clock Throttle"; + this.ClockThrottleMenuItem.Click += new System.EventHandler(this.ClockThrottleMenuItem_Click); + // + // AudioThrottleMenuItem + // + this.AudioThrottleMenuItem.Text = "Audio Throttle"; + this.AudioThrottleMenuItem.Click += new System.EventHandler(this.AudioThrottleMenuItem_Click); + // + // VsyncThrottleMenuItem + // + this.VsyncThrottleMenuItem.Text = "VSync Throttle"; + this.VsyncThrottleMenuItem.Click += new System.EventHandler(this.VsyncThrottleMenuItem_Click); + // + // VsyncEnabledMenuItem + // + this.VsyncEnabledMenuItem.Text = "VSync Enabled"; + this.VsyncEnabledMenuItem.Click += new System.EventHandler(this.VsyncEnabledMenuItem_Click); + // + // miUnthrottled + // + this.miUnthrottled.Text = "Unthrottled"; + this.miUnthrottled.Click += new System.EventHandler(this.UnthrottledMenuItem_Click); + // + // MinimizeSkippingMenuItem + // + this.MinimizeSkippingMenuItem.Text = "Auto-minimize skipping"; + this.MinimizeSkippingMenuItem.Click += new System.EventHandler(this.MinimizeSkippingMenuItem_Click); + // + // NeverSkipMenuItem + // + this.NeverSkipMenuItem.Text = "Skip 0 (never)"; + this.NeverSkipMenuItem.Click += new System.EventHandler(this.NeverSkipMenuItem_Click); + // + // toolStripMenuItem17 + // + this.toolStripMenuItem17.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.Frameskip1MenuItem, this.Frameskip2MenuItem, this.Frameskip3MenuItem, @@ -1205,134 +1205,134 @@ private void InitializeComponent() this.Frameskip7MenuItem, this.Frameskip8MenuItem, this.Frameskip9MenuItem}); - this.toolStripMenuItem17.Text = "Skip 1..9"; - // - // Frameskip1MenuItem - // - this.Frameskip1MenuItem.Text = "1"; - this.Frameskip1MenuItem.Click += new System.EventHandler(this.Frameskip1MenuItem_Click); - // - // Frameskip2MenuItem - // - this.Frameskip2MenuItem.Text = "2"; - this.Frameskip2MenuItem.Click += new System.EventHandler(this.Frameskip2MenuItem_Click); - // - // Frameskip3MenuItem - // - this.Frameskip3MenuItem.Text = "3"; - this.Frameskip3MenuItem.Click += new System.EventHandler(this.Frameskip3MenuItem_Click); - // - // Frameskip4MenuItem - // - this.Frameskip4MenuItem.Text = "4"; - this.Frameskip4MenuItem.Click += new System.EventHandler(this.Frameskip4MenuItem_Click); - // - // Frameskip5MenuItem - // - this.Frameskip5MenuItem.Text = "5"; - this.Frameskip5MenuItem.Click += new System.EventHandler(this.Frameskip5MenuItem_Click); - // - // Frameskip6MenuItem - // - this.Frameskip6MenuItem.Text = "6"; - this.Frameskip6MenuItem.Click += new System.EventHandler(this.Frameskip6MenuItem_Click); - // - // Frameskip7MenuItem - // - this.Frameskip7MenuItem.Text = "7"; - this.Frameskip7MenuItem.Click += new System.EventHandler(this.Frameskip7MenuItem_Click); - // - // Frameskip8MenuItem - // - this.Frameskip8MenuItem.Text = "8"; - this.Frameskip8MenuItem.Click += new System.EventHandler(this.Frameskip8MenuItem_Click); - // - // Frameskip9MenuItem - // - this.Frameskip9MenuItem.Text = "9"; - this.Frameskip9MenuItem.Click += new System.EventHandler(this.Frameskip9MenuItem_Click); - // - // Speed50MenuItem - // - this.Speed50MenuItem.Text = "Speed 50%"; - this.Speed50MenuItem.Click += new System.EventHandler(this.Speed50MenuItem_Click); - // - // Speed75MenuItem - // - this.Speed75MenuItem.Text = "Speed 75%"; - this.Speed75MenuItem.Click += new System.EventHandler(this.Speed75MenuItem_Click); - // - // Speed100MenuItem - // - this.Speed100MenuItem.Text = "Speed 100%"; - this.Speed100MenuItem.Click += new System.EventHandler(this.Speed100MenuItem_Click); - // - // Speed150MenuItem - // - this.Speed150MenuItem.Text = "Speed 150%"; - this.Speed150MenuItem.Click += new System.EventHandler(this.Speed150MenuItem_Click); - // - // Speed200MenuItem - // - this.Speed200MenuItem.Text = "Speed 200%"; - this.Speed200MenuItem.Click += new System.EventHandler(this.Speed200MenuItem_Click); - // - // Speed400MenuItem - // - this.Speed400MenuItem.Text = "Speed 400%"; - this.Speed400MenuItem.Click += new System.EventHandler(this.Speed400MenuItem_Click); - // - // KeyPrioritySubMenu - // - this.KeyPrioritySubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripMenuItem17.Text = "Skip 1..9"; + // + // Frameskip1MenuItem + // + this.Frameskip1MenuItem.Text = "1"; + this.Frameskip1MenuItem.Click += new System.EventHandler(this.Frameskip1MenuItem_Click); + // + // Frameskip2MenuItem + // + this.Frameskip2MenuItem.Text = "2"; + this.Frameskip2MenuItem.Click += new System.EventHandler(this.Frameskip2MenuItem_Click); + // + // Frameskip3MenuItem + // + this.Frameskip3MenuItem.Text = "3"; + this.Frameskip3MenuItem.Click += new System.EventHandler(this.Frameskip3MenuItem_Click); + // + // Frameskip4MenuItem + // + this.Frameskip4MenuItem.Text = "4"; + this.Frameskip4MenuItem.Click += new System.EventHandler(this.Frameskip4MenuItem_Click); + // + // Frameskip5MenuItem + // + this.Frameskip5MenuItem.Text = "5"; + this.Frameskip5MenuItem.Click += new System.EventHandler(this.Frameskip5MenuItem_Click); + // + // Frameskip6MenuItem + // + this.Frameskip6MenuItem.Text = "6"; + this.Frameskip6MenuItem.Click += new System.EventHandler(this.Frameskip6MenuItem_Click); + // + // Frameskip7MenuItem + // + this.Frameskip7MenuItem.Text = "7"; + this.Frameskip7MenuItem.Click += new System.EventHandler(this.Frameskip7MenuItem_Click); + // + // Frameskip8MenuItem + // + this.Frameskip8MenuItem.Text = "8"; + this.Frameskip8MenuItem.Click += new System.EventHandler(this.Frameskip8MenuItem_Click); + // + // Frameskip9MenuItem + // + this.Frameskip9MenuItem.Text = "9"; + this.Frameskip9MenuItem.Click += new System.EventHandler(this.Frameskip9MenuItem_Click); + // + // Speed50MenuItem + // + this.Speed50MenuItem.Text = "Speed 50%"; + this.Speed50MenuItem.Click += new System.EventHandler(this.Speed50MenuItem_Click); + // + // Speed75MenuItem + // + this.Speed75MenuItem.Text = "Speed 75%"; + this.Speed75MenuItem.Click += new System.EventHandler(this.Speed75MenuItem_Click); + // + // Speed100MenuItem + // + this.Speed100MenuItem.Text = "Speed 100%"; + this.Speed100MenuItem.Click += new System.EventHandler(this.Speed100MenuItem_Click); + // + // Speed150MenuItem + // + this.Speed150MenuItem.Text = "Speed 150%"; + this.Speed150MenuItem.Click += new System.EventHandler(this.Speed150MenuItem_Click); + // + // Speed200MenuItem + // + this.Speed200MenuItem.Text = "Speed 200%"; + this.Speed200MenuItem.Click += new System.EventHandler(this.Speed200MenuItem_Click); + // + // Speed400MenuItem + // + this.Speed400MenuItem.Text = "Speed 400%"; + this.Speed400MenuItem.Click += new System.EventHandler(this.Speed400MenuItem_Click); + // + // KeyPrioritySubMenu + // + this.KeyPrioritySubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.BothHkAndControllerMenuItem, this.InputOverHkMenuItem, this.HkOverInputMenuItem}); - this.KeyPrioritySubMenu.Text = "Key Priority"; - this.KeyPrioritySubMenu.DropDownOpened += new System.EventHandler(this.KeyPriorityMenuItem_DropDownOpened); - // - // BothHkAndControllerMenuItem - // - this.BothHkAndControllerMenuItem.Text = "Both Hotkeys and Controllers"; - this.BothHkAndControllerMenuItem.Click += new System.EventHandler(this.BothHkAndControllerMenuItem_Click); - // - // InputOverHkMenuItem - // - this.InputOverHkMenuItem.Text = "Input overrides Hotkeys"; - this.InputOverHkMenuItem.Click += new System.EventHandler(this.InputOverHkMenuItem_Click); - // - // HkOverInputMenuItem - // - this.HkOverInputMenuItem.Text = "Hotkeys override Input"; - this.HkOverInputMenuItem.Click += new System.EventHandler(this.HkOverInputMenuItem_Click); - // - // CoresSubMenu - // - this.CoresSubMenu.Text = "Preferred Cores"; - // - // SaveConfigMenuItem - // - this.SaveConfigMenuItem.Text = "Save Config"; - this.SaveConfigMenuItem.Click += new System.EventHandler(this.SaveConfigMenuItem_Click); - // - // SaveConfigAsMenuItem - // - this.SaveConfigAsMenuItem.Text = "Save Config As..."; - this.SaveConfigAsMenuItem.Click += new System.EventHandler(this.SaveConfigAsMenuItem_Click); - // - // LoadConfigMenuItem - // - this.LoadConfigMenuItem.Text = "Load Config"; - this.LoadConfigMenuItem.Click += new System.EventHandler(this.LoadConfigMenuItem_Click); - // - // LoadConfigFromMenuItem - // - this.LoadConfigFromMenuItem.Text = "Load Config From..."; - this.LoadConfigFromMenuItem.Click += new System.EventHandler(this.LoadConfigFromMenuItem_Click); - // - // ToolsSubMenu - // - this.ToolsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.KeyPrioritySubMenu.Text = "Key Priority"; + this.KeyPrioritySubMenu.DropDownOpened += new System.EventHandler(this.KeyPriorityMenuItem_DropDownOpened); + // + // BothHkAndControllerMenuItem + // + this.BothHkAndControllerMenuItem.Text = "Both Hotkeys and Controllers"; + this.BothHkAndControllerMenuItem.Click += new System.EventHandler(this.BothHkAndControllerMenuItem_Click); + // + // InputOverHkMenuItem + // + this.InputOverHkMenuItem.Text = "Input overrides Hotkeys"; + this.InputOverHkMenuItem.Click += new System.EventHandler(this.InputOverHkMenuItem_Click); + // + // HkOverInputMenuItem + // + this.HkOverInputMenuItem.Text = "Hotkeys override Input"; + this.HkOverInputMenuItem.Click += new System.EventHandler(this.HkOverInputMenuItem_Click); + // + // CoresSubMenu + // + this.CoresSubMenu.Text = "Preferred Cores"; + // + // SaveConfigMenuItem + // + this.SaveConfigMenuItem.Text = "Save Config"; + this.SaveConfigMenuItem.Click += new System.EventHandler(this.SaveConfigMenuItem_Click); + // + // SaveConfigAsMenuItem + // + this.SaveConfigAsMenuItem.Text = "Save Config As..."; + this.SaveConfigAsMenuItem.Click += new System.EventHandler(this.SaveConfigAsMenuItem_Click); + // + // LoadConfigMenuItem + // + this.LoadConfigMenuItem.Text = "Load Config"; + this.LoadConfigMenuItem.Click += new System.EventHandler(this.LoadConfigMenuItem_Click); + // + // LoadConfigFromMenuItem + // + this.LoadConfigFromMenuItem.Text = "Load Config From..."; + this.LoadConfigFromMenuItem.Click += new System.EventHandler(this.LoadConfigFromMenuItem_Click); + // + // ToolsSubMenu + // + this.ToolsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ToolBoxMenuItem, this.toolStripSeparator12, this.RamWatchMenuItem, @@ -1355,122 +1355,122 @@ private void InitializeComponent() this.BatchRunnerMenuItem, this.ExternalToolMenuItem, this.RetroAchievementsMenuItem}); - this.ToolsSubMenu.Text = "&Tools"; - this.ToolsSubMenu.DropDownOpened += new System.EventHandler(this.ToolsSubMenu_DropDownOpened); - // - // ToolBoxMenuItem - // - this.ToolBoxMenuItem.Text = "&Tool Box"; - this.ToolBoxMenuItem.Click += new System.EventHandler(this.ToolBoxMenuItem_Click); - // - // RamWatchMenuItem - // - this.RamWatchMenuItem.Text = "RAM &Watch"; - this.RamWatchMenuItem.Click += new System.EventHandler(this.RamWatchMenuItem_Click); - // - // RamSearchMenuItem - // - this.RamSearchMenuItem.Text = "RAM &Search"; - this.RamSearchMenuItem.Click += new System.EventHandler(this.RamSearchMenuItem_Click); - // - // LuaConsoleMenuItem - // - this.LuaConsoleMenuItem.Text = "Lua Console"; - this.LuaConsoleMenuItem.Click += new System.EventHandler(this.LuaConsoleMenuItem_Click); - // - // TAStudioMenuItem - // - this.TAStudioMenuItem.Text = "&TAStudio"; - this.TAStudioMenuItem.Click += new System.EventHandler(this.TAStudioMenuItem_Click); - // - // TAStudioMPRToolStripMenuItem - // - this.TAStudioMPRToolStripMenuItem.Name = "TAStudioMPRToolStripMenuItem"; - this.TAStudioMPRToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.TAStudioMPRToolStripMenuItem.Text = "TAStudioMPR"; - this.TAStudioMPRToolStripMenuItem.Click += new System.EventHandler(this.TAStudioMPRToolStripMenuItem_Click); - // - // HexEditorMenuItem - // - this.HexEditorMenuItem.Text = "&Hex Editor"; - this.HexEditorMenuItem.Click += new System.EventHandler(this.HexEditorMenuItem_Click); - // - // TraceLoggerMenuItem - // - this.TraceLoggerMenuItem.Text = "Trace &Logger"; - this.TraceLoggerMenuItem.Click += new System.EventHandler(this.TraceLoggerMenuItem_Click); - // - // DebuggerMenuItem - // - this.DebuggerMenuItem.Text = "&Debugger"; - this.DebuggerMenuItem.Click += new System.EventHandler(this.DebuggerMenuItem_Click); - // - // CodeDataLoggerMenuItem - // - this.CodeDataLoggerMenuItem.Text = "Code-Data Logger"; - this.CodeDataLoggerMenuItem.Click += new System.EventHandler(this.CodeDataLoggerMenuItem_Click); - // - // MacroToolMenuItem - // - this.MacroToolMenuItem.Text = "&Macro Tool"; - this.MacroToolMenuItem.Click += new System.EventHandler(this.MacroToolMenuItem_Click); - // - // VirtualPadMenuItem - // - this.VirtualPadMenuItem.Text = "Virtual Pad"; - this.VirtualPadMenuItem.Click += new System.EventHandler(this.VirtualPadMenuItem_Click); - // - // BasicBotMenuItem - // - this.BasicBotMenuItem.Text = "Basic Bot"; - this.BasicBotMenuItem.Click += new System.EventHandler(this.BasicBotMenuItem_Click); - // - // CheatsMenuItem - // - this.CheatsMenuItem.Text = "Cheats"; - this.CheatsMenuItem.Click += new System.EventHandler(this.CheatsMenuItem_Click); - // - // GameSharkConverterMenuItem - // - this.GameSharkConverterMenuItem.Text = "Cheat Code Converter"; - this.GameSharkConverterMenuItem.Click += new System.EventHandler(this.CheatCodeConverterMenuItem_Click); - // - // MultiDiskBundlerFileMenuItem - // - this.MultiDiskBundlerFileMenuItem.Text = "Multi-disk Bundler"; - this.MultiDiskBundlerFileMenuItem.Click += new System.EventHandler(this.MultidiskBundlerMenuItem_Click); - // - // BatchRunnerMenuItem - // - this.BatchRunnerMenuItem.Text = "Batch Runner..."; - this.BatchRunnerMenuItem.Visible = false; - this.BatchRunnerMenuItem.Click += new System.EventHandler(this.BatchRunnerMenuItem_Click); - // - // ExternalToolMenuItem - // - this.ExternalToolMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolsSubMenu.Text = "&Tools"; + this.ToolsSubMenu.DropDownOpened += new System.EventHandler(this.ToolsSubMenu_DropDownOpened); + // + // ToolBoxMenuItem + // + this.ToolBoxMenuItem.Text = "&Tool Box"; + this.ToolBoxMenuItem.Click += new System.EventHandler(this.ToolBoxMenuItem_Click); + // + // RamWatchMenuItem + // + this.RamWatchMenuItem.Text = "RAM &Watch"; + this.RamWatchMenuItem.Click += new System.EventHandler(this.RamWatchMenuItem_Click); + // + // RamSearchMenuItem + // + this.RamSearchMenuItem.Text = "RAM &Search"; + this.RamSearchMenuItem.Click += new System.EventHandler(this.RamSearchMenuItem_Click); + // + // LuaConsoleMenuItem + // + this.LuaConsoleMenuItem.Text = "Lua Console"; + this.LuaConsoleMenuItem.Click += new System.EventHandler(this.LuaConsoleMenuItem_Click); + // + // TAStudioMenuItem + // + this.TAStudioMenuItem.Text = "&TAStudio"; + this.TAStudioMenuItem.Click += new System.EventHandler(this.TAStudioMenuItem_Click); + // + // TAStudioMPRToolStripMenuItem + // + this.TAStudioMPRToolStripMenuItem.Name = "TAStudioMPRToolStripMenuItem"; + this.TAStudioMPRToolStripMenuItem.Size = new System.Drawing.Size(191, 22); + this.TAStudioMPRToolStripMenuItem.Text = "TAStudioMPR"; + this.TAStudioMPRToolStripMenuItem.Click += new System.EventHandler(this.TAStudioMPRToolStripMenuItem_Click); + // + // HexEditorMenuItem + // + this.HexEditorMenuItem.Text = "&Hex Editor"; + this.HexEditorMenuItem.Click += new System.EventHandler(this.HexEditorMenuItem_Click); + // + // TraceLoggerMenuItem + // + this.TraceLoggerMenuItem.Text = "Trace &Logger"; + this.TraceLoggerMenuItem.Click += new System.EventHandler(this.TraceLoggerMenuItem_Click); + // + // DebuggerMenuItem + // + this.DebuggerMenuItem.Text = "&Debugger"; + this.DebuggerMenuItem.Click += new System.EventHandler(this.DebuggerMenuItem_Click); + // + // CodeDataLoggerMenuItem + // + this.CodeDataLoggerMenuItem.Text = "Code-Data Logger"; + this.CodeDataLoggerMenuItem.Click += new System.EventHandler(this.CodeDataLoggerMenuItem_Click); + // + // MacroToolMenuItem + // + this.MacroToolMenuItem.Text = "&Macro Tool"; + this.MacroToolMenuItem.Click += new System.EventHandler(this.MacroToolMenuItem_Click); + // + // VirtualPadMenuItem + // + this.VirtualPadMenuItem.Text = "Virtual Pad"; + this.VirtualPadMenuItem.Click += new System.EventHandler(this.VirtualPadMenuItem_Click); + // + // BasicBotMenuItem + // + this.BasicBotMenuItem.Text = "Basic Bot"; + this.BasicBotMenuItem.Click += new System.EventHandler(this.BasicBotMenuItem_Click); + // + // CheatsMenuItem + // + this.CheatsMenuItem.Text = "Cheats"; + this.CheatsMenuItem.Click += new System.EventHandler(this.CheatsMenuItem_Click); + // + // GameSharkConverterMenuItem + // + this.GameSharkConverterMenuItem.Text = "Cheat Code Converter"; + this.GameSharkConverterMenuItem.Click += new System.EventHandler(this.CheatCodeConverterMenuItem_Click); + // + // MultiDiskBundlerFileMenuItem + // + this.MultiDiskBundlerFileMenuItem.Text = "Multi-disk Bundler"; + this.MultiDiskBundlerFileMenuItem.Click += new System.EventHandler(this.MultidiskBundlerMenuItem_Click); + // + // BatchRunnerMenuItem + // + this.BatchRunnerMenuItem.Text = "Batch Runner..."; + this.BatchRunnerMenuItem.Visible = false; + this.BatchRunnerMenuItem.Click += new System.EventHandler(this.BatchRunnerMenuItem_Click); + // + // ExternalToolMenuItem + // + this.ExternalToolMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.dummyExternalTool}); - this.ExternalToolMenuItem.Text = "External Tool"; - this.ExternalToolMenuItem.DropDownOpening += new System.EventHandler(this.ExternalToolMenuItem_DropDownOpening); - // - // dummyExternalTool - // - this.dummyExternalTool.Text = "None"; - // - // RetroAchievementsMenuItem - // - this.RetroAchievementsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ExternalToolMenuItem.Text = "External Tool"; + this.ExternalToolMenuItem.DropDownOpening += new System.EventHandler(this.ExternalToolMenuItem_DropDownOpening); + // + // dummyExternalTool + // + this.dummyExternalTool.Text = "None"; + // + // RetroAchievementsMenuItem + // + this.RetroAchievementsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.StartRetroAchievementsMenuItem}); - this.RetroAchievementsMenuItem.Text = "&RetroAchievements"; - // - // StartRetroAchievementsMenuItem - // - this.StartRetroAchievementsMenuItem.Text = "&Start RetroAchievements"; - this.StartRetroAchievementsMenuItem.Click += new System.EventHandler(this.StartRetroAchievementsMenuItem_Click); - // - // NESSubMenu - // - this.NESSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.RetroAchievementsMenuItem.Text = "&RetroAchievements"; + // + // StartRetroAchievementsMenuItem + // + this.StartRetroAchievementsMenuItem.Text = "&Start RetroAchievements"; + this.StartRetroAchievementsMenuItem.Click += new System.EventHandler(this.StartRetroAchievementsMenuItem_Click); + // + // NESSubMenu + // + this.NESSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.NESPPUViewerMenuItem, this.NESNametableViewerMenuItem, this.MusicRipperMenuItem, @@ -1484,520 +1484,520 @@ private void InitializeComponent() this.FDSControlsMenuItem, this.VSControlsMenuItem, this.BarcodeReaderMenuItem}); - this.NESSubMenu.Text = "&NES"; - this.NESSubMenu.DropDownOpened += new System.EventHandler(this.NesSubMenu_DropDownOpened); - // - // NESPPUViewerMenuItem - // - this.NESPPUViewerMenuItem.Text = "&PPU Viewer"; - this.NESPPUViewerMenuItem.Click += new System.EventHandler(this.NesPpuViewerMenuItem_Click); - // - // NESNametableViewerMenuItem - // - this.NESNametableViewerMenuItem.Text = "&Nametable Viewer"; - this.NESNametableViewerMenuItem.Click += new System.EventHandler(this.NesNametableViewerMenuItem_Click); - // - // MusicRipperMenuItem - // - this.MusicRipperMenuItem.Text = "Music Ripper"; - this.MusicRipperMenuItem.Click += new System.EventHandler(this.MusicRipperMenuItem_Click); - // - // NesControllerSettingsMenuItem - // - this.NesControllerSettingsMenuItem.Text = "Controller Settings..."; - this.NesControllerSettingsMenuItem.Click += new System.EventHandler(this.NesControllerSettingsMenuItem_Click); - // - // NESGraphicSettingsMenuItem - // - this.NESGraphicSettingsMenuItem.Text = "Graphics Settings..."; - this.NESGraphicSettingsMenuItem.Click += new System.EventHandler(this.NesGraphicSettingsMenuItem_Click); - // - // NESSoundChannelsMenuItem - // - this.NESSoundChannelsMenuItem.Text = "Sound Channels..."; - this.NESSoundChannelsMenuItem.Click += new System.EventHandler(this.NesSoundChannelsMenuItem_Click); - // - // VSSettingsMenuItem - // - this.VSSettingsMenuItem.Text = "VS Settings..."; - this.VSSettingsMenuItem.Click += new System.EventHandler(this.VsSettingsMenuItem_Click); - // - // MovieSettingsMenuItem - // - this.MovieSettingsMenuItem.Text = "Advanced Settings..."; - this.MovieSettingsMenuItem.Click += new System.EventHandler(this.MovieSettingsMenuItem_Click); - // - // FDSControlsMenuItem - // - this.FDSControlsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.NESSubMenu.Text = "&NES"; + this.NESSubMenu.DropDownOpened += new System.EventHandler(this.NesSubMenu_DropDownOpened); + // + // NESPPUViewerMenuItem + // + this.NESPPUViewerMenuItem.Text = "&PPU Viewer"; + this.NESPPUViewerMenuItem.Click += new System.EventHandler(this.NesPpuViewerMenuItem_Click); + // + // NESNametableViewerMenuItem + // + this.NESNametableViewerMenuItem.Text = "&Nametable Viewer"; + this.NESNametableViewerMenuItem.Click += new System.EventHandler(this.NesNametableViewerMenuItem_Click); + // + // MusicRipperMenuItem + // + this.MusicRipperMenuItem.Text = "Music Ripper"; + this.MusicRipperMenuItem.Click += new System.EventHandler(this.MusicRipperMenuItem_Click); + // + // NesControllerSettingsMenuItem + // + this.NesControllerSettingsMenuItem.Text = "Controller Settings..."; + this.NesControllerSettingsMenuItem.Click += new System.EventHandler(this.NesControllerSettingsMenuItem_Click); + // + // NESGraphicSettingsMenuItem + // + this.NESGraphicSettingsMenuItem.Text = "Graphics Settings..."; + this.NESGraphicSettingsMenuItem.Click += new System.EventHandler(this.NesGraphicSettingsMenuItem_Click); + // + // NESSoundChannelsMenuItem + // + this.NESSoundChannelsMenuItem.Text = "Sound Channels..."; + this.NESSoundChannelsMenuItem.Click += new System.EventHandler(this.NesSoundChannelsMenuItem_Click); + // + // VSSettingsMenuItem + // + this.VSSettingsMenuItem.Text = "VS Settings..."; + this.VSSettingsMenuItem.Click += new System.EventHandler(this.VsSettingsMenuItem_Click); + // + // MovieSettingsMenuItem + // + this.MovieSettingsMenuItem.Text = "Advanced Settings..."; + this.MovieSettingsMenuItem.Click += new System.EventHandler(this.MovieSettingsMenuItem_Click); + // + // FDSControlsMenuItem + // + this.FDSControlsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FdsEjectDiskMenuItem}); - this.FDSControlsMenuItem.Text = "FDS Controls"; - this.FDSControlsMenuItem.DropDownOpened += new System.EventHandler(this.FdsControlsMenuItem_DropDownOpened); - // - // FdsEjectDiskMenuItem - // - this.FdsEjectDiskMenuItem.Text = "&Eject Disk"; - this.FdsEjectDiskMenuItem.Click += new System.EventHandler(this.FdsEjectDiskMenuItem_Click); - // - // VSControlsMenuItem - // - this.VSControlsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.FDSControlsMenuItem.Text = "FDS Controls"; + this.FDSControlsMenuItem.DropDownOpened += new System.EventHandler(this.FdsControlsMenuItem_DropDownOpened); + // + // FdsEjectDiskMenuItem + // + this.FdsEjectDiskMenuItem.Text = "&Eject Disk"; + this.FdsEjectDiskMenuItem.Click += new System.EventHandler(this.FdsEjectDiskMenuItem_Click); + // + // VSControlsMenuItem + // + this.VSControlsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.VSInsertCoinP1MenuItem, this.VSInsertCoinP2MenuItem, this.VSServiceSwitchMenuItem}); - this.VSControlsMenuItem.Text = "VS Controls"; - // - // VSInsertCoinP1MenuItem - // - this.VSInsertCoinP1MenuItem.Text = "Insert Coin P1"; - this.VSInsertCoinP1MenuItem.Click += new System.EventHandler(this.VsInsertCoinP1MenuItem_Click); - // - // VSInsertCoinP2MenuItem - // - this.VSInsertCoinP2MenuItem.Text = "Insert Coin P2"; - this.VSInsertCoinP2MenuItem.Click += new System.EventHandler(this.VsInsertCoinP2MenuItem_Click); - // - // VSServiceSwitchMenuItem - // - this.VSServiceSwitchMenuItem.Text = "Service Switch"; - this.VSServiceSwitchMenuItem.Click += new System.EventHandler(this.VsServiceSwitchMenuItem_Click); - // - // BarcodeReaderMenuItem - // - this.BarcodeReaderMenuItem.Text = "Barcode Reader"; - this.BarcodeReaderMenuItem.Click += new System.EventHandler(this.BarcodeReaderMenuItem_Click); - // - // TI83SubMenu - // - this.TI83SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.VSControlsMenuItem.Text = "VS Controls"; + // + // VSInsertCoinP1MenuItem + // + this.VSInsertCoinP1MenuItem.Text = "Insert Coin P1"; + this.VSInsertCoinP1MenuItem.Click += new System.EventHandler(this.VsInsertCoinP1MenuItem_Click); + // + // VSInsertCoinP2MenuItem + // + this.VSInsertCoinP2MenuItem.Text = "Insert Coin P2"; + this.VSInsertCoinP2MenuItem.Click += new System.EventHandler(this.VsInsertCoinP2MenuItem_Click); + // + // VSServiceSwitchMenuItem + // + this.VSServiceSwitchMenuItem.Text = "Service Switch"; + this.VSServiceSwitchMenuItem.Click += new System.EventHandler(this.VsServiceSwitchMenuItem_Click); + // + // BarcodeReaderMenuItem + // + this.BarcodeReaderMenuItem.Text = "Barcode Reader"; + this.BarcodeReaderMenuItem.Click += new System.EventHandler(this.BarcodeReaderMenuItem_Click); + // + // TI83SubMenu + // + this.TI83SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.KeypadMenuItem, this.LoadTIFileMenuItem, this.toolStripSeparator13, this.paletteToolStripMenuItem}); - this.TI83SubMenu.Text = "TI83"; - // - // KeypadMenuItem - // - this.KeypadMenuItem.Text = "Keypad"; - this.KeypadMenuItem.Click += new System.EventHandler(this.Ti83KeypadMenuItem_Click); - // - // LoadTIFileMenuItem - // - this.LoadTIFileMenuItem.Text = "Load TI-83 File..."; - this.LoadTIFileMenuItem.Click += new System.EventHandler(this.Ti83LoadTIFileMenuItem_Click); - // - // paletteToolStripMenuItem - // - this.paletteToolStripMenuItem.Text = "Palette..."; - this.paletteToolStripMenuItem.Click += new System.EventHandler(this.Ti83PaletteMenuItem_Click); - // - // A7800SubMenu - // - this.A7800SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.TI83SubMenu.Text = "TI83"; + // + // KeypadMenuItem + // + this.KeypadMenuItem.Text = "Keypad"; + this.KeypadMenuItem.Click += new System.EventHandler(this.Ti83KeypadMenuItem_Click); + // + // LoadTIFileMenuItem + // + this.LoadTIFileMenuItem.Text = "Load TI-83 File..."; + this.LoadTIFileMenuItem.Click += new System.EventHandler(this.Ti83LoadTIFileMenuItem_Click); + // + // paletteToolStripMenuItem + // + this.paletteToolStripMenuItem.Text = "Palette..."; + this.paletteToolStripMenuItem.Click += new System.EventHandler(this.Ti83PaletteMenuItem_Click); + // + // A7800SubMenu + // + this.A7800SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.A7800ControllerSettingsMenuItem, this.A7800FilterSettingsMenuItem}); - this.A7800SubMenu.Text = "&A7800"; - this.A7800SubMenu.DropDownOpened += new System.EventHandler(this.A7800SubMenu_DropDownOpened); - // - // A7800ControllerSettingsMenuItem - // - this.A7800ControllerSettingsMenuItem.Text = "Controller Settings"; - this.A7800ControllerSettingsMenuItem.Click += new System.EventHandler(this.A7800ControllerSettingsMenuItem_Click); - // - // A7800FilterSettingsMenuItem - // - this.A7800FilterSettingsMenuItem.Text = "Filter Settings"; - this.A7800FilterSettingsMenuItem.Click += new System.EventHandler(this.A7800FilterSettingsMenuItem_Click); - // - // GBSubMenu - // - this.GBSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.A7800SubMenu.Text = "&A7800"; + this.A7800SubMenu.DropDownOpened += new System.EventHandler(this.A7800SubMenu_DropDownOpened); + // + // A7800ControllerSettingsMenuItem + // + this.A7800ControllerSettingsMenuItem.Text = "Controller Settings"; + this.A7800ControllerSettingsMenuItem.Click += new System.EventHandler(this.A7800ControllerSettingsMenuItem_Click); + // + // A7800FilterSettingsMenuItem + // + this.A7800FilterSettingsMenuItem.Text = "Filter Settings"; + this.A7800FilterSettingsMenuItem.Click += new System.EventHandler(this.A7800FilterSettingsMenuItem_Click); + // + // GBSubMenu + // + this.GBSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.GBcoreSettingsToolStripMenuItem, this.SameBoyColorChooserMenuItem, this.toolStripSeparator28, this.GBGPUViewerMenuItem, this.GBPrinterViewerMenuItem}); - this.GBSubMenu.Text = "&GB"; - // - // GBcoreSettingsToolStripMenuItem - // - this.GBcoreSettingsToolStripMenuItem.Text = "Settings..."; - this.GBcoreSettingsToolStripMenuItem.Click += new System.EventHandler(this.GbCoreSettingsMenuItem_Click); - // - // SameBoyColorChooserMenuItem - // - this.SameBoyColorChooserMenuItem.Text = "&Choose Custom Palette..."; - this.SameBoyColorChooserMenuItem.Click += new System.EventHandler(this.SameboyColorChooserMenuItem_Click); - // - // GBGPUViewerMenuItem - // - this.GBGPUViewerMenuItem.Text = "GPU Viewer"; - this.GBGPUViewerMenuItem.Click += new System.EventHandler(this.GbGpuViewerMenuItem_Click); - // - // GBPrinterViewerMenuItem - // - this.GBPrinterViewerMenuItem.Text = "&Printer Viewer"; - this.GBPrinterViewerMenuItem.Click += new System.EventHandler(this.GbPrinterViewerMenuItem_Click); - // - // PSXSubMenu - // - this.PSXSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.GBSubMenu.Text = "&GB"; + // + // GBcoreSettingsToolStripMenuItem + // + this.GBcoreSettingsToolStripMenuItem.Text = "Settings..."; + this.GBcoreSettingsToolStripMenuItem.Click += new System.EventHandler(this.GbCoreSettingsMenuItem_Click); + // + // SameBoyColorChooserMenuItem + // + this.SameBoyColorChooserMenuItem.Text = "&Choose Custom Palette..."; + this.SameBoyColorChooserMenuItem.Click += new System.EventHandler(this.SameboyColorChooserMenuItem_Click); + // + // GBGPUViewerMenuItem + // + this.GBGPUViewerMenuItem.Text = "GPU Viewer"; + this.GBGPUViewerMenuItem.Click += new System.EventHandler(this.GbGpuViewerMenuItem_Click); + // + // GBPrinterViewerMenuItem + // + this.GBPrinterViewerMenuItem.Text = "&Printer Viewer"; + this.GBPrinterViewerMenuItem.Click += new System.EventHandler(this.GbPrinterViewerMenuItem_Click); + // + // PSXSubMenu + // + this.PSXSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.PSXControllerSettingsMenuItem, this.PSXOptionsMenuItem, this.PSXDiscControlsMenuItem, this.PSXHashDiscsToolStripMenuItem}); - this.PSXSubMenu.Text = "PSX"; - this.PSXSubMenu.DropDownOpened += new System.EventHandler(this.PsxSubMenu_DropDownOpened); - // - // PSXControllerSettingsMenuItem - // - this.PSXControllerSettingsMenuItem.Text = "Controller / Memcard Settings"; - this.PSXControllerSettingsMenuItem.Click += new System.EventHandler(this.PsxControllerSettingsMenuItem_Click); - // - // PSXOptionsMenuItem - // - this.PSXOptionsMenuItem.Text = "&Options"; - this.PSXOptionsMenuItem.Click += new System.EventHandler(this.PsxOptionsMenuItem_Click); - // - // PSXDiscControlsMenuItem - // - this.PSXDiscControlsMenuItem.Text = "&Disc Controls"; - this.PSXDiscControlsMenuItem.Click += new System.EventHandler(this.PsxDiscControlsMenuItem_Click); - // - // PSXHashDiscsToolStripMenuItem - // - this.PSXHashDiscsToolStripMenuItem.Text = "&Hash Discs"; - this.PSXHashDiscsToolStripMenuItem.Click += new System.EventHandler(this.PsxHashDiscsMenuItem_Click); - // - // SNESSubMenu - // - this.SNESSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.PSXSubMenu.Text = "PSX"; + this.PSXSubMenu.DropDownOpened += new System.EventHandler(this.PsxSubMenu_DropDownOpened); + // + // PSXControllerSettingsMenuItem + // + this.PSXControllerSettingsMenuItem.Text = "Controller / Memcard Settings"; + this.PSXControllerSettingsMenuItem.Click += new System.EventHandler(this.PsxControllerSettingsMenuItem_Click); + // + // PSXOptionsMenuItem + // + this.PSXOptionsMenuItem.Text = "&Options"; + this.PSXOptionsMenuItem.Click += new System.EventHandler(this.PsxOptionsMenuItem_Click); + // + // PSXDiscControlsMenuItem + // + this.PSXDiscControlsMenuItem.Text = "&Disc Controls"; + this.PSXDiscControlsMenuItem.Click += new System.EventHandler(this.PsxDiscControlsMenuItem_Click); + // + // PSXHashDiscsToolStripMenuItem + // + this.PSXHashDiscsToolStripMenuItem.Text = "&Hash Discs"; + this.PSXHashDiscsToolStripMenuItem.Click += new System.EventHandler(this.PsxHashDiscsMenuItem_Click); + // + // SNESSubMenu + // + this.SNESSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SNESControllerConfigurationMenuItem, this.toolStripSeparator18, this.SnesGfxDebuggerMenuItem, this.SnesOptionsMenuItem}); - this.SNESSubMenu.Text = "&SNES"; - this.SNESSubMenu.DropDownOpened += new System.EventHandler(this.SnesSubMenu_DropDownOpened); - // - // SNESControllerConfigurationMenuItem - // - this.SNESControllerConfigurationMenuItem.Text = "Controller Configuration"; - this.SNESControllerConfigurationMenuItem.Click += new System.EventHandler(this.SNESControllerConfigurationMenuItem_Click); - // - // SnesGfxDebuggerMenuItem - // - this.SnesGfxDebuggerMenuItem.Text = "Graphics Debugger"; - this.SnesGfxDebuggerMenuItem.Click += new System.EventHandler(this.SnesGfxDebuggerMenuItem_Click); - // - // SnesOptionsMenuItem - // - this.SnesOptionsMenuItem.Text = "&Options"; - this.SnesOptionsMenuItem.Click += new System.EventHandler(this.SnesOptionsMenuItem_Click); - // - // ColecoSubMenu - // - this.ColecoSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.SNESSubMenu.Text = "&SNES"; + this.SNESSubMenu.DropDownOpened += new System.EventHandler(this.SnesSubMenu_DropDownOpened); + // + // SNESControllerConfigurationMenuItem + // + this.SNESControllerConfigurationMenuItem.Text = "Controller Configuration"; + this.SNESControllerConfigurationMenuItem.Click += new System.EventHandler(this.SNESControllerConfigurationMenuItem_Click); + // + // SnesGfxDebuggerMenuItem + // + this.SnesGfxDebuggerMenuItem.Text = "Graphics Debugger"; + this.SnesGfxDebuggerMenuItem.Click += new System.EventHandler(this.SnesGfxDebuggerMenuItem_Click); + // + // SnesOptionsMenuItem + // + this.SnesOptionsMenuItem.Text = "&Options"; + this.SnesOptionsMenuItem.Click += new System.EventHandler(this.SnesOptionsMenuItem_Click); + // + // ColecoSubMenu + // + this.ColecoSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ColecoControllerSettingsMenuItem, this.toolStripSeparator35, this.ColecoSkipBiosMenuItem, this.ColecoUseSGMMenuItem}); - this.ColecoSubMenu.Text = "&Coleco"; - this.ColecoSubMenu.DropDownOpened += new System.EventHandler(this.ColecoSubMenu_DropDownOpened); - // - // ColecoControllerSettingsMenuItem - // - this.ColecoControllerSettingsMenuItem.Text = "&Controller Settings..."; - this.ColecoControllerSettingsMenuItem.Click += new System.EventHandler(this.ColecoControllerSettingsMenuItem_Click); - // - // ColecoSkipBiosMenuItem - // - this.ColecoSkipBiosMenuItem.Text = "&Skip BIOS intro (When Applicable)"; - this.ColecoSkipBiosMenuItem.Click += new System.EventHandler(this.ColecoSkipBiosMenuItem_Click); - // - // ColecoUseSGMMenuItem - // - this.ColecoUseSGMMenuItem.Text = "&Use the Super Game Module"; - this.ColecoUseSGMMenuItem.Click += new System.EventHandler(this.ColecoUseSGMMenuItem_Click); - // - // N64SubMenu - // - this.N64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ColecoSubMenu.Text = "&Coleco"; + this.ColecoSubMenu.DropDownOpened += new System.EventHandler(this.ColecoSubMenu_DropDownOpened); + // + // ColecoControllerSettingsMenuItem + // + this.ColecoControllerSettingsMenuItem.Text = "&Controller Settings..."; + this.ColecoControllerSettingsMenuItem.Click += new System.EventHandler(this.ColecoControllerSettingsMenuItem_Click); + // + // ColecoSkipBiosMenuItem + // + this.ColecoSkipBiosMenuItem.Text = "&Skip BIOS intro (When Applicable)"; + this.ColecoSkipBiosMenuItem.Click += new System.EventHandler(this.ColecoSkipBiosMenuItem_Click); + // + // ColecoUseSGMMenuItem + // + this.ColecoUseSGMMenuItem.Text = "&Use the Super Game Module"; + this.ColecoUseSGMMenuItem.Click += new System.EventHandler(this.ColecoUseSGMMenuItem_Click); + // + // N64SubMenu + // + this.N64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.N64PluginSettingsMenuItem, this.N64ControllerSettingsMenuItem, this.toolStripSeparator23, this.N64CircularAnalogRangeMenuItem, this.MupenStyleLagMenuItem, this.N64ExpansionSlotMenuItem}); - this.N64SubMenu.Text = "N64"; - this.N64SubMenu.DropDownOpened += new System.EventHandler(this.N64SubMenu_DropDownOpened); - // - // N64PluginSettingsMenuItem - // - this.N64PluginSettingsMenuItem.Text = "Plugins"; - this.N64PluginSettingsMenuItem.Click += new System.EventHandler(this.N64PluginSettingsMenuItem_Click); - // - // N64ControllerSettingsMenuItem - // - this.N64ControllerSettingsMenuItem.Text = "Controller Settings..."; - this.N64ControllerSettingsMenuItem.Click += new System.EventHandler(this.N64ControllerSettingsMenuItem_Click); - // - // N64CircularAnalogRangeMenuItem - // - this.N64CircularAnalogRangeMenuItem.Text = "Circular Analog Range"; - this.N64CircularAnalogRangeMenuItem.Click += new System.EventHandler(this.N64CircularAnalogRangeMenuItem_Click); - // - // MupenStyleLagMenuItem - // - this.MupenStyleLagMenuItem.Text = "&Mupen Style Lag Frames"; - this.MupenStyleLagMenuItem.Click += new System.EventHandler(this.MupenStyleLagMenuItem_Click); - // - // N64ExpansionSlotMenuItem - // - this.N64ExpansionSlotMenuItem.Text = "&Use Expansion Slot"; - this.N64ExpansionSlotMenuItem.Click += new System.EventHandler(this.N64ExpansionSlotMenuItem_Click); - // - // Ares64SubMenu - // - this.Ares64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.N64SubMenu.Text = "N64"; + this.N64SubMenu.DropDownOpened += new System.EventHandler(this.N64SubMenu_DropDownOpened); + // + // N64PluginSettingsMenuItem + // + this.N64PluginSettingsMenuItem.Text = "Plugins"; + this.N64PluginSettingsMenuItem.Click += new System.EventHandler(this.N64PluginSettingsMenuItem_Click); + // + // N64ControllerSettingsMenuItem + // + this.N64ControllerSettingsMenuItem.Text = "Controller Settings..."; + this.N64ControllerSettingsMenuItem.Click += new System.EventHandler(this.N64ControllerSettingsMenuItem_Click); + // + // N64CircularAnalogRangeMenuItem + // + this.N64CircularAnalogRangeMenuItem.Text = "Circular Analog Range"; + this.N64CircularAnalogRangeMenuItem.Click += new System.EventHandler(this.N64CircularAnalogRangeMenuItem_Click); + // + // MupenStyleLagMenuItem + // + this.MupenStyleLagMenuItem.Text = "&Mupen Style Lag Frames"; + this.MupenStyleLagMenuItem.Click += new System.EventHandler(this.MupenStyleLagMenuItem_Click); + // + // N64ExpansionSlotMenuItem + // + this.N64ExpansionSlotMenuItem.Text = "&Use Expansion Slot"; + this.N64ExpansionSlotMenuItem.Click += new System.EventHandler(this.N64ExpansionSlotMenuItem_Click); + // + // Ares64SubMenu + // + this.Ares64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.Ares64SettingsMenuItem, this.Ares64CircularAnalogRangeMenuItem}); - this.Ares64SubMenu.Text = "N64"; - this.Ares64SubMenu.DropDownOpened += new System.EventHandler(this.Ares64SubMenu_DropDownOpened); - // - // Ares64SettingsMenuItem - // - this.Ares64SettingsMenuItem.Text = "Settings..."; - this.Ares64SettingsMenuItem.Click += new System.EventHandler(this.Ares64SettingsMenuItem_Click); - // - // Ares64CircularAnalogRangeMenuItem - // - this.Ares64CircularAnalogRangeMenuItem.Text = "Circular Analog Range"; - this.Ares64CircularAnalogRangeMenuItem.Click += new System.EventHandler(this.N64CircularAnalogRangeMenuItem_Click); - // - // GBLSubMenu - // - this.GBLSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.Ares64SubMenu.Text = "N64"; + this.Ares64SubMenu.DropDownOpened += new System.EventHandler(this.Ares64SubMenu_DropDownOpened); + // + // Ares64SettingsMenuItem + // + this.Ares64SettingsMenuItem.Text = "Settings..."; + this.Ares64SettingsMenuItem.Click += new System.EventHandler(this.Ares64SettingsMenuItem_Click); + // + // Ares64CircularAnalogRangeMenuItem + // + this.Ares64CircularAnalogRangeMenuItem.Text = "Circular Analog Range"; + this.Ares64CircularAnalogRangeMenuItem.Click += new System.EventHandler(this.N64CircularAnalogRangeMenuItem_Click); + // + // GBLSubMenu + // + this.GBLSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.GBLsettingsToolStripMenuItem}); - this.GBLSubMenu.Text = "&GB Link"; - // - // GBLsettingsToolStripMenuItem - // - this.GBLsettingsToolStripMenuItem.Text = "Settings..."; - this.GBLsettingsToolStripMenuItem.Click += new System.EventHandler(this.GblSettingsMenuItem_Click); - // - // AppleSubMenu - // - this.AppleSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.GBLSubMenu.Text = "&GB Link"; + // + // GBLsettingsToolStripMenuItem + // + this.GBLsettingsToolStripMenuItem.Text = "Settings..."; + this.GBLsettingsToolStripMenuItem.Click += new System.EventHandler(this.GblSettingsMenuItem_Click); + // + // AppleSubMenu + // + this.AppleSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AppleDisksSubMenu, this.settingsToolStripMenuItem1}); - this.AppleSubMenu.Text = "Apple"; - this.AppleSubMenu.DropDownOpened += new System.EventHandler(this.AppleSubMenu_DropDownOpened); - // - // AppleDisksSubMenu - // - this.AppleDisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AppleSubMenu.Text = "Apple"; + this.AppleSubMenu.DropDownOpened += new System.EventHandler(this.AppleSubMenu_DropDownOpened); + // + // AppleDisksSubMenu + // + this.AppleDisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator31}); - this.AppleDisksSubMenu.Text = "Disks"; - this.AppleDisksSubMenu.DropDownOpened += new System.EventHandler(this.AppleDisksSubMenu_DropDownOpened); - // - // settingsToolStripMenuItem1 - // - this.settingsToolStripMenuItem1.Text = "&Settings..."; - this.settingsToolStripMenuItem1.Click += new System.EventHandler(this.AppleIISettingsMenuItem_Click); - // - // C64SubMenu - // - this.C64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AppleDisksSubMenu.Text = "Disks"; + this.AppleDisksSubMenu.DropDownOpened += new System.EventHandler(this.AppleDisksSubMenu_DropDownOpened); + // + // settingsToolStripMenuItem1 + // + this.settingsToolStripMenuItem1.Text = "&Settings..."; + this.settingsToolStripMenuItem1.Click += new System.EventHandler(this.AppleIISettingsMenuItem_Click); + // + // C64SubMenu + // + this.C64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.C64DisksSubMenu, this.C64SettingsMenuItem}); - this.C64SubMenu.Text = "&C64"; - this.C64SubMenu.DropDownOpened += new System.EventHandler(this.C64SubMenu_DropDownOpened); - // - // C64DisksSubMenu - // - this.C64DisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.C64SubMenu.Text = "&C64"; + this.C64SubMenu.DropDownOpened += new System.EventHandler(this.C64SubMenu_DropDownOpened); + // + // C64DisksSubMenu + // + this.C64DisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator36}); - this.C64DisksSubMenu.Text = "Disks"; - this.C64DisksSubMenu.DropDownOpened += new System.EventHandler(this.C64DisksSubMenu_DropDownOpened); - // - // C64SettingsMenuItem - // - this.C64SettingsMenuItem.Text = "&Settings..."; - this.C64SettingsMenuItem.Click += new System.EventHandler(this.C64SettingsMenuItem_Click); - // - // IntvSubMenu - // - this.IntvSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.C64DisksSubMenu.Text = "Disks"; + this.C64DisksSubMenu.DropDownOpened += new System.EventHandler(this.C64DisksSubMenu_DropDownOpened); + // + // C64SettingsMenuItem + // + this.C64SettingsMenuItem.Text = "&Settings..."; + this.C64SettingsMenuItem.Click += new System.EventHandler(this.C64SettingsMenuItem_Click); + // + // IntvSubMenu + // + this.IntvSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.IntVControllerSettingsMenuItem}); - this.IntvSubMenu.Text = "&Intv"; - this.IntvSubMenu.DropDownOpened += new System.EventHandler(this.IntVSubMenu_DropDownOpened); - // - // IntVControllerSettingsMenuItem - // - this.IntVControllerSettingsMenuItem.Text = "Controller Settings..."; - this.IntVControllerSettingsMenuItem.Click += new System.EventHandler(this.IntVControllerSettingsMenuItem_Click); - // - // zXSpectrumToolStripMenuItem - // - this.zXSpectrumToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.IntvSubMenu.Text = "&Intv"; + this.IntvSubMenu.DropDownOpened += new System.EventHandler(this.IntVSubMenu_DropDownOpened); + // + // IntVControllerSettingsMenuItem + // + this.IntVControllerSettingsMenuItem.Text = "Controller Settings..."; + this.IntVControllerSettingsMenuItem.Click += new System.EventHandler(this.IntVControllerSettingsMenuItem_Click); + // + // zXSpectrumToolStripMenuItem + // + this.zXSpectrumToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ZXSpectrumCoreEmulationSettingsMenuItem, this.ZXSpectrumControllerConfigurationMenuItem, this.ZXSpectrumAudioSettingsMenuItem, this.ZXSpectrumNonSyncSettingsMenuItem, this.ZXSpectrumMediaMenuItem}); - this.zXSpectrumToolStripMenuItem.Text = "ZX Spectrum"; - // - // ZXSpectrumCoreEmulationSettingsMenuItem - // - this.ZXSpectrumCoreEmulationSettingsMenuItem.Text = "Core Emulation Settings"; - this.ZXSpectrumCoreEmulationSettingsMenuItem.Click += new System.EventHandler(this.ZXSpectrumCoreEmulationSettingsMenuItem_Click); - // - // ZXSpectrumControllerConfigurationMenuItem - // - this.ZXSpectrumControllerConfigurationMenuItem.Text = "Joystick Configuration"; - this.ZXSpectrumControllerConfigurationMenuItem.Click += new System.EventHandler(this.ZXSpectrumControllerConfigurationMenuItem_Click); - // - // ZXSpectrumAudioSettingsMenuItem - // - this.ZXSpectrumAudioSettingsMenuItem.Text = "Audio Settings"; - this.ZXSpectrumAudioSettingsMenuItem.Click += new System.EventHandler(this.ZXSpectrumAudioSettingsMenuItem_Click); - // - // ZXSpectrumNonSyncSettingsMenuItem - // - this.ZXSpectrumNonSyncSettingsMenuItem.Text = "Non-Sync Settings"; - this.ZXSpectrumNonSyncSettingsMenuItem.Click += new System.EventHandler(this.ZXSpectrumNonSyncSettingsMenuItem_Click); - // - // ZXSpectrumMediaMenuItem - // - this.ZXSpectrumMediaMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.zXSpectrumToolStripMenuItem.Text = "ZX Spectrum"; + // + // ZXSpectrumCoreEmulationSettingsMenuItem + // + this.ZXSpectrumCoreEmulationSettingsMenuItem.Text = "Core Emulation Settings"; + this.ZXSpectrumCoreEmulationSettingsMenuItem.Click += new System.EventHandler(this.ZXSpectrumCoreEmulationSettingsMenuItem_Click); + // + // ZXSpectrumControllerConfigurationMenuItem + // + this.ZXSpectrumControllerConfigurationMenuItem.Text = "Joystick Configuration"; + this.ZXSpectrumControllerConfigurationMenuItem.Click += new System.EventHandler(this.ZXSpectrumControllerConfigurationMenuItem_Click); + // + // ZXSpectrumAudioSettingsMenuItem + // + this.ZXSpectrumAudioSettingsMenuItem.Text = "Audio Settings"; + this.ZXSpectrumAudioSettingsMenuItem.Click += new System.EventHandler(this.ZXSpectrumAudioSettingsMenuItem_Click); + // + // ZXSpectrumNonSyncSettingsMenuItem + // + this.ZXSpectrumNonSyncSettingsMenuItem.Text = "Non-Sync Settings"; + this.ZXSpectrumNonSyncSettingsMenuItem.Click += new System.EventHandler(this.ZXSpectrumNonSyncSettingsMenuItem_Click); + // + // ZXSpectrumMediaMenuItem + // + this.ZXSpectrumMediaMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ZXSpectrumTapesSubMenu, this.ZXSpectrumDisksSubMenu, this.ZXSpectrumExportSnapshotMenuItemMenuItem}); - this.ZXSpectrumMediaMenuItem.Text = "Media"; - this.ZXSpectrumMediaMenuItem.DropDownOpened += new System.EventHandler(this.ZXSpectrumMediaMenuItem_DropDownOpened); - // - // ZXSpectrumTapesSubMenu - // - this.ZXSpectrumTapesSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ZXSpectrumMediaMenuItem.Text = "Media"; + this.ZXSpectrumMediaMenuItem.DropDownOpened += new System.EventHandler(this.ZXSpectrumMediaMenuItem_DropDownOpened); + // + // ZXSpectrumTapesSubMenu + // + this.ZXSpectrumTapesSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.zxt1ToolStripMenuItem}); - this.ZXSpectrumTapesSubMenu.Text = "Tapes"; - this.ZXSpectrumTapesSubMenu.DropDownOpened += new System.EventHandler(this.ZXSpectrumTapesSubMenu_DropDownOpened); - // - // zxt1ToolStripMenuItem - // - this.zxt1ToolStripMenuItem.Text = "zxt1"; - // - // ZXSpectrumDisksSubMenu - // - this.ZXSpectrumDisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ZXSpectrumTapesSubMenu.Text = "Tapes"; + this.ZXSpectrumTapesSubMenu.DropDownOpened += new System.EventHandler(this.ZXSpectrumTapesSubMenu_DropDownOpened); + // + // zxt1ToolStripMenuItem + // + this.zxt1ToolStripMenuItem.Text = "zxt1"; + // + // ZXSpectrumDisksSubMenu + // + this.ZXSpectrumDisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.zxt2ToolStripMenuItem}); - this.ZXSpectrumDisksSubMenu.Text = "Disks"; - this.ZXSpectrumDisksSubMenu.DropDownOpened += new System.EventHandler(this.ZXSpectrumDisksSubMenu_DropDownOpened); - // - // zxt2ToolStripMenuItem - // - this.zxt2ToolStripMenuItem.Text = "zxt2"; - // - // ZXSpectrumExportSnapshotMenuItemMenuItem - // - this.ZXSpectrumExportSnapshotMenuItemMenuItem.Text = "Export Snapshot"; - this.ZXSpectrumExportSnapshotMenuItemMenuItem.Click += new System.EventHandler(this.ZXSpectrumExportSnapshotMenuItemMenuItem_Click); - // - // GenericCoreSubMenu - // - this.GenericCoreSubMenu.Text = "&Core"; - // - // amstradCPCToolStripMenuItem - // - this.amstradCPCToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ZXSpectrumDisksSubMenu.Text = "Disks"; + this.ZXSpectrumDisksSubMenu.DropDownOpened += new System.EventHandler(this.ZXSpectrumDisksSubMenu_DropDownOpened); + // + // zxt2ToolStripMenuItem + // + this.zxt2ToolStripMenuItem.Text = "zxt2"; + // + // ZXSpectrumExportSnapshotMenuItemMenuItem + // + this.ZXSpectrumExportSnapshotMenuItemMenuItem.Text = "Export Snapshot"; + this.ZXSpectrumExportSnapshotMenuItemMenuItem.Click += new System.EventHandler(this.ZXSpectrumExportSnapshotMenuItemMenuItem_Click); + // + // GenericCoreSubMenu + // + this.GenericCoreSubMenu.Text = "&Core"; + // + // amstradCPCToolStripMenuItem + // + this.amstradCPCToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.amstradCPCCoreEmulationSettingsToolStripMenuItem, this.AmstradCPCAudioSettingsToolStripMenuItem, this.AmstradCPCNonSyncSettingsToolStripMenuItem, this.AmstradCPCMediaToolStripMenuItem}); - this.amstradCPCToolStripMenuItem.Text = "Amstrad CPC"; - // - // amstradCPCCoreEmulationSettingsToolStripMenuItem - // - this.amstradCPCCoreEmulationSettingsToolStripMenuItem.Text = "Core Emulation Settings"; - this.amstradCPCCoreEmulationSettingsToolStripMenuItem.Click += new System.EventHandler(this.AmstradCpcCoreEmulationSettingsMenuItem_Click); - // - // AmstradCPCAudioSettingsToolStripMenuItem - // - this.AmstradCPCAudioSettingsToolStripMenuItem.Text = "Audio Settings"; - this.AmstradCPCAudioSettingsToolStripMenuItem.Click += new System.EventHandler(this.AmstradCpcAudioSettingsMenuItem_Click); - // - // AmstradCPCNonSyncSettingsToolStripMenuItem - // - this.AmstradCPCNonSyncSettingsToolStripMenuItem.Text = "Non-Sync Settings"; - this.AmstradCPCNonSyncSettingsToolStripMenuItem.Click += new System.EventHandler(this.AmstradCpcNonSyncSettingsMenuItem_Click); - // - // AmstradCPCMediaToolStripMenuItem - // - this.AmstradCPCMediaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.amstradCPCToolStripMenuItem.Text = "Amstrad CPC"; + // + // amstradCPCCoreEmulationSettingsToolStripMenuItem + // + this.amstradCPCCoreEmulationSettingsToolStripMenuItem.Text = "Core Emulation Settings"; + this.amstradCPCCoreEmulationSettingsToolStripMenuItem.Click += new System.EventHandler(this.AmstradCpcCoreEmulationSettingsMenuItem_Click); + // + // AmstradCPCAudioSettingsToolStripMenuItem + // + this.AmstradCPCAudioSettingsToolStripMenuItem.Text = "Audio Settings"; + this.AmstradCPCAudioSettingsToolStripMenuItem.Click += new System.EventHandler(this.AmstradCpcAudioSettingsMenuItem_Click); + // + // AmstradCPCNonSyncSettingsToolStripMenuItem + // + this.AmstradCPCNonSyncSettingsToolStripMenuItem.Text = "Non-Sync Settings"; + this.AmstradCPCNonSyncSettingsToolStripMenuItem.Click += new System.EventHandler(this.AmstradCpcNonSyncSettingsMenuItem_Click); + // + // AmstradCPCMediaToolStripMenuItem + // + this.AmstradCPCMediaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AmstradCPCTapesSubMenu, this.AmstradCPCDisksSubMenu}); - this.AmstradCPCMediaToolStripMenuItem.Text = "Media"; - this.AmstradCPCMediaToolStripMenuItem.DropDownOpened += new System.EventHandler(this.AmstradCpcMediaMenuItem_DropDownOpened); - // - // AmstradCPCTapesSubMenu - // - this.AmstradCPCTapesSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AmstradCPCMediaToolStripMenuItem.Text = "Media"; + this.AmstradCPCMediaToolStripMenuItem.DropDownOpened += new System.EventHandler(this.AmstradCpcMediaMenuItem_DropDownOpened); + // + // AmstradCPCTapesSubMenu + // + this.AmstradCPCTapesSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cpct1ToolStripMenuItem}); - this.AmstradCPCTapesSubMenu.Text = "Tapes"; - this.AmstradCPCTapesSubMenu.DropDownOpened += new System.EventHandler(this.AmstradCpcTapesSubMenu_DropDownOpened); - // - // cpct1ToolStripMenuItem - // - this.cpct1ToolStripMenuItem.Text = "cpct1"; - // - // AmstradCPCDisksSubMenu - // - this.AmstradCPCDisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AmstradCPCTapesSubMenu.Text = "Tapes"; + this.AmstradCPCTapesSubMenu.DropDownOpened += new System.EventHandler(this.AmstradCpcTapesSubMenu_DropDownOpened); + // + // cpct1ToolStripMenuItem + // + this.cpct1ToolStripMenuItem.Text = "cpct1"; + // + // AmstradCPCDisksSubMenu + // + this.AmstradCPCDisksSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cpcd1ToolStripMenuItem}); - this.AmstradCPCDisksSubMenu.Text = "Disks"; - this.AmstradCPCDisksSubMenu.DropDownOpened += new System.EventHandler(this.AmstradCpcDisksSubMenu_DropDownOpened); - // - // cpcd1ToolStripMenuItem - // - this.cpcd1ToolStripMenuItem.Text = "cpcd1"; - // - // HelpSubMenu - // - this.HelpSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AmstradCPCDisksSubMenu.Text = "Disks"; + this.AmstradCPCDisksSubMenu.DropDownOpened += new System.EventHandler(this.AmstradCpcDisksSubMenu_DropDownOpened); + // + // cpcd1ToolStripMenuItem + // + this.cpcd1ToolStripMenuItem.Text = "cpcd1"; + // + // HelpSubMenu + // + this.HelpSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.OnlineHelpMenuItem, this.ForumsMenuItem, this.FeaturesMenuItem, this.AboutMenuItem}); - this.HelpSubMenu.Text = "&Help"; - this.HelpSubMenu.DropDownOpened += new System.EventHandler(this.HelpSubMenu_DropDownOpened); - // - // OnlineHelpMenuItem - // - this.OnlineHelpMenuItem.Text = "Open TASVideos Wiki in Browser"; - this.OnlineHelpMenuItem.Click += new System.EventHandler(this.OnlineHelpMenuItem_Click); - // - // ForumsMenuItem - // - this.ForumsMenuItem.Text = "Open Forums in Browser"; - this.ForumsMenuItem.Click += new System.EventHandler(this.ForumsMenuItem_Click); - // - // FeaturesMenuItem - // - this.FeaturesMenuItem.Text = "&Features"; - this.FeaturesMenuItem.Click += new System.EventHandler(this.FeaturesMenuItem_Click); - // - // AboutMenuItem - // - this.AboutMenuItem.Text = "&About..."; - this.AboutMenuItem.Click += new System.EventHandler(this.AboutMenuItem_Click); - // - // A7800HawkCoreMenuItem - // - this.A7800HawkCoreMenuItem.Text = "A7800Hawk"; - // - // MainStatusBar - // - this.MainStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.HelpSubMenu.Text = "&Help"; + this.HelpSubMenu.DropDownOpened += new System.EventHandler(this.HelpSubMenu_DropDownOpened); + // + // OnlineHelpMenuItem + // + this.OnlineHelpMenuItem.Text = "Open TASVideos Wiki in Browser"; + this.OnlineHelpMenuItem.Click += new System.EventHandler(this.OnlineHelpMenuItem_Click); + // + // ForumsMenuItem + // + this.ForumsMenuItem.Text = "Open Forums in Browser"; + this.ForumsMenuItem.Click += new System.EventHandler(this.ForumsMenuItem_Click); + // + // FeaturesMenuItem + // + this.FeaturesMenuItem.Text = "&Features"; + this.FeaturesMenuItem.Click += new System.EventHandler(this.FeaturesMenuItem_Click); + // + // AboutMenuItem + // + this.AboutMenuItem.Text = "&About..."; + this.AboutMenuItem.Click += new System.EventHandler(this.AboutMenuItem_Click); + // + // A7800HawkCoreMenuItem + // + this.A7800HawkCoreMenuItem.Text = "A7800Hawk"; + // + // MainStatusBar + // + this.MainStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.DumpStatusButton, this.EmuStatus, this.PlayRecordStatusButton, @@ -2022,167 +2022,167 @@ private void InitializeComponent() this.ProfileFirstBootLabel, this.LinkConnectStatusBarButton, this.UpdateNotification}); - this.MainStatusBar.Location = new System.Drawing.Point(0, 386); - this.MainStatusBar.Name = "MainStatusBar"; - this.MainStatusBar.ShowItemToolTips = true; - this.MainStatusBar.SizingGrip = false; - this.MainStatusBar.TabIndex = 1; - // - // DumpStatusButton - // - this.DumpStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.DumpStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; - this.DumpStatusButton.Name = "DumpStatusButton"; - this.DumpStatusButton.ShowDropDownArrow = false; - this.DumpStatusButton.Size = new System.Drawing.Size(4, 20); - this.DumpStatusButton.Text = "No ROM loaded"; - this.DumpStatusButton.Click += new System.EventHandler(this.DumpStatusButton_Click); - // - // PlayRecordStatusButton - // - this.PlayRecordStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.PlayRecordStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; - this.PlayRecordStatusButton.Name = "PlayRecordStatusButton"; - this.PlayRecordStatusButton.ShowDropDownArrow = false; - this.PlayRecordStatusButton.Size = new System.Drawing.Size(4, 20); - this.PlayRecordStatusButton.Text = "No movie is active"; - // - // PauseStatusButton - // - this.PauseStatusButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; - this.PauseStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.PauseStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; - this.PauseStatusButton.Name = "PauseStatusButton"; - this.PauseStatusButton.ShowDropDownArrow = false; - this.PauseStatusButton.Size = new System.Drawing.Size(4, 20); - this.PauseStatusButton.Text = "toolStripDropDownButton1"; - this.PauseStatusButton.ToolTipText = "Emulator is paused"; - this.PauseStatusButton.Click += new System.EventHandler(this.PauseMenuItem_Click); - // - // RebootStatusBarIcon - // - this.RebootStatusBarIcon.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.RebootStatusBarIcon.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.RebootStatusBarIcon.Text = "Reboot"; - this.RebootStatusBarIcon.ToolTipText = "A reboot of the core is needed for a setting change to take effect"; - this.RebootStatusBarIcon.Click += new System.EventHandler(this.PowerMenuItem_Click); - // - // AVStatusLabel - // - this.AVStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.AVStatusLabel.Text = "A/V Capture"; - // - // LedLightStatusLabel - // - this.LedLightStatusLabel.ToolTipText = "Disk Drive LED Light"; - // - // SaveSlotsStatusLabel - // - this.SaveSlotsStatusLabel.BackColor = System.Drawing.SystemColors.Control; - this.SaveSlotsStatusLabel.Text = "Save slots"; - // - // Slot1StatusButton - // - this.Slot1StatusButton.Text = "1"; - this.Slot1StatusButton.ToolTipText = "Save slot 1"; - this.Slot1StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot2StatusButton - // - this.Slot2StatusButton.Text = "2"; - this.Slot2StatusButton.ToolTipText = "Save slot 2"; - this.Slot2StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot3StatusButton - // - this.Slot3StatusButton.Text = "3"; - this.Slot3StatusButton.ToolTipText = "Save slot 3"; - this.Slot3StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot4StatusButton - // - this.Slot4StatusButton.Text = "4"; - this.Slot4StatusButton.ToolTipText = "Save slot 4"; - this.Slot4StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot5StatusButton - // - this.Slot5StatusButton.Text = "5"; - this.Slot5StatusButton.ToolTipText = "Save slot 5"; - this.Slot5StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot6StatusButton - // - this.Slot6StatusButton.Text = "6"; - this.Slot6StatusButton.ToolTipText = "Save slot 6"; - this.Slot6StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot7StatusButton - // - this.Slot7StatusButton.Text = "7"; - this.Slot7StatusButton.ToolTipText = "Save slot 7"; - this.Slot7StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot8StatusButton - // - this.Slot8StatusButton.Text = "8"; - this.Slot8StatusButton.ToolTipText = "Save slot 8"; - this.Slot8StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot9StatusButton - // - this.Slot9StatusButton.Text = "9"; - this.Slot9StatusButton.ToolTipText = "Save slot 9"; - this.Slot9StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // Slot0StatusButton - // - this.Slot0StatusButton.Text = "0"; - this.Slot0StatusButton.ToolTipText = "Save slot 10"; - this.Slot0StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); - // - // CheatStatusButton - // - this.CheatStatusButton.Click += new System.EventHandler(this.FreezeStatus_Click); - // - // KeyPriorityStatusLabel - // - this.KeyPriorityStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.KeyPriorityStatusLabel.Margin = new System.Windows.Forms.Padding(5, 3, 5, 0); - this.KeyPriorityStatusLabel.Text = "KeyPriority"; - this.KeyPriorityStatusLabel.Click += new System.EventHandler(this.KeyPriorityStatusLabel_Click); - // - // CoreNameStatusBarButton - // - this.CoreNameStatusBarButton.Text = ""; - // - // ProfileFirstBootLabel - // - this.ProfileFirstBootLabel.AutoToolTip = true; - this.ProfileFirstBootLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.ProfileFirstBootLabel.Text = "ProfileFirstBootLabel"; - this.ProfileFirstBootLabel.ToolTipText = "Open the setup/onboarding wizard"; - this.ProfileFirstBootLabel.Visible = false; - this.ProfileFirstBootLabel.Click += new System.EventHandler(this.ProfileFirstBootLabel_Click); - // - // LinkConnectStatusBarButton - // - this.LinkConnectStatusBarButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.LinkConnectStatusBarButton.Text = "Link connection is currently enabled"; - this.LinkConnectStatusBarButton.ToolTipText = "Link connection is currently enabled"; - this.LinkConnectStatusBarButton.Click += new System.EventHandler(this.LinkConnectStatusBarButton_Click); - // - // UpdateNotification - // - this.UpdateNotification.IsLink = true; - this.UpdateNotification.Spring = true; - this.UpdateNotification.Text = "New version available!"; - this.UpdateNotification.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - this.UpdateNotification.Click += new System.EventHandler(this.UpdateNotification_Click); - // - // MainFormContextMenu - // - this.MainFormContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MainStatusBar.Location = new System.Drawing.Point(0, 386); + this.MainStatusBar.Name = "MainStatusBar"; + this.MainStatusBar.ShowItemToolTips = true; + this.MainStatusBar.SizingGrip = false; + this.MainStatusBar.TabIndex = 1; + // + // DumpStatusButton + // + this.DumpStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.DumpStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; + this.DumpStatusButton.Name = "DumpStatusButton"; + this.DumpStatusButton.ShowDropDownArrow = false; + this.DumpStatusButton.Size = new System.Drawing.Size(4, 20); + this.DumpStatusButton.Text = "No ROM loaded"; + this.DumpStatusButton.Click += new System.EventHandler(this.DumpStatusButton_Click); + // + // PlayRecordStatusButton + // + this.PlayRecordStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.PlayRecordStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; + this.PlayRecordStatusButton.Name = "PlayRecordStatusButton"; + this.PlayRecordStatusButton.ShowDropDownArrow = false; + this.PlayRecordStatusButton.Size = new System.Drawing.Size(4, 20); + this.PlayRecordStatusButton.Text = "No movie is active"; + // + // PauseStatusButton + // + this.PauseStatusButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; + this.PauseStatusButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.PauseStatusButton.ImageTransparentColor = System.Drawing.Color.Magenta; + this.PauseStatusButton.Name = "PauseStatusButton"; + this.PauseStatusButton.ShowDropDownArrow = false; + this.PauseStatusButton.Size = new System.Drawing.Size(4, 20); + this.PauseStatusButton.Text = "toolStripDropDownButton1"; + this.PauseStatusButton.ToolTipText = "Emulator is paused"; + this.PauseStatusButton.Click += new System.EventHandler(this.PauseMenuItem_Click); + // + // RebootStatusBarIcon + // + this.RebootStatusBarIcon.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.RebootStatusBarIcon.RightToLeft = System.Windows.Forms.RightToLeft.No; + this.RebootStatusBarIcon.Text = "Reboot"; + this.RebootStatusBarIcon.ToolTipText = "A reboot of the core is needed for a setting change to take effect"; + this.RebootStatusBarIcon.Click += new System.EventHandler(this.PowerMenuItem_Click); + // + // AVStatusLabel + // + this.AVStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.AVStatusLabel.Text = "A/V Capture"; + // + // LedLightStatusLabel + // + this.LedLightStatusLabel.ToolTipText = "Disk Drive LED Light"; + // + // SaveSlotsStatusLabel + // + this.SaveSlotsStatusLabel.BackColor = System.Drawing.SystemColors.Control; + this.SaveSlotsStatusLabel.Text = "Save slots"; + // + // Slot1StatusButton + // + this.Slot1StatusButton.Text = "1"; + this.Slot1StatusButton.ToolTipText = "Save slot 1"; + this.Slot1StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot2StatusButton + // + this.Slot2StatusButton.Text = "2"; + this.Slot2StatusButton.ToolTipText = "Save slot 2"; + this.Slot2StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot3StatusButton + // + this.Slot3StatusButton.Text = "3"; + this.Slot3StatusButton.ToolTipText = "Save slot 3"; + this.Slot3StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot4StatusButton + // + this.Slot4StatusButton.Text = "4"; + this.Slot4StatusButton.ToolTipText = "Save slot 4"; + this.Slot4StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot5StatusButton + // + this.Slot5StatusButton.Text = "5"; + this.Slot5StatusButton.ToolTipText = "Save slot 5"; + this.Slot5StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot6StatusButton + // + this.Slot6StatusButton.Text = "6"; + this.Slot6StatusButton.ToolTipText = "Save slot 6"; + this.Slot6StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot7StatusButton + // + this.Slot7StatusButton.Text = "7"; + this.Slot7StatusButton.ToolTipText = "Save slot 7"; + this.Slot7StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot8StatusButton + // + this.Slot8StatusButton.Text = "8"; + this.Slot8StatusButton.ToolTipText = "Save slot 8"; + this.Slot8StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot9StatusButton + // + this.Slot9StatusButton.Text = "9"; + this.Slot9StatusButton.ToolTipText = "Save slot 9"; + this.Slot9StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // Slot0StatusButton + // + this.Slot0StatusButton.Text = "0"; + this.Slot0StatusButton.ToolTipText = "Save slot 10"; + this.Slot0StatusButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SlotStatusButtons_MouseUp); + // + // CheatStatusButton + // + this.CheatStatusButton.Click += new System.EventHandler(this.FreezeStatus_Click); + // + // KeyPriorityStatusLabel + // + this.KeyPriorityStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.KeyPriorityStatusLabel.Margin = new System.Windows.Forms.Padding(5, 3, 5, 0); + this.KeyPriorityStatusLabel.Text = "KeyPriority"; + this.KeyPriorityStatusLabel.Click += new System.EventHandler(this.KeyPriorityStatusLabel_Click); + // + // CoreNameStatusBarButton + // + this.CoreNameStatusBarButton.Text = ""; + // + // ProfileFirstBootLabel + // + this.ProfileFirstBootLabel.AutoToolTip = true; + this.ProfileFirstBootLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.ProfileFirstBootLabel.Text = "ProfileFirstBootLabel"; + this.ProfileFirstBootLabel.ToolTipText = "Open the setup/onboarding wizard"; + this.ProfileFirstBootLabel.Visible = false; + this.ProfileFirstBootLabel.Click += new System.EventHandler(this.ProfileFirstBootLabel_Click); + // + // LinkConnectStatusBarButton + // + this.LinkConnectStatusBarButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.LinkConnectStatusBarButton.Text = "Link connection is currently enabled"; + this.LinkConnectStatusBarButton.ToolTipText = "Link connection is currently enabled"; + this.LinkConnectStatusBarButton.Click += new System.EventHandler(this.LinkConnectStatusBarButton_Click); + // + // UpdateNotification + // + this.UpdateNotification.IsLink = true; + this.UpdateNotification.Spring = true; + this.UpdateNotification.Text = "New version available!"; + this.UpdateNotification.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.UpdateNotification.Click += new System.EventHandler(this.UpdateNotification_Click); + // + // MainFormContextMenu + // + this.MainFormContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.OpenRomContextMenuItem, this.LoadLastRomContextMenuItem, this.StopAVContextMenuItem, @@ -2208,94 +2208,94 @@ private void InitializeComponent() this.ClearSRAMContextMenuItem, this.ShowMenuContextMenuSeparator, this.ShowMenuContextMenuItem}); - this.MainFormContextMenu.Name = "contextMenuStrip1"; - this.MainFormContextMenu.Size = new System.Drawing.Size(217, 490); - this.MainFormContextMenu.Closing += new System.Windows.Forms.ToolStripDropDownClosingEventHandler(this.MainFormContextMenu_Closing); - this.MainFormContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.MainFormContextMenu_Opening); - // - // OpenRomContextMenuItem - // - this.OpenRomContextMenuItem.Text = "Open Rom"; - this.OpenRomContextMenuItem.Click += new System.EventHandler(this.OpenRomMenuItem_Click); - // - // LoadLastRomContextMenuItem - // - this.LoadLastRomContextMenuItem.Text = "Load Last ROM"; - this.LoadLastRomContextMenuItem.Click += new System.EventHandler(this.LoadLastRomContextMenuItem_Click); - // - // StopAVContextMenuItem - // - this.StopAVContextMenuItem.Text = "Stop A/V Writer"; - this.StopAVContextMenuItem.Click += new System.EventHandler(this.StopAVMenuItem_Click); - // - // RecordMovieContextMenuItem - // - this.RecordMovieContextMenuItem.Text = "Record Movie"; - this.RecordMovieContextMenuItem.Click += new System.EventHandler(this.RecordMovieMenuItem_Click); - // - // PlayMovieContextMenuItem - // - this.PlayMovieContextMenuItem.Text = "Play Movie"; - this.PlayMovieContextMenuItem.Click += new System.EventHandler(this.PlayMovieMenuItem_Click); - // - // RestartMovieContextMenuItem - // - this.RestartMovieContextMenuItem.Text = "Restart Movie"; - this.RestartMovieContextMenuItem.Click += new System.EventHandler(this.PlayFromBeginningMenuItem_Click); - // - // StopMovieContextMenuItem - // - this.StopMovieContextMenuItem.Text = "Stop Movie"; - this.StopMovieContextMenuItem.Click += new System.EventHandler(this.StopMovieMenuItem_Click); - // - // LoadLastMovieContextMenuItem - // - this.LoadLastMovieContextMenuItem.Text = "Load Last Movie"; - this.LoadLastMovieContextMenuItem.Click += new System.EventHandler(this.LoadLastMovieContextMenuItem_Click); - // - // BackupMovieContextMenuItem - // - this.BackupMovieContextMenuItem.Text = "Backup Movie"; - this.BackupMovieContextMenuItem.Click += new System.EventHandler(this.BackupMovieContextMenuItem_Click); - // - // StopNoSaveContextMenuItem - // - this.StopNoSaveContextMenuItem.Text = "Stop Movie without Saving"; - this.StopNoSaveContextMenuItem.Click += new System.EventHandler(this.StopMovieWithoutSavingMenuItem_Click); - // - // ViewSubtitlesContextMenuItem - // - this.ViewSubtitlesContextMenuItem.Text = "View Subtitles"; - this.ViewSubtitlesContextMenuItem.Click += new System.EventHandler(this.ViewSubtitlesContextMenuItem_Click); - // - // AddSubtitleContextMenuItem - // - this.AddSubtitleContextMenuItem.Text = "Add Subtitle"; - this.AddSubtitleContextMenuItem.Click += new System.EventHandler(this.AddSubtitleContextMenuItem_Click); - // - // ViewCommentsContextMenuItem - // - this.ViewCommentsContextMenuItem.Text = "View Comments"; - this.ViewCommentsContextMenuItem.Click += new System.EventHandler(this.ViewCommentsContextMenuItem_Click); - // - // SaveMovieContextMenuItem - // - this.SaveMovieContextMenuItem.Text = "Save Movie"; - this.SaveMovieContextMenuItem.Click += new System.EventHandler(this.SaveMovieMenuItem_Click); - // - // SaveMovieAsContextMenuItem - // - this.SaveMovieAsContextMenuItem.Text = "Save Movie As..."; - this.SaveMovieAsContextMenuItem.Click += new System.EventHandler(this.SaveMovieAsMenuItem_Click); - // - // UndoSavestateContextMenuItem - // - this.UndoSavestateContextMenuItem.Text = "Undo Savestate"; - this.UndoSavestateContextMenuItem.Click += new System.EventHandler(this.UndoSavestateContextMenuItem_Click); - // - // ConfigContextMenuItem - // - this.ConfigContextMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.MainFormContextMenu.Name = "contextMenuStrip1"; + this.MainFormContextMenu.Size = new System.Drawing.Size(217, 490); + this.MainFormContextMenu.Closing += new System.Windows.Forms.ToolStripDropDownClosingEventHandler(this.MainFormContextMenu_Closing); + this.MainFormContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.MainFormContextMenu_Opening); + // + // OpenRomContextMenuItem + // + this.OpenRomContextMenuItem.Text = "Open Rom"; + this.OpenRomContextMenuItem.Click += new System.EventHandler(this.OpenRomMenuItem_Click); + // + // LoadLastRomContextMenuItem + // + this.LoadLastRomContextMenuItem.Text = "Load Last ROM"; + this.LoadLastRomContextMenuItem.Click += new System.EventHandler(this.LoadLastRomContextMenuItem_Click); + // + // StopAVContextMenuItem + // + this.StopAVContextMenuItem.Text = "Stop A/V Writer"; + this.StopAVContextMenuItem.Click += new System.EventHandler(this.StopAVMenuItem_Click); + // + // RecordMovieContextMenuItem + // + this.RecordMovieContextMenuItem.Text = "Record Movie"; + this.RecordMovieContextMenuItem.Click += new System.EventHandler(this.RecordMovieMenuItem_Click); + // + // PlayMovieContextMenuItem + // + this.PlayMovieContextMenuItem.Text = "Play Movie"; + this.PlayMovieContextMenuItem.Click += new System.EventHandler(this.PlayMovieMenuItem_Click); + // + // RestartMovieContextMenuItem + // + this.RestartMovieContextMenuItem.Text = "Restart Movie"; + this.RestartMovieContextMenuItem.Click += new System.EventHandler(this.PlayFromBeginningMenuItem_Click); + // + // StopMovieContextMenuItem + // + this.StopMovieContextMenuItem.Text = "Stop Movie"; + this.StopMovieContextMenuItem.Click += new System.EventHandler(this.StopMovieMenuItem_Click); + // + // LoadLastMovieContextMenuItem + // + this.LoadLastMovieContextMenuItem.Text = "Load Last Movie"; + this.LoadLastMovieContextMenuItem.Click += new System.EventHandler(this.LoadLastMovieContextMenuItem_Click); + // + // BackupMovieContextMenuItem + // + this.BackupMovieContextMenuItem.Text = "Backup Movie"; + this.BackupMovieContextMenuItem.Click += new System.EventHandler(this.BackupMovieContextMenuItem_Click); + // + // StopNoSaveContextMenuItem + // + this.StopNoSaveContextMenuItem.Text = "Stop Movie without Saving"; + this.StopNoSaveContextMenuItem.Click += new System.EventHandler(this.StopMovieWithoutSavingMenuItem_Click); + // + // ViewSubtitlesContextMenuItem + // + this.ViewSubtitlesContextMenuItem.Text = "View Subtitles"; + this.ViewSubtitlesContextMenuItem.Click += new System.EventHandler(this.ViewSubtitlesContextMenuItem_Click); + // + // AddSubtitleContextMenuItem + // + this.AddSubtitleContextMenuItem.Text = "Add Subtitle"; + this.AddSubtitleContextMenuItem.Click += new System.EventHandler(this.AddSubtitleContextMenuItem_Click); + // + // ViewCommentsContextMenuItem + // + this.ViewCommentsContextMenuItem.Text = "View Comments"; + this.ViewCommentsContextMenuItem.Click += new System.EventHandler(this.ViewCommentsContextMenuItem_Click); + // + // SaveMovieContextMenuItem + // + this.SaveMovieContextMenuItem.Text = "Save Movie"; + this.SaveMovieContextMenuItem.Click += new System.EventHandler(this.SaveMovieMenuItem_Click); + // + // SaveMovieAsContextMenuItem + // + this.SaveMovieAsContextMenuItem.Text = "Save Movie As..."; + this.SaveMovieAsContextMenuItem.Click += new System.EventHandler(this.SaveMovieAsMenuItem_Click); + // + // UndoSavestateContextMenuItem + // + this.UndoSavestateContextMenuItem.Text = "Undo Savestate"; + this.UndoSavestateContextMenuItem.Click += new System.EventHandler(this.UndoSavestateContextMenuItem_Click); + // + // ConfigContextMenuItem + // + this.ConfigContextMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripMenuItem6, this.toolStripMenuItem7, this.toolStripMenuItem8, @@ -2310,121 +2310,121 @@ private void InitializeComponent() this.toolStripSeparator30, this.toolStripMenuItem66, this.toolStripMenuItem67}); - this.ConfigContextMenuItem.Text = "Config"; - // - // toolStripMenuItem6 - // - this.toolStripMenuItem6.Text = "&Controllers..."; - this.toolStripMenuItem6.Click += new System.EventHandler(this.ControllersMenuItem_Click); - // - // toolStripMenuItem7 - // - this.toolStripMenuItem7.Text = "&Hotkeys..."; - this.toolStripMenuItem7.Click += new System.EventHandler(this.HotkeysMenuItem_Click); - // - // toolStripMenuItem8 - // - this.toolStripMenuItem8.Text = "Display..."; - this.toolStripMenuItem8.Click += new System.EventHandler(this.DisplayConfigMenuItem_Click); - // - // toolStripMenuItem9 - // - this.toolStripMenuItem9.Text = "&Sound..."; - this.toolStripMenuItem9.Click += new System.EventHandler(this.SoundMenuItem_Click); - // - // toolStripMenuItem10 - // - this.toolStripMenuItem10.Text = "Paths..."; - this.toolStripMenuItem10.Click += new System.EventHandler(this.PathsMenuItem_Click); - // - // toolStripMenuItem11 - // - this.toolStripMenuItem11.Text = "&Firmware..."; - this.toolStripMenuItem11.Click += new System.EventHandler(this.FirmwareMenuItem_Click); - // - // toolStripMenuItem12 - // - this.toolStripMenuItem12.Text = "&Messages..."; - this.toolStripMenuItem12.Click += new System.EventHandler(this.MessagesMenuItem_Click); - // - // toolStripMenuItem13 - // - this.toolStripMenuItem13.Text = "&Autofire..."; - this.toolStripMenuItem13.Click += new System.EventHandler(this.AutofireMenuItem_Click); - // - // toolStripMenuItem14 - // - this.toolStripMenuItem14.Text = "&Rewind..."; - this.toolStripMenuItem14.Click += new System.EventHandler(this.RewindOptionsMenuItem_Click); - // - // toolStripMenuItem15 - // - this.toolStripMenuItem15.Text = "File Extensions..."; - this.toolStripMenuItem15.Click += new System.EventHandler(this.FileExtensionsMenuItem_Click); - // - // customizeToolStripMenuItem - // - this.customizeToolStripMenuItem.Text = "Customize..."; - this.customizeToolStripMenuItem.Click += new System.EventHandler(this.CustomizeMenuItem_Click); - // - // toolStripMenuItem66 - // - this.toolStripMenuItem66.Text = "Save Config"; - this.toolStripMenuItem66.Click += new System.EventHandler(this.SaveConfigMenuItem_Click); - // - // toolStripMenuItem67 - // - this.toolStripMenuItem67.Text = "Load Config"; - this.toolStripMenuItem67.Click += new System.EventHandler(this.LoadConfigMenuItem_Click); - // - // ScreenshotContextMenuItem - // - this.ScreenshotContextMenuItem.Text = "Screenshot"; - this.ScreenshotContextMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click); - // - // CloseRomContextMenuItem - // - this.CloseRomContextMenuItem.Text = "Close ROM"; - this.CloseRomContextMenuItem.Click += new System.EventHandler(this.CloseRomMenuItem_Click); - // - // ClearSRAMContextMenuItem - // - this.ClearSRAMContextMenuItem.Text = "Close and Clear SRAM"; - this.ClearSRAMContextMenuItem.Click += new System.EventHandler(this.ClearSramContextMenuItem_Click); - // - // ShowMenuContextMenuItem - // - this.ShowMenuContextMenuItem.Text = "Show Menu"; - this.ShowMenuContextMenuItem.Click += new System.EventHandler(this.ShowMenuContextMenuItem_Click); - // - // timerMouseIdle - // - this.timerMouseIdle.Enabled = true; - this.timerMouseIdle.Interval = 2000; - this.timerMouseIdle.Tick += new System.EventHandler(this.TimerMouseIdle_Tick); - // - // MainForm - // - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; - this.ClientSize = new System.Drawing.Size(470, 408); - this.Controls.Add(this.MainStatusBar); - this.Controls.Add(this.MainformMenu); - this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.MainMenuStrip = this.MainformMenu; - this.Name = "MainForm"; - this.Activated += new System.EventHandler(this.MainForm_Activated); - this.Deactivate += new System.EventHandler(this.MainForm_Deactivate); - this.Load += new System.EventHandler(this.MainForm_Load); - this.Shown += new System.EventHandler(this.MainForm_Shown); - this.Enter += new System.EventHandler(this.MainForm_Enter); - this.Resize += new System.EventHandler(this.MainForm_Resize); - this.MainformMenu.ResumeLayout(false); - this.MainformMenu.PerformLayout(); - this.MainStatusBar.ResumeLayout(false); - this.MainStatusBar.PerformLayout(); - this.MainFormContextMenu.ResumeLayout(false); - this.ResumeLayout(false); - this.PerformLayout(); + this.ConfigContextMenuItem.Text = "Config"; + // + // toolStripMenuItem6 + // + this.toolStripMenuItem6.Text = "&Controllers..."; + this.toolStripMenuItem6.Click += new System.EventHandler(this.ControllersMenuItem_Click); + // + // toolStripMenuItem7 + // + this.toolStripMenuItem7.Text = "&Hotkeys..."; + this.toolStripMenuItem7.Click += new System.EventHandler(this.HotkeysMenuItem_Click); + // + // toolStripMenuItem8 + // + this.toolStripMenuItem8.Text = "Display..."; + this.toolStripMenuItem8.Click += new System.EventHandler(this.DisplayConfigMenuItem_Click); + // + // toolStripMenuItem9 + // + this.toolStripMenuItem9.Text = "&Sound..."; + this.toolStripMenuItem9.Click += new System.EventHandler(this.SoundMenuItem_Click); + // + // toolStripMenuItem10 + // + this.toolStripMenuItem10.Text = "Paths..."; + this.toolStripMenuItem10.Click += new System.EventHandler(this.PathsMenuItem_Click); + // + // toolStripMenuItem11 + // + this.toolStripMenuItem11.Text = "&Firmware..."; + this.toolStripMenuItem11.Click += new System.EventHandler(this.FirmwareMenuItem_Click); + // + // toolStripMenuItem12 + // + this.toolStripMenuItem12.Text = "&Messages..."; + this.toolStripMenuItem12.Click += new System.EventHandler(this.MessagesMenuItem_Click); + // + // toolStripMenuItem13 + // + this.toolStripMenuItem13.Text = "&Autofire..."; + this.toolStripMenuItem13.Click += new System.EventHandler(this.AutofireMenuItem_Click); + // + // toolStripMenuItem14 + // + this.toolStripMenuItem14.Text = "&Rewind..."; + this.toolStripMenuItem14.Click += new System.EventHandler(this.RewindOptionsMenuItem_Click); + // + // toolStripMenuItem15 + // + this.toolStripMenuItem15.Text = "File Extensions..."; + this.toolStripMenuItem15.Click += new System.EventHandler(this.FileExtensionsMenuItem_Click); + // + // customizeToolStripMenuItem + // + this.customizeToolStripMenuItem.Text = "Customize..."; + this.customizeToolStripMenuItem.Click += new System.EventHandler(this.CustomizeMenuItem_Click); + // + // toolStripMenuItem66 + // + this.toolStripMenuItem66.Text = "Save Config"; + this.toolStripMenuItem66.Click += new System.EventHandler(this.SaveConfigMenuItem_Click); + // + // toolStripMenuItem67 + // + this.toolStripMenuItem67.Text = "Load Config"; + this.toolStripMenuItem67.Click += new System.EventHandler(this.LoadConfigMenuItem_Click); + // + // ScreenshotContextMenuItem + // + this.ScreenshotContextMenuItem.Text = "Screenshot"; + this.ScreenshotContextMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click); + // + // CloseRomContextMenuItem + // + this.CloseRomContextMenuItem.Text = "Close ROM"; + this.CloseRomContextMenuItem.Click += new System.EventHandler(this.CloseRomMenuItem_Click); + // + // ClearSRAMContextMenuItem + // + this.ClearSRAMContextMenuItem.Text = "Close and Clear SRAM"; + this.ClearSRAMContextMenuItem.Click += new System.EventHandler(this.ClearSramContextMenuItem_Click); + // + // ShowMenuContextMenuItem + // + this.ShowMenuContextMenuItem.Text = "Show Menu"; + this.ShowMenuContextMenuItem.Click += new System.EventHandler(this.ShowMenuContextMenuItem_Click); + // + // timerMouseIdle + // + this.timerMouseIdle.Enabled = true; + this.timerMouseIdle.Interval = 2000; + this.timerMouseIdle.Tick += new System.EventHandler(this.TimerMouseIdle_Tick); + // + // MainForm + // + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; + this.ClientSize = new System.Drawing.Size(470, 408); + this.Controls.Add(this.MainStatusBar); + this.Controls.Add(this.MainformMenu); + this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.MainMenuStrip = this.MainformMenu; + this.Name = "MainForm"; + this.Activated += new System.EventHandler(this.MainForm_Activated); + this.Deactivate += new System.EventHandler(this.MainForm_Deactivate); + this.Load += new System.EventHandler(this.MainForm_Load); + this.Shown += new System.EventHandler(this.MainForm_Shown); + this.Enter += new System.EventHandler(this.MainForm_Enter); + this.Resize += new System.EventHandler(this.MainForm_Resize); + this.MainformMenu.ResumeLayout(false); + this.MainformMenu.PerformLayout(); + this.MainStatusBar.ResumeLayout(false); + this.MainStatusBar.PerformLayout(); + this.MainFormContextMenu.ResumeLayout(false); + this.ResumeLayout(false); + this.PerformLayout(); } diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index e89831e9a9f..83ab228915c 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -4750,8 +4750,6 @@ private void SingleInstanceProcessArgs(string[] args) private IRetroAchievements RA { get; set; } - - private void OpenRetroAchievements() { RA = RetroAchievements.CreateImpl( From 8e20e146a718c14e5c0b502e7e614c7ee134eb01 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 12 Feb 2025 21:14:50 +1000 Subject: [PATCH 63/65] Revert unrelated Designer changes --- .../MainForm.Designer.cs | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs b/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs index 4af5251a686..8a7a29a0cf1 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs @@ -84,11 +84,10 @@ private void InitializeComponent() this.PlayMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); this.StopMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); this.PlayFromBeginningMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); + this.ImportMoviesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); this.SaveMovieMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); this.SaveMovieAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); this.StopMovieWithoutSavingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); - this.toolStripSeparator25 = new System.Windows.Forms.ToolStripSeparator(); - this.ImportMoviesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); this.toolStripSeparator14 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); this.AutomaticallyBackupMoviesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); this.FullMovieLoadstatesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); @@ -377,6 +376,7 @@ private void InitializeComponent() this.ShowMenuContextMenuSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx(); this.ShowMenuContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx(); this.timerMouseIdle = new System.Windows.Forms.Timer(this.components); + this.toolStripSeparator25 = new System.Windows.Forms.ToolStripSeparator(); this.MainformMenu.SuspendLayout(); this.MainStatusBar.SuspendLayout(); this.MainFormContextMenu.SuspendLayout(); @@ -772,6 +772,11 @@ private void InitializeComponent() this.PlayFromBeginningMenuItem.Text = "Play from Beginning"; this.PlayFromBeginningMenuItem.Click += new System.EventHandler(this.PlayFromBeginningMenuItem_Click); // + // ImportMoviesMenuItem + // + this.ImportMoviesMenuItem.Text = "Import Movies..."; + this.ImportMoviesMenuItem.Click += new System.EventHandler(this.ImportMovieMenuItem_Click); + // // SaveMovieMenuItem // this.SaveMovieMenuItem.Text = "&Save Movie"; @@ -787,16 +792,6 @@ private void InitializeComponent() this.StopMovieWithoutSavingMenuItem.Text = "Stop Movie without Saving"; this.StopMovieWithoutSavingMenuItem.Click += new System.EventHandler(this.StopMovieWithoutSavingMenuItem_Click); // - // toolStripSeparator25 - // - this.toolStripSeparator25.Name = "toolStripSeparator25"; - this.toolStripSeparator25.Size = new System.Drawing.Size(228, 6); - // - // ImportMoviesMenuItem - // - this.ImportMoviesMenuItem.Text = "Import Movies..."; - this.ImportMoviesMenuItem.Click += new System.EventHandler(this.ImportMovieMenuItem_Click); - // // AutomaticallyBackupMoviesMenuItem // this.AutomaticallyBackupMoviesMenuItem.Text = "Automatically Backup Movies"; @@ -875,7 +870,7 @@ private void InitializeComponent() // this.CaptureLuaMenuItem.CheckOnClick = true; this.CaptureLuaMenuItem.Name = "CaptureLuaMenuItem"; - this.CaptureLuaMenuItem.Size = new System.Drawing.Size(205, 22); + this.CaptureLuaMenuItem.Size = new System.Drawing.Size(232, 22); this.CaptureLuaMenuItem.Text = "Capture Lua"; this.CaptureLuaMenuItem.Click += new System.EventHandler(this.CaptureLuaMenuItem_Click); // @@ -992,7 +987,7 @@ private void InitializeComponent() this.WindowSizeSubMenu.Text = "&Window Size"; this.WindowSizeSubMenu.DropDownOpened += new System.EventHandler(this.WindowSizeSubMenu_DropDownOpened); // - // DisableResizeWithFramebufferMenuItem + // ResizeWithFramebufferMenuItem // this.DisableResizeWithFramebufferMenuItem.CheckOnClick = true; this.DisableResizeWithFramebufferMenuItem.Text = "&Static Size"; @@ -2403,6 +2398,11 @@ private void InitializeComponent() this.timerMouseIdle.Interval = 2000; this.timerMouseIdle.Tick += new System.EventHandler(this.TimerMouseIdle_Tick); // + // toolStripSeparator25 + // + this.toolStripSeparator25.Name = "toolStripSeparator25"; + this.toolStripSeparator25.Size = new System.Drawing.Size(228, 6); + // // MainForm // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; From d81f9c38589573e803b2064ab09c2df054d7814f Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 12 Feb 2025 21:18:15 +1000 Subject: [PATCH 64/65] Merge some TAStudioMPR-specific handling w/ TAStudio path might be able to re-use some of the custom controls too --- src/BizHawk.Client.Common/config/Binding.cs | 25 -- .../MainForm.Designer.cs | 2 +- src/BizHawk.Client.EmuHawk/MainForm.Events.cs | 19 +- src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs | 281 +++++++++--------- 4 files changed, 142 insertions(+), 185 deletions(-) diff --git a/src/BizHawk.Client.Common/config/Binding.cs b/src/BizHawk.Client.Common/config/Binding.cs index cbfa6c291af..41df4767924 100644 --- a/src/BizHawk.Client.Common/config/Binding.cs +++ b/src/BizHawk.Client.Common/config/Binding.cs @@ -152,31 +152,6 @@ void Bind(string tabGroup, string displayName, string defaultBinding = "", strin Bind("TAStudio", "Analog Maximum", "Right"); Bind("TAStudio", "Analog Minimum", "Left"); - //TAStudioMPR - Bind("TAStudioMPR", "Add Branch (For MPR)", "Alt+Insert"); - Bind("TAStudioMPR", "Delete Branch (For MPR)", "Alt+Delete"); - Bind("TAStudioMPR", "Show Cursor (For MPR)"); - Bind("TAStudioMPR", "Toggle Follow Cursor (For MPR)", "Shift+F"); - Bind("TAStudioMPR", "Toggle Auto-Restore (For MPR)", "Shift+R"); - Bind("TAStudioMPR", "Toggle Turbo Seek (For MPR)", "Shift+S"); - Bind("TAStudioMPR", "Undo (For MPR)", "Ctrl+Z"); // TODO: these are getting not unique enough - Bind("TAStudioMPR", "Redo (For MPR)", "Ctrl+Y"); - Bind("TAStudioMPR", "Sel. bet. Markers (For MPR)", "Ctrl+A"); - Bind("TAStudioMPR", "Select All (For MPR)", "Ctrl+Shift+A"); - Bind("TAStudioMPR", "Reselect Clip. (For MPR)", "Ctrl+B"); - Bind("TAStudioMPR", "Clear Frames (For MPR)", "Delete"); - Bind("TAStudioMPR", "Delete Frames (For MPR)", "Ctrl+Delete"); - Bind("TAStudioMPR", "Insert Frame (For MPR)", "Insert"); - Bind("TAStudioMPR", "Insert # Frames (For MPR)", "Shift+Insert"); - Bind("TAStudioMPR", "Clone Frames (For MPR)", "Ctrl+Insert"); - Bind("TAStudioMPR", "Clone # Times (For MPR)", "Ctrl+Shift+Insert"); - Bind("TAStudioMPR", "Analog Increment (For MPR)", "Up"); - Bind("TAStudioMPR", "Analog Decrement (For MPR)", "Down"); - Bind("TAStudioMPR", "Analog Incr. by 10 (For MPR)", "Shift+Up"); - Bind("TAStudioMPR", "Analog Decr. by 10 (For MPR)", "Shift+Down"); - Bind("TAStudioMPR", "Analog Maximum (For MPR)", "Right"); - Bind("TAStudioMPR", "Analog Minimum (For MPR)", "Left"); - Bind("SNES", "Toggle BG 1"); Bind("SNES", "Toggle BG 2"); Bind("SNES", "Toggle BG 3"); diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs b/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs index 8a7a29a0cf1..b3fb5b2c934 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs @@ -1383,7 +1383,7 @@ private void InitializeComponent() this.TAStudioMPRToolStripMenuItem.Name = "TAStudioMPRToolStripMenuItem"; this.TAStudioMPRToolStripMenuItem.Size = new System.Drawing.Size(191, 22); this.TAStudioMPRToolStripMenuItem.Text = "TAStudioMPR"; - this.TAStudioMPRToolStripMenuItem.Click += new System.EventHandler(this.TAStudioMPRToolStripMenuItem_Click); + this.TAStudioMPRToolStripMenuItem.Click += new System.EventHandler(this.TAStudioMenuItem_Click); // // HexEditorMenuItem // diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Events.cs b/src/BizHawk.Client.EmuHawk/MainForm.Events.cs index c0c6e99b959..2c85f4d78ef 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Events.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Events.cs @@ -1125,23 +1125,8 @@ private void TAStudioMenuItem_Click(object sender, EventArgs e) { return; } - Tools.Load(); - } - - private void TAStudioMPRToolStripMenuItem_Click(object sender, EventArgs e) - { - if (!Emulator.CanPollInput()) - { - ShowMessageBox(owner: null, "Current core does not support input polling. TAStudio can't be used."); - return; - } - const int DONT_PROMPT_BEFORE_FRAME = 2 * 60 * 60; // 2 min @ 60 fps - if (MovieSession.Movie.NotActive() && Emulator.Frame > DONT_PROMPT_BEFORE_FRAME // if playing casually (not recording) AND played for enough frames (prompting always would be annoying)... - && !this.ModalMessageBox2("This will reload the rom without saving. Launch TAStudio anyway?", "Confirmation")) // ...AND user responds "No" to "Open TAStudio?", then cancel - { - return; - } - Tools.Load(); + if (sender == TAStudioMPRToolStripMenuItem) Tools.Load(); + else Tools.Load(); } private void HexEditorMenuItem_Click(object sender, EventArgs e) diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs b/src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs index 6ef9aa40ccc..3405aa4ce29 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs @@ -349,201 +349,198 @@ void SelectAndLoadFromSlot(int slot) break; // TAStudio - case "Add Branch": - if (!Tools.IsLoaded()) return false; + case "Add Branch" when Tools.IsLoaded(): Tools.TAStudio.AddBranchExternal(); break; - case "Delete Branch": - if (!Tools.IsLoaded()) return false; + case "Add Branch" when Tools.IsLoaded(): + Tools.TAStudioMPR.AddBranchExternal(); + break; + case "Add Branch": + return false; + case "Delete Branch" when Tools.IsLoaded(): Tools.TAStudio.RemoveBranchExternal(); break; - case "Show Cursor": - if (!Tools.IsLoaded()) return false; + case "Delete Branch" when Tools.IsLoaded(): + Tools.TAStudioMPR.RemoveBranchExternal(); + break; + case "Delete Branch": + return false; + case "Show Cursor" when Tools.IsLoaded(): Tools.TAStudio.SetVisibleFrame(); Tools.TAStudio.RefreshDialog(); break; - case "Toggle Follow Cursor": - if (!Tools.IsLoaded()) return false; - var playbackBox = Tools.TAStudio.TasPlaybackBox; - playbackBox.FollowCursor = !playbackBox.FollowCursor; - break; - case "Toggle Auto-Restore": - if (!Tools.IsLoaded()) return false; - var playbackBox1 = Tools.TAStudio.TasPlaybackBox; - playbackBox1.AutoRestore = !playbackBox1.AutoRestore; - break; - case "Toggle Turbo Seek": - if (!Tools.IsLoaded()) return false; - var playbackBox2 = Tools.TAStudio.TasPlaybackBox; - playbackBox2.TurboSeek = !playbackBox2.TurboSeek; - break; - case "Undo": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.UndoExternal(); - break; - case "Redo": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.RedoExternal(); - break; - case "Sel. bet. Markers": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.SelectBetweenMarkersExternal(); - break; - case "Select All": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.SelectAllExternal(); - break; - case "Reselect Clip.": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.ReselectClipboardExternal(); - break; - case "Clear Frames": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.ClearFramesExternal(); - break; - case "Insert Frame": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.InsertFrameExternal(); - break; - case "Insert # Frames": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.InsertNumFramesExternal(); - break; - case "Delete Frames": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.DeleteFramesExternal(); - break; - case "Clone Frames": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.CloneFramesExternal(); - break; - case "Clone # Times": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.CloneFramesXTimesExternal(); - break; - case "Analog Increment": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.AnalogIncrementByOne(); - break; - case "Analog Decrement": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.AnalogDecrementByOne(); - break; - case "Analog Incr. by 10": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.AnalogIncrementByTen(); - break; - case "Analog Decr. by 10": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.AnalogDecrementByTen(); - break; - case "Analog Maximum": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.AnalogMax(); - break; - case "Analog Minimum": - if (!Tools.IsLoaded()) return false; - Tools.TAStudio.AnalogMin(); - break; - - // TAStudioMPR - case "Add Branch (For MPR)": - if (!Tools.IsLoaded()) return false; - Tools.TAStudioMPR.AddBranchExternal(); - break; - case "Delete Branch (For MPR)": - if (!Tools.IsLoaded()) return false; - Tools.TAStudioMPR.RemoveBranchExternal(); - break; - case "Show Cursor (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Show Cursor" when Tools.IsLoaded(): Tools.TAStudioMPR.SetVisibleFrame(); Tools.TAStudioMPR.RefreshDialog(); break; - case "Toggle Follow Cursor (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Show Cursor": + return false; + case "Toggle Follow Cursor" when Tools.IsLoaded(): + var playbackBox = Tools.TAStudio.TasPlaybackBox; + playbackBox.FollowCursor = !playbackBox.FollowCursor; + break; + case "Toggle Follow Cursor" when Tools.IsLoaded(): var playbackBox3 = Tools.TAStudioMPR.TasPlaybackBoxMPR; playbackBox3.FollowCursor = !playbackBox3.FollowCursor; break; - case "Toggle Auto-Restore (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Toggle Follow Cursor": + return false; + case "Toggle Auto-Restore" when Tools.IsLoaded(): + var playbackBox1 = Tools.TAStudio.TasPlaybackBox; + playbackBox1.AutoRestore = !playbackBox1.AutoRestore; + break; + case "Toggle Auto-Restore" when Tools.IsLoaded(): var playbackBox4 = Tools.TAStudioMPR.TasPlaybackBoxMPR; playbackBox4.AutoRestore = !playbackBox4.AutoRestore; break; - case "Toggle Turbo Seek (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Toggle Auto-Restore": + return false; + case "Toggle Turbo Seek" when Tools.IsLoaded(): + var playbackBox2 = Tools.TAStudio.TasPlaybackBox; + playbackBox2.TurboSeek = !playbackBox2.TurboSeek; + break; + case "Toggle Turbo Seek" when Tools.IsLoaded(): var playbackBox5 = Tools.TAStudioMPR.TasPlaybackBoxMPR; playbackBox5.TurboSeek = !playbackBox5.TurboSeek; break; - case "Undo (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Toggle Turbo Seek": + return false; + case "Undo" when Tools.IsLoaded(): + Tools.TAStudio.UndoExternal(); + break; + case "Undo" when Tools.IsLoaded(): Tools.TAStudioMPR.UndoExternal(); break; - case "Redo (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Undo": + return false; + case "Redo" when Tools.IsLoaded(): + Tools.TAStudio.RedoExternal(); + break; + case "Redo" when Tools.IsLoaded(): Tools.TAStudioMPR.RedoExternal(); break; - case "Sel. bet. Markers (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Redo": + return false; + case "Sel. bet. Markers" when Tools.IsLoaded(): + Tools.TAStudio.SelectBetweenMarkersExternal(); + break; + case "Sel. bet. Markers" when Tools.IsLoaded(): Tools.TAStudioMPR.SelectBetweenMarkersExternal(); break; - case "Select All (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Sel. bet. Markers": + return false; + case "Select All" when Tools.IsLoaded(): + Tools.TAStudio.SelectAllExternal(); + break; + case "Select All" when Tools.IsLoaded(): Tools.TAStudioMPR.SelectAllExternal(); break; - case "Reselect Clip. (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Select All": + return false; + case "Reselect Clip." when Tools.IsLoaded(): + Tools.TAStudio.ReselectClipboardExternal(); + break; + case "Reselect Clip." when Tools.IsLoaded(): Tools.TAStudioMPR.ReselectClipboardExternal(); break; - case "Clear Frames (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Reselect Clip.": + return false; + case "Clear Frames" when Tools.IsLoaded(): + Tools.TAStudio.ClearFramesExternal(); + break; + case "Clear Frames" when Tools.IsLoaded(): Tools.TAStudioMPR.ClearFramesExternal(); break; - case "Insert Frame (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Clear Frames": + return false; + case "Insert Frame" when Tools.IsLoaded(): + Tools.TAStudio.InsertFrameExternal(); + break; + case "Insert Frame" when Tools.IsLoaded(): Tools.TAStudioMPR.InsertFrameExternal(); break; - case "Insert # Frames (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Insert Frame": + return false; + case "Insert # Frames" when Tools.IsLoaded(): + Tools.TAStudio.InsertNumFramesExternal(); + break; + case "Insert # Frames" when Tools.IsLoaded(): Tools.TAStudioMPR.InsertNumFramesExternal(); break; - case "Delete Frames (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Insert # Frames": + return false; + case "Delete Frames" when Tools.IsLoaded(): + Tools.TAStudio.DeleteFramesExternal(); + break; + case "Delete Frames" when Tools.IsLoaded(): Tools.TAStudioMPR.DeleteFramesExternal(); break; - case "Clone Frames (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Delete Frames": + return false; + case "Clone Frames" when Tools.IsLoaded(): + Tools.TAStudio.CloneFramesExternal(); + break; + case "Clone Frames" when Tools.IsLoaded(): Tools.TAStudioMPR.CloneFramesExternal(); break; - case "Clone # Times (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Clone Frames": + return false; + case "Clone # Times" when Tools.IsLoaded(): + Tools.TAStudio.CloneFramesXTimesExternal(); + break; + case "Clone # Times" when Tools.IsLoaded(): Tools.TAStudioMPR.CloneFramesXTimesExternal(); break; - case "Analog Increment (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Clone # Times": + return false; + case "Analog Increment" when Tools.IsLoaded(): + Tools.TAStudio.AnalogIncrementByOne(); + break; + case "Analog Increment" when Tools.IsLoaded(): Tools.TAStudioMPR.AnalogIncrementByOne(); break; - case "Analog Decrement (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Analog Increment": + return false; + case "Analog Decrement" when Tools.IsLoaded(): + Tools.TAStudio.AnalogDecrementByOne(); + break; + case "Analog Decrement" when Tools.IsLoaded(): Tools.TAStudioMPR.AnalogDecrementByOne(); break; - case "Analog Incr. by 10 (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Analog Decrement": + return false; + case "Analog Incr. by 10" when Tools.IsLoaded(): + Tools.TAStudio.AnalogIncrementByTen(); + break; + case "Analog Incr. by 10" when Tools.IsLoaded(): Tools.TAStudioMPR.AnalogIncrementByTen(); break; - case "Analog Decr. by 10 (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Analog Incr. by 10": + return false; + case "Analog Decr. by 10" when Tools.IsLoaded(): + Tools.TAStudio.AnalogDecrementByTen(); + break; + case "Analog Decr. by 10" when Tools.IsLoaded(): Tools.TAStudioMPR.AnalogDecrementByTen(); break; - case "Analog Maximum (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Analog Decr. by 10": + return false; + case "Analog Maximum" when Tools.IsLoaded(): + Tools.TAStudio.AnalogMax(); + break; + case "Analog Maximum" when Tools.IsLoaded(): Tools.TAStudioMPR.AnalogMax(); break; - case "Analog Minimum (For MPR)": - if (!Tools.IsLoaded()) return false; + case "Analog Maximum": + return false; + case "Analog Minimum" when Tools.IsLoaded(): + Tools.TAStudio.AnalogMin(); + break; + case "Analog Minimum" when Tools.IsLoaded(): Tools.TAStudioMPR.AnalogMin(); break; - + case "Analog Minimum": + return false; // SNES case "Toggle BG 1": From 369ff2a78794f7eeb498fec5cc0edff16427f688 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Thu, 13 Feb 2025 20:53:13 -0500 Subject: [PATCH 65/65] Adjusted padding and start framecount Added padding for scrollbar and 5 digit framecount to tasstudiompr --- .../tools/TAStudioMPR/TAStudioMPR.ListView.cs | 4 +++- src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs | 6 +----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs index 1a6eb18307c..57309a40493 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.ListView.cs @@ -303,7 +303,9 @@ private void TasView_QueryRowBkColor(int index, ref Color color) /// with leading zeroes such that every frame in the movie will be printed with the same number of digits private string FrameToStringPadded(int index) - => index.ToString(_formatCache[(int) Math.Log10(Math.Max(CurrentTasMovie.InputLogLength, 1))]); + => index.ToString(_formatCache[Math.Max( + 4, + NumberExtensions.Log10(Math.Max(CurrentTasMovie.InputLogLength, 1)))]); private void TasView_QueryItemText(int index, RollColumn column, out string text, ref int offsetX, ref int offsetY) { diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs index e42dd7c5387..8c00a907074 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudioMPR/TAStudioMPR.cs @@ -151,8 +151,6 @@ public TAStudioMPR() private void Tastudio_Load(object sender, EventArgs e) { this.Width = 1050; - //width has to be calculated and set after columns are created, but without this it seems to not set correctly. - TasView1.Width = Emulator.ControllerDefinition.ControlsOrdered[1].Count * 20 + 80; TasView1.QueryItemText += TasView_QueryItemText; TasView1.QueryItemBkColor += TasView_QueryItemBkColor; TasView1.QueryRowBkColor += TasView_QueryRowBkColor; @@ -185,8 +183,6 @@ private void Tastudio_Load(object sender, EventArgs e) InputRoll tasView = new InputRoll(); tasView.Name = "TasView" + i.ToString(); tasView.Parent = MainVertialSplit.Panel1; - //width has to be calculated and set after columns are created, but without this it seems to not set correctly. - tasView.Width = Emulator.ControllerDefinition.ControlsOrdered[1].Count * 20 + 80; tasView.Height = TasView1.Height; tasView.Location = startLocation; startLocation.X += tasView.Width + 10; //for next tasView @@ -385,7 +381,7 @@ private bool Engage(int viewIndex = 0) width += column.Width; } tasView.Location = new System.Drawing.Point(lastTasViewLocation.X + lastTasViewWidth + 10, 20); - tasView.Width = width + 1;//padding + tasView.Width = width + 18;// padding for scrollbar lastTasViewWidth = tasView.Width; lastTasViewLocation = tasView.Location; }